/* ==========================================================================
   AMAZO STUDIO - DESIGN SYSTEM & BRAND IDENTITY
   Visual: Futuristic Minimalist, Cyberpunk Clean, Apple + Vercel inspired
   ========================================================================== */

/* 1. BRAND DESIGN TOKENS */
:root {
    /* Color Palette */
    --bg-dark: #030712;
    --bg-deep: #090d16;
    --bg-card: rgba(9, 13, 22, 0.45);
    
    --neon-blue: #00d2ff;
    --neon-green: #10b981;
    --neon-red: #f43f5e;
    --white: #ffffff;
    --gray-light: #f3f4f6;
    --gray-muted: #9ca3af;
    --gray-dark: #374151;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 210, 255, 0.15);
    --border-glow-green: rgba(16, 185, 129, 0.15);
    
    /* Typography */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Easing Functions */
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 2. BASE RESET & SCROLLBAR */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    font-family: var(--font-body);
    color: var(--white);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    border: 2px solid var(--bg-dark);
    transition: background 0.3s;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-blue);
}

/* 3. HARDWARE ACCELERATION & BG STYLES */
#tech-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, var(--bg-deep) 0%, var(--bg-dark) 100%);
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.02;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3联%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.ambient-glow {
    position: fixed;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.03) 0%, rgba(16, 185, 129, 0.02) 40%, rgba(0,0,0,0) 70%);
    top: -200px;
    left: -200px;
    z-index: -2;
    pointer-events: none;
    filter: blur(80px);
}

/* 4. CUSTOM CURSOR */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
}

.cursor-ring {
    position: absolute;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width 0.3s var(--ease-smooth), height 0.3s var(--ease-smooth), border-color 0.3s var(--ease-smooth), background-color 0.3s var(--ease-smooth);
}

/* Hover active states for cursor */
.custom-cursor.hovered .cursor-ring {
    width: 48px;
    height: 48px;
    border-color: var(--neon-blue);
    background-color: rgba(0, 210, 255, 0.05);
}

.custom-cursor.click .cursor-ring {
    width: 24px;
    height: 24px;
    border-color: var(--neon-green);
    background-color: rgba(16, 185, 129, 0.2);
}

/* Hide default cursor on desktops */
@media (min-width: 1024px) {
    body, a, button, select, textarea, input {
        cursor: none !important;
    }
}

/* 5. LOADING SCREEN */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.loading-bg-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center;
    opacity: 0.5;
}

.loading-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 500px;
}

.loading-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 2rem;
}

.logo-accent {
    color: var(--neon-blue);
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.5);
}

.terminal-container {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.terminal-header {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--border-color);
}

.terminal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.terminal-dot.red { background-color: #ef4444; }
.terminal-dot.yellow { background-color: #f59e0b; }
.terminal-dot.green { background-color: #10b981; }

.terminal-title {
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 1px;
    margin-left: 10px;
    opacity: 0.5;
}

.terminal-body {
    padding: 16px;
    font-family: monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    height: 120px;
    overflow-y: hidden;
    line-height: 1.5;
}

.terminal-line {
    margin-bottom: 4px;
}

.loader-bar-wrapper {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1rem;
}

.loader-bar-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
    box-shadow: 0 0 10px var(--neon-blue);
    transition: width 0.05s linear;
}

.loader-percent {
    position: absolute;
    right: 0;
    top: -24px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: bold;
    color: var(--neon-blue);
}

.loading-status {
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 2px;
    opacity: 0.5;
    text-transform: uppercase;
}

/* 6. NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background-color 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth), backdrop-filter 0.4s var(--ease-smooth), padding 0.4s var(--ease-smooth);
    padding: 24px 0;
}

.navbar.scrolled {
    background-color: rgba(3, 7, 18, 0.75);
    backdrop-filter: blur(16px);
    border-color: var(--border-color);
    padding: 16px 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-capsule {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 210, 255, 0.2);
    transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}

.logo-capsule:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 0 15px rgba(0, 210, 255, 0.35);
}

.logo-capsule.large-capsule {
    padding: 10px 24px;
}

.brand-logo-img {
    height: 24px;
    width: auto;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.logo-capsule.large-capsule .brand-logo-img {
    height: 32px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--white);
}

.logo-text .accent-text {
    color: var(--neon-blue);
}

.svg-glow {
    filter: drop-shadow(0px 0px 6px rgba(0, 210, 255, 0.4));
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--neon-blue);
    box-shadow: 0 0 8px var(--neon-blue);
    transition: width 0.3s var(--ease-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.mobile-toggle .bar {
    width: 24px;
    height: 1.5px;
    background-color: var(--white);
    transition: transform 0.3s, opacity 0.3s;
}

/* 7. PREMIUM BUTTONS & GLASSMORPHISM */
.glass-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
}

.btn-icon {
    width: 14px;
    height: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease-smooth);
}

.btn-primary {
    background-color: var(--white);
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
    color: var(--white);
    border: 1px solid var(--border-color);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
    color: var(--bg-dark);
    font-family: var(--font-heading);
    font-size: 12px;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.25);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 210, 255, 0.45);
}

/* 8. GRID LAYOUT & CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 5;
}

.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--neon-blue);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-tag.text-red {
    color: var(--neon-red);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-title.text-glow-red {
    text-shadow: 0 0 20px rgba(244, 63, 94, 0.45);
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-muted);
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.font-futuristic {
    font-family: var(--font-heading);
}

.text-center { text-align: center; }
.gradient-text {
    background: linear-gradient(120deg, var(--neon-blue), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 9. HERO SECTION SPECIFIC */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.006) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.006) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center;
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.tagline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-green);
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: var(--gray-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-visual-canvas {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 400px;
}

.holo-core {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.core-sphere {
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, var(--white) 0%, var(--neon-blue) 60%, rgba(0,0,0,0) 100%);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.8);
    animation: pulse-sphere 3s infinite ease-in-out;
}

.core-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.core-orbit.ring-1 {
    width: 120px;
    height: 120px;
    border-color: rgba(0, 210, 255, 0.15);
    border-top: 2px solid var(--neon-blue);
    animation: rotate 6s linear infinite;
}

.core-orbit.ring-2 {
    width: 180px;
    height: 180px;
    border-color: rgba(16, 185, 129, 0.1);
    border-bottom: 2px solid var(--neon-green);
    animation: rotate 10s linear infinite reverse;
}

.core-orbit.ring-3 {
    width: 240px;
    height: 240px;
    border-color: rgba(255, 255, 255, 0.03);
    border-left: 1.5px dashed rgba(255, 255, 255, 0.3);
    animation: rotate 15s linear infinite;
}

.holo-lines {
    position: absolute;
    width: 400px;
    height: 400px;
    pointer-events: none;
}

.holo-svg-lines {
    width: 100%;
    height: 100%;
}

.holo-data-panel {
    position: absolute;
    background: rgba(9, 13, 22, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 6px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: var(--font-heading);
}

.holo-data-panel.py-badge {
    top: 20px;
    right: -20px;
    border-left: 3px solid var(--neon-green);
}

.holo-data-panel.coordinate-badge {
    bottom: 20px;
    left: -40px;
    border-left: 3px solid var(--neon-blue);
}

.data-label {
    font-size: 8px;
    color: var(--gray-muted);
    letter-spacing: 1px;
}

.data-val {
    font-size: 10px;
    font-weight: bold;
    color: var(--white);
}

.scroll-indicator-wrapper {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--gray-muted);
    transition: color 0.3s;
}

.scroll-down-btn:hover {
    color: var(--white);
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--neon-blue);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.8s infinite ease-in-out;
}

.scroll-text {
    font-size: 9px;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* 10. SOBRE A EMPRESA SPECIFIC */
.sobre-section {
    background-color: rgba(9, 13, 22, 0.2);
    border-top: 1px solid var(--border-color);
}

.section-header-left {
    margin-bottom: 60px;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-p {
    font-size: 16px;
    color: var(--gray-muted);
    margin-bottom: 24px;
}

.sobre-p.lead-p {
    font-size: 20px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.5;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--neon-blue);
}

.stat-label {
    font-size: 11px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    color: var(--gray-muted);
    text-transform: uppercase;
}

.tech-circuit-container {
    width: 100%;
    background: rgba(9, 13, 22, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    backdrop-filter: blur(10px);
}

.circuit-svg {
    width: 100%;
    height: auto;
}

/* Pulse keyframes for circuit */
.pulse-path {
    stroke-linecap: round;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
}

.path-1 {
    animation: flow-circuit 8s linear infinite;
}

.path-2 {
    animation: flow-circuit 6s linear infinite 2s;
}

.path-3 {
    animation: flow-circuit 7s linear infinite 1s;
}

/* 11. SOLUÇÕES GRID & CARDS */
.solucoes-section {
    border-top: 1px solid var(--border-color);
}

.section-header-center {
    max-width: 700px;
    margin: 0 auto 80px auto;
}

.solucoes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.solution-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transition: border-color 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
}

.solution-card-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sol-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--neon-blue);
    transition: color 0.3s, background-color 0.3s;
}

.sol-icon {
    width: 22px;
    height: 22px;
}

.sol-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sol-card-desc {
    font-size: 13px;
    color: var(--gray-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.sol-tech-badge {
    font-size: 9px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    color: var(--neon-green);
    text-transform: uppercase;
}

/* Neon Glow Effect following Cursor on Cards */
.card-glow-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.08) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.card-border-glow {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: radial-gradient(circle 120px at var(--mouse-x, 0) var(--mouse-y, 0), rgba(0, 210, 255, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s;
}

.solution-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.solution-card:hover .card-glow-element,
.solution-card:hover .card-border-glow {
    opacity: 1;
}

.solution-card:hover .sol-icon-wrapper {
    color: var(--white);
    background-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.5);
    border-color: var(--neon-blue);
}

/* 12. PROJETOS SHOWCASE SPECIFIC */
.projetos-section {
    background-color: rgba(9, 13, 22, 0.1);
    border-top: 1px solid var(--border-color);
}

.projetos-list {
    display: flex;
    flex-direction: column;
    gap: 120px;
    margin-top: 80px;
}

.projeto-item {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.projeto-item.reverse {
    grid-template-columns: 1.1fr 0.9fr;
}

.projeto-item.reverse .projeto-left {
    order: 2;
}
.projeto-item.reverse .projeto-right {
    order: 1;
}

.proj-badge {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    color: var(--neon-blue);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.proj-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
}

.proj-desc {
    font-size: 15px;
    color: var(--gray-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.proj-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.proj-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-light);
}

.check-icon {
    width: 16px;
    height: 16px;
    color: var(--neon-green);
}

.proj-techs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.proj-techs .badge, .badge {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-muted);
}

/* Interactive Dashboard mockups */
.dashboard-mockup {
    width: 100%;
    background-color: #030712;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 30px rgba(0, 210, 255, 0.05);
    transition: border-color 0.4s var(--ease-smooth);
}

.projeto-item:hover .dashboard-mockup {
    border-color: rgba(0, 210, 255, 0.25);
}

.projeto-item.reverse:hover .dashboard-mockup {
    border-color: rgba(16, 185, 129, 0.25);
}

.mockup-header {
    background-color: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mockup-controls {
    display: flex;
    gap: 6px;
}
.mockup-controls span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--gray-dark);
}

.mockup-url {
    font-family: monospace;
    font-size: 10px;
    color: var(--gray-muted);
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 20px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.mockup-indicator-active {
    font-family: var(--font-heading);
    font-size: 8px;
    font-weight: bold;
    color: var(--neon-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 2px 8px;
    border-radius: 50px;
}

.mockup-indicator-active.tech-blue {
    color: var(--neon-blue);
    border-color: rgba(0, 210, 255, 0.2);
}

.mockup-body {
    display: flex;
    height: 280px;
}

.mockup-sidebar {
    width: 60px;
    border-right: 1px solid var(--border-color);
    background-color: rgba(0,0,0,0.2);
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sidebar-item {
    color: var(--gray-muted);
    font-size: 16px;
    opacity: 0.6;
    transition: opacity 0.3s, color 0.3s;
}

.sidebar-item.active {
    color: var(--neon-green);
    opacity: 1;
}

.mockup-main {
    flex-grow: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: hidden;
}

.main-top-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.widget-mini {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.widget-label {
    font-size: 9px;
    color: var(--gray-muted);
}
.widget-value {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: bold;
}
.widget-value.text-green { color: var(--neon-green); }
.widget-value.text-blue { color: var(--neon-blue); }

.main-chart-area {
    padding: 12px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--gray-muted);
    margin-bottom: 10px;
}

.fake-chart {
    height: 50px;
}

.chart-svg-element {
    width: 100%;
    height: 100%;
}

.chart-stroke-anim {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: draw-chart 3s infinite alternate ease-in-out;
}

.main-orders {
    padding: 12px;
    flex-grow: 1;
}

.order-item-header {
    font-size: 10px;
    color: var(--gray-muted);
    margin-bottom: 8px;
}

.fake-order {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 9px;
    padding: 8px;
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
    margin-bottom: 6px;
    border-left: 2px solid var(--gray-dark);
}

.fake-order.active-order {
    border-left-color: var(--neon-green);
    background: rgba(16, 185, 129, 0.03);
}

.order-table { font-weight: bold; }
.order-items { color: var(--gray-muted); }
.order-status-badge {
    font-size: 7px;
    padding: 2px 6px;
    border-radius: 2px;
    font-weight: bold;
}
.order-status-badge.cooking {
    background-color: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}
.order-status-badge.done {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--neon-green);
}

/* EdTech Mockup specifics */
.edtech-sidebar {
    width: 70px;
    border-right: 1px solid var(--border-color);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.sidebar-avatar {
    position: relative;
    width: 32px;
    height: 32px;
}

.avatar-ring-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.circle-progress-svg {
    transform-origin: center;
    transform: rotate(-90deg);
}

.avatar-face {
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, var(--neon-blue) 0%, #030712 100%);
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
}

.sidebar-menu-ed {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-ed-item {
    color: var(--gray-muted);
    font-size: 16px;
}
.menu-ed-item.active {
    color: var(--neon-blue);
}

.edtech-main {
    flex-grow: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: hidden;
}

.edtech-top-bar {
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.edtech-lesson-title {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 500;
}

.edtech-points {
    font-size: 9px;
    color: var(--neon-blue);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 4px;
}

.fire-icon { width: 10px; height: 10px; }

.edtech-interaction-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
    flex-grow: 1;
}

.vocab-card {
    padding: 14px;
    display: flex;
    flex-direction: column;
}

.vocab-tag {
    font-size: 7px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    color: var(--gray-muted);
}

.vocab-word {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 2px;
}

.vocab-ipa {
    font-size: 9px;
    font-family: monospace;
    color: var(--neon-blue);
    margin-bottom: 8px;
}

.vocab-meaning {
    font-size: 10px;
    color: var(--gray-muted);
    flex-grow: 1;
}

.vocab-action-btn {
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.01);
    padding: 6px;
    border-radius: 4px;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.speech-analysis {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.speech-header {
    font-size: 10px;
    color: var(--gray-muted);
}

.audio-waves {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 30px;
}

.wave-bar {
    width: 2px;
    height: 100%;
    background-color: var(--neon-blue);
    transform-origin: bottom;
    border-radius: 1px;
}

.bar-1 { animation: sound-wave 1.2s infinite ease-in-out; }
.bar-2 { animation: sound-wave 1.5s infinite ease-in-out 0.2s; }
.bar-3 { animation: sound-wave 0.8s infinite ease-in-out 0.4s; }
.bar-4 { animation: sound-wave 1.4s infinite ease-in-out 0.1s; }
.bar-5 { animation: sound-wave 1.1s infinite ease-in-out 0.3s; }
.bar-6 { animation: sound-wave 1.6s infinite ease-in-out 0.5s; }
.bar-7 { animation: sound-wave 0.9s infinite ease-in-out 0.2s; }

.speech-result {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.result-percent {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: bold;
}

.result-feedback {
    font-size: 8px;
    color: var(--gray-muted);
}

/* 13. PARCEIROS MARQUEE */
.parceiros-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(0, 0, 0, 0.2);
}

.parceiros-title {
    font-size: 10px;
    letter-spacing: 2px;
    opacity: 0.4;
    margin-bottom: 32px;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: marquee-scroll 20s linear infinite;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gray-muted);
    opacity: 0.5;
    transition: opacity 0.3s, color 0.3s, filter 0.3s;
}

.partner-icon {
    width: 18px;
    height: 18px;
}

.partner-logo:hover {
    opacity: 1;
    color: var(--white);
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.4));
}

/* 14. JOGOS EM PRODUÇÃO "RUPTURA" */
.jogos-section {
    position: relative;
    background-color: #030712;
    border-bottom: 1px solid var(--border-color);
}

.cyber-scanlines {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(18, 16, 16, 0) 50%, 
        rgba(0, 0, 0, 0.25) 50%
    );
    background-size: 100% 4px;
    z-index: 2;
    pointer-events: none;
}

.jogo-showcase-container {
    max-width: 850px;
    margin: 0 auto;
}

.jogo-card {
    padding: 0;
    overflow: hidden;
    border-color: rgba(244, 63, 94, 0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px rgba(244, 63, 94, 0.05);
    position: relative;
}

.jogo-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(244, 63, 94, 0.04) 0%, rgba(59, 130, 246, 0.04) 50%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    z-index: 1;
}

.scanner-laser {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-red), transparent);
    top: 0;
    left: 0;
    z-index: 10;
    animation: laser-scan 4s linear infinite;
    box-shadow: 0 0 10px var(--neon-red);
}

.jogo-card-bg {
    position: relative;
    height: 250px;
    background-color: #050811;
    overflow: hidden;
}

.ruptura-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    mix-blend-mode: lighten;
    z-index: 1;
    filter: brightness(0.85) contrast(1.2);
    transition: transform 0.6s var(--ease-smooth), filter 0.6s var(--ease-smooth);
}

.jogo-card:hover .ruptura-bg-img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.3);
}

.game-hud-overlay {
    position: absolute;
    inset: 0;
    padding: 20px;
    font-family: monospace;
    font-size: 9px;
    color: var(--neon-red);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 5;
    pointer-events: none;
}

.hud-top-left, .hud-top-right, .hud-bottom-left {
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 8px;
    border-radius: 2px;
    width: max-content;
}

.hud-top-right { align-self: flex-end; }
.hud-bottom-left {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.hud-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

.favela-svg-bg {
    width: 100%;
    height: 100%;
}

.blink-light {
    animation: blink 1s steps(2, start) infinite;
}
.blink-light-delayed {
    animation: blink 1.2s steps(2, start) infinite 0.5s;
}

.jogo-card-content {
    padding: 40px;
    position: relative;
    z-index: 5;
}

.jogo-header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.jogo-card-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 1px;
}

.jogo-status-badge {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    background-color: rgba(244, 63, 94, 0.1);
    border: 1px solid var(--neon-red);
    color: var(--neon-red);
    padding: 4px 12px;
    border-radius: 50px;
}

.pulse-red {
    animation: red-pulse-badge 2s infinite ease-in-out;
}

.jogo-card-desc {
    font-size: 14px;
    color: var(--gray-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.jogo-techs-hud {
    display: flex;
    gap: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.hud-item {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 500;
    color: var(--gray-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 15. TIME / EQUIPE */
.equipe-section {
    border-bottom: 1px solid var(--border-color);
}

.equipe-layout {
    position: relative;
    margin-top: 80px;
}

.team-connector-svg {
    position: absolute;
    top: 150px;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 1;
}

.active-team-line {
    stroke-dasharray: 900;
    stroke-dashoffset: 900;
    animation: flow-circuit 12s linear infinite;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 5;
}

.equipe-card {
    text-align: center;
    padding: 40px 30px;
    transition: transform 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth);
}

.equipe-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 210, 255, 0.25);
}

.avatar-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-ring-outer {
    position: absolute;
    inset: 0;
    border: 1px dashed rgba(0, 210, 255, 0.3);
    border-radius: 50%;
}

.avatar-ring-inner {
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(0, 210, 255, 0.15);
    border-top: 2.5px solid var(--neon-blue);
    border-bottom: 2.5px solid var(--neon-blue);
    border-radius: 50%;
}

.avatar-ring-inner.text-green {
    border-top-color: var(--neon-green);
    border-bottom-color: var(--neon-green);
}

.avatar-image {
    width: 86px;
    height: 86px;
    background-color: var(--bg-deep);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    position: relative;
    overflow: hidden;
}

.member-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.avatar-placeholder-icon {
    width: 28px;
    height: 28px;
    color: var(--gray-muted);
    opacity: 0.5;
}

.member-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.member-role {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.text-blue { color: var(--neon-blue); }
.text-green { color: var(--neon-green); }

.member-desc {
    font-size: 13px;
    color: var(--gray-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.member-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.member-social-link {
    color: var(--gray-muted);
    transition: color 0.3s;
}

.member-social-link:hover {
    color: var(--white);
}

/* 16. VALORES MISSION DIAGRAM */
.valores-section {
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(9, 13, 22, 0.1);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.val-box {
    padding: 40px;
}

.val-num {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 900;
    color: var(--neon-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.val-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.val-desc {
    font-size: 14px;
    color: var(--gray-muted);
    line-height: 1.6;
}

/* 17. ÁREA DE CONTEÚDO (BLOG/CARREIRAS) */
.blog-section {
    border-bottom: 1px solid var(--border-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
}

.blog-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 210, 255, 0.25);
}

.blog-image {
    height: 180px;
    background-color: var(--bg-deep);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-overlay-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0,210,255,0.03) 0%, rgba(0,0,0,0) 80%);
}

.blog-img-placeholder {
    width: 36px;
    height: 36px;
    color: var(--gray-dark);
}

.blog-card-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 8px;
    font-weight: bold;
    letter-spacing: 1px;
    color: var(--neon-blue);
    background: rgba(3, 7, 18, 0.85);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 2px;
}

.blog-card-tag.text-green {
    color: var(--neon-green);
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-family: var(--font-heading);
    font-size: 9px;
    color: var(--gray-muted);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 13px;
    color: var(--gray-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.blog-link {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.blog-link:hover {
    color: var(--neon-blue);
}

.blog-link i {
    width: 12px;
    height: 12px;
}

/* 18. CONTATO & TRANSMISSÃO */
.contato-section {
    background-color: rgba(9, 13, 22, 0.2);
}

.contato-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.contato-desc {
    font-size: 15px;
    color: var(--gray-muted);
    line-height: 1.6;
    margin-bottom: 40px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--neon-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-label {
    display: block;
    font-size: 10px;
    font-family: var(--font-heading);
    color: var(--gray-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.info-value {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.01);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--gray-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-btn:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
    background-color: rgba(255,255,255,0.03);
    transform: translateY(-2px);
}

.contato-form-wrapper {
    padding: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: bold;
    color: var(--gray-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.form-input {
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--white);
    transition: border-color 0.3s, background-color 0.3s;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255, 255, 255, 0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    padding-right: 40px;
}

.form-input:focus {
    border-color: rgba(0, 210, 255, 0.4);
    background-color: rgba(0, 0, 0, 0.6);
}

.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background-color: var(--neon-blue);
    box-shadow: 0 0 8px var(--neon-blue);
    transition: width 0.4s var(--ease-smooth), left 0.4s var(--ease-smooth);
}

.form-input:focus ~ .input-focus-line {
    width: 100%;
    left: 0;
}

/* 19. FOOTER BOTTOM */
.footer-bottom {
    background-color: #030712;
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 2px;
}

.footer-logo .accent-text { color: var(--neon-blue); }

.footer-copyright {
    font-size: 10px;
    color: var(--gray-muted);
    letter-spacing: 0.5px;
}

.footer-status {
    font-size: 9px;
    color: var(--gray-muted);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.pulse-dot.green {
    background-color: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
    animation: blink 1s steps(2, start) infinite;
}

/* 20. KEYFRAMES FOR ANIMATIONS & INTERACTIONS */

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes draw-chart {
    to { stroke-dashoffset: 0; }
}

@keyframes pulse-sphere {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.6)); }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 35px rgba(0, 210, 255, 0.9)); }
}

@keyframes scroll-wheel {
    0% { top: 8px; opacity: 0; }
    30% { opacity: 1; }
    70% { top: 22px; opacity: 0; }
    100% { top: 8px; opacity: 0; }
}

@keyframes sound-wave {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes laser-scan {
    0% { top: 0; }
    50% { top: 100%; }
    100% { top: 0; }
}

@keyframes blink {
    50% { opacity: 0.3; }
}

@keyframes red-pulse-badge {
    0%, 100% { opacity: 1; box-shadow: 0 0 4px var(--neon-red); }
    50% { opacity: 0.6; box-shadow: 0 0 12px rgba(244, 63, 94, 0.4); }
}

@keyframes flow-circuit {
    0% { stroke-dashoffset: 800; }
    100% { stroke-dashoffset: 0; }
}

/* 21. RESPONSIVE DESIGN (MEDIA QUERIES) */

@media (max-width: 1024px) {
    .navbar-container { padding: 0 20px; }
    .nav-menu { display: none; } /* Handled by JS hamburger */
    .mobile-toggle { display: flex; }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-visual-canvas { height: 350px; }
    
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solucoes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projeto-item, .projeto-item.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .projeto-item.reverse .projeto-left { order: 1; }
    .projeto-item.reverse .projeto-right { order: 2; }
    
    .equipe-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .team-connector-svg { display: none; }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .footer-left {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .hero-title { font-size: 42px; }
    .section-title { font-size: 32px; }
    
    .about-stats {
        justify-content: center;
    }
    .solucoes-grid {
        grid-template-columns: 1fr;
    }
    
    .equipe-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contato-form-wrapper {
        padding: 24px;
    }
}

/* Dynamic Mobile Menu State */
.navbar-mobile-active {
    background-color: var(--bg-dark) !important;
    backdrop-filter: none !important;
}

.navbar-mobile-active .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-dark);
    z-index: 105;
    padding-top: 100px;
    gap: 30px;
    animation: fade-in-menu 0.3s ease-out;
}

.navbar-mobile-active .mobile-toggle .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.navbar-mobile-active .mobile-toggle .bar:nth-child(2) {
    opacity: 0;
}
.navbar-mobile-active .mobile-toggle .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

@keyframes fade-in-menu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   22. ARTICLE MODAL & DYNAMIC COVERS
   ========================================================================== */
.blog-cover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 0.5s var(--ease-smooth), opacity 0.5s var(--ease-smooth);
    z-index: 0;
}

.blog-card:hover .blog-cover-img {
    transform: scale(1.05);
    opacity: 0.85;
}

.article-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-smooth);
    padding: 24px;
}

.article-modal.active {
    opacity: 1;
    pointer-events: all;
}

.article-modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(8px);
}

.article-modal-container {
    position: relative;
    width: 100%;
    max-width: 780px;
    max-height: 85vh;
    border: 1px solid rgba(0, 210, 255, 0.15);
    background: rgba(9, 13, 22, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 210, 255, 0.05);
    overflow-y: auto;
    z-index: 10;
    padding: 40px;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s var(--ease-smooth);
}

.article-modal.active .article-modal-container {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 20;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--neon-blue);
    border-color: rgba(0, 210, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.modal-art-tag {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1.5px;
    color: var(--neon-blue);
    width: max-content;
    background: rgba(0, 210, 255, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.2);
    padding: 4px 12px;
    border-radius: 4px;
}

.modal-art-tag.text-green {
    color: var(--neon-green);
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
}

.modal-art-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--white);
    margin: 8px 0 0 0;
}

.modal-art-meta {
    font-family: var(--font-heading);
    font-size: 10px;
    color: var(--gray-muted);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.modal-art-image-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.modal-art-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-art-text {
    font-size: 15px;
    color: var(--gray-muted);
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.modal-art-text p {
    margin: 0;
}

.modal-art-text h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 18px;
    margin: 16px 0 4px 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.modal-art-text ul {
    margin: 8px 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-art-text li {
    position: relative;
    list-style-type: none;
    padding-left: 18px;
}

.modal-art-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--neon-blue);
}

/* Custom Scrollbar for modal content container */
.article-modal-container::-webkit-scrollbar {
    width: 6px;
}

.article-modal-container::-webkit-scrollbar-track {
    background: rgba(3, 7, 18, 0.4);
    border-radius: 0 16px 16px 0;
}

.article-modal-container::-webkit-scrollbar-thumb {
    background: rgba(0, 210, 255, 0.2);
    border-radius: 3px;
}

.article-modal-container::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 210, 255, 0.4);
}

