        /* ===================================
           RESET E VARIÁVEIS
        =================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Cores Principais - Preto Puro + Azul Elétrico */
            --black-pure: #000000;
            --black: #000000;
            --electric-blue: #00D9FF;
            --electric-blue-glow: #00F0FF;
            --white: #FFFFFF;
            --gray-dark: #0A0A0A;
            --gray-medium: #1A1A1A;
            --gray-light: #333333;
            --text-muted: #D6DEE3;
            --gradient-ai: linear-gradient(135deg, #00D9FF 0%, #00B8FF 50%, #0099FF 100%);
            --gradient-glow: linear-gradient(135deg, rgba(0, 217, 255, 0.4) 0%, rgba(0, 153, 255, 0.2) 100%);
            --shadow-blue: 0 0 40px rgba(0, 217, 255, 0.6);
            --shadow-blue-strong: 0 0 60px rgba(0, 217, 255, 0.8);
            --border-blue-soft: 1px solid rgba(0, 217, 255, 0.2);
        }

        html {
            scroll-behavior: smooth;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        [tabindex]:focus-visible {
            outline: 2px solid var(--electric-blue);
            outline-offset: 2px;
        }

        /* Compensa o header fixo ao navegar por âncoras */
        section[id] {
            scroll-margin-top: 110px;
        }

        body {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
            background: var(--black-pure);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

        /* Background animado com partículas */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background:
                radial-gradient(circle at 10% 20%, rgba(0, 217, 255, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(0, 153, 255, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.02) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
            animation: backgroundPulse 10s ease-in-out infinite;
        }

        @keyframes backgroundPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 800;
        }

        /* Destaque IA - identidade da marca */
        .ai-highlight {
            color: var(--electric-blue);
            font-weight: 900;
            text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
            animation: glowPulse 2s ease-in-out infinite;
        }

        @keyframes glowPulse {
            0%, 100% { text-shadow: 0 0 20px rgba(0, 217, 255, 0.6); }
            50% { text-shadow: 0 0 30px rgba(0, 217, 255, 0.9); }
        }

        .ai-sup {
            font-size: 0.7em;
            vertical-align: super;
        }

        /* ===================================
           HEADER FIXO
        =================================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.98);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            z-index: 1000;
            padding: 1.5rem 0;
            border-bottom: 2px solid rgba(0, 217, 255, 0.3);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            padding: 1rem 0;
            border-bottom-color: rgba(0, 217, 255, 0.5);
            box-shadow: 0 10px 50px rgba(0, 217, 255, 0.2);
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: transform 0.3s ease;
        }

        .logo-container:hover {
            transform: translateY(-2px);
        }

        .brain-icon {
            width: 50px;
            height: 50px;
            filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.6));
            animation: pulse-brain 3s ease-in-out infinite;
        }

        @keyframes pulse-brain {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
                filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.6));
            }
            50% {
                opacity: 0.8;
                transform: scale(1.08);
                filter: drop-shadow(0 0 25px rgba(0, 217, 255, 0.9));
            }
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--white);
            text-decoration: none;
            letter-spacing: -1px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .logo:hover {
            letter-spacing: 0px;
            text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
        }

        .nav {
            display: flex;
            gap: 2.5rem;
            align-items: center;
            flex-wrap: nowrap;
        }

        .nav a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
            white-space: nowrap;
        }

        .nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gradient-ai);
            transition: width 0.3s ease;
        }

        .nav a:hover {
            color: var(--electric-blue);
            transform: translateY(-2px);
        }

        .nav a:hover::after {
            width: 100%;
        }

        .btn-cta {
            background: var(--gradient-ai);
            color: var(--black-pure);
            padding: 0.9rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
            display: inline-block;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .btn-cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .btn-cta:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-cta:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 217, 255, 0.6);
        }

        /* Telas médias (notebooks ~1024-1500): compacta o nav para caber tudo.
           IMPORTANTE: precisa vir DEPOIS das regras base de .header-content,
           .logo, .nav e .btn-cta acima — mesma especificidade, então quem
           estiver por último vence. Declarado antes delas (como estava), o
           media query nunca tinha efeito e o botão "Agende sua Experiência"
           ficava cortado na direita em telas de notebook. */
        @media (min-width: 769px) and (max-width: 1500px) {
            .header-content { padding: 0 1.25rem; gap: 1rem; }
            .brain-icon { width: 38px; height: 38px; }
            .logo-container { gap: 0.6rem; }
            .logo { font-size: 1.35rem; letter-spacing: -0.5px; }
            .nav { gap: 0.8rem; }
            .nav a { font-size: 0.8rem; padding: 0.4rem 0; }
            .btn-cta { padding: 0.6rem 1rem; font-size: 0.72rem; }
        }

        /* Menu hambúrguer (mobile) */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 6px;
            width: 48px;
            height: 48px;
            background: transparent;
            border: 2px solid rgba(0, 217, 255, 0.4);
            border-radius: 10px;
            cursor: pointer;
            padding: 10px;
            transition: all 0.3s ease;
        }

        .menu-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background: var(--electric-blue);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .menu-toggle.open span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

        .menu-toggle.open span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.open span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        /* ===================================
           HERO SECTION
        =================================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 150px 2rem 120px;
            background: var(--black-pure);
            position: relative;
            overflow: hidden;
            margin-bottom: 80px;
        }

        /* Grid animado de fundo */
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(90deg, rgba(0, 217, 255, 0.05) 1px, transparent 1px),
                linear-gradient(0deg, rgba(0, 217, 255, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
            opacity: 0.3;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Círculos de luz animados */
        .hero::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 1200px;
            height: 1200px;
            background:
                radial-gradient(circle at center, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 30% 40%, rgba(0, 153, 255, 0.1) 0%, transparent 40%);
            animation: rotate-gradient 30s linear infinite;
            pointer-events: none;
        }

        @keyframes rotate-gradient {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .hero-content {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-tagline {
            font-size: 1.1rem;
            color: var(--electric-blue);
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            animation: fadeIn 1.5s ease-out 0.3s both;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .hero h1 {
            font-size: clamp(1.8rem, 9vw, 6rem);
            margin-bottom: 2rem;
            line-height: 1.1;
            letter-spacing: -2px;
            animation: fadeInUp 1s ease-out 0.4s both;
            text-shadow: 0 0 40px rgba(0, 217, 255, 0.3);
        }

        .hero-subtitle {
            font-size: clamp(1.3rem, 3vw, 1.8rem);
            color: var(--text-muted);
            margin-bottom: 1rem;
            font-weight: 600;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .hero-message {
            font-size: clamp(1.5rem, 4vw, 2.8rem);
            color: var(--white);
            margin-bottom: 3rem;
            font-weight: 800;
            line-height: 1.3;
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 3rem;
            animation: fadeInUp 1s ease-out 1s both;
        }

        /* ===================================
           BOTÕES
        =================================== */
        .btn-primary {
            background: var(--gradient-ai);
            color: var(--black-pure);
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
            display: inline-block;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transition: transform 0.6s ease;
        }

        .btn-primary:hover::before {
            transform: translate(-50%, -50%) scale(3);
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 60px rgba(0, 217, 255, 0.7);
        }

        .btn-block {
            width: 100%;
            text-align: center;
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            border: 2px solid var(--electric-blue);
            transition: all 0.4s ease;
            display: inline-block;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-ai);
            transition: left 0.5s ease;
            z-index: -1;
        }

        .btn-secondary:hover::before {
            left: 0;
        }

        .btn-secondary:hover {
            color: var(--black-pure);
            border-color: var(--electric-blue);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 217, 255, 0.5);
        }

        /* ===================================
           SEÇÕES (BASE)
        =================================== */
        .section {
            padding: 120px 2rem;
            max-width: 1400px;
            margin: 0 auto 60px;
        }

        .section-title {
            text-align: center;
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 2.5rem;
            letter-spacing: -1px;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            margin: 0 auto 5rem;
            max-width: 800px;
            line-height: 1.8;
            padding: 0 1rem;
        }

        /* ===================================
           GRIDS
        =================================== */
        .about-grid,
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3.5rem;
            margin-top: 5rem;
        }

        .about-grid + .about-grid {
            margin-top: 4rem;
        }

        .ecosystem-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3.5rem;
            margin-top: 5rem;
        }

        /* ===================================
           CARDS (ESTILO UNIFICADO)
        =================================== */
        .ecosystem-card,
        .solution-card,
        .about-card {
            background: var(--gray-dark);
            border-radius: 20px;
            padding: 3rem 2.5rem;
            border: var(--border-blue-soft);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            will-change: transform;
        }

        .ecosystem-card:not(:hover),
        .solution-card:not(:hover),
        .about-card:not(:hover) {
            will-change: auto;
        }

        /* Efeito de brilho no hover */
        .ecosystem-card::before,
        .solution-card::before,
        .about-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent 30%,
                rgba(0, 217, 255, 0.1) 50%,
                transparent 70%
            );
            transform: translateX(-100%) translateY(-100%) rotate(45deg);
            transition: transform 0.8s ease;
        }

        .ecosystem-card:hover::before,
        .solution-card:hover::before,
        .about-card:hover::before {
            transform: translateX(100%) translateY(100%) rotate(45deg);
        }

        /* Borda superior animada */
        .ecosystem-card::after,
        .solution-card::after,
        .about-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-ai);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .ecosystem-card:hover::after,
        .solution-card:hover::after,
        .about-card:hover::after {
            transform: scaleX(1);
        }

        .ecosystem-card:hover,
        .solution-card:hover,
        .about-card:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: var(--electric-blue);
            box-shadow:
                0 25px 70px rgba(0, 217, 255, 0.4),
                0 0 50px rgba(0, 217, 255, 0.2);
            background: var(--gray-medium);
        }

        .ecosystem-icon,
        .solution-icon,
        .about-icon {
            font-size: 3.5rem;
            margin-bottom: 2rem;
            display: inline-block;
            transition: all 0.5s ease;
            filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.3));
        }

        .ecosystem-card:hover .ecosystem-icon,
        .solution-card:hover .solution-icon,
        .about-card:hover .about-icon {
            transform: scale(1.2) rotateY(360deg);
            filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.8));
        }

        .ecosystem-card h3,
        .solution-card h3,
        .about-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .about-card h3 {
            font-size: 1.8rem;
            color: var(--electric-blue);
        }

        .solution-card h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
        }

        .ecosystem-card p,
        .solution-card p,
        .about-card p {
            color: var(--text-muted);
            line-height: 1.8;
            margin-top: 1rem;
        }

        .ecosystem-card:hover h3,
        .solution-card:hover h3,
        .about-card:hover h3 {
            color: var(--electric-blue);
            transform: scale(1.05);
        }

        /* Card em destaque (EXPERIÊNCIA no ecossistema) */
        .ecosystem-card.featured {
            border: 2px solid var(--electric-blue);
            background: var(--gray-medium);
        }

        .card-meta {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 1rem;
        }

        /* ===================================
           SOLUÇÕES - LISTA DE FEATURES
        =================================== */
        .solution-features {
            list-style: none;
            margin: 2.5rem 0;
        }

        .solution-features li {
            padding: 1rem 0;
            color: var(--text-muted);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 1rem;
            line-height: 1.6;
        }

        .solution-features li::before {
            content: '✓';
            color: var(--electric-blue);
            font-weight: 900;
            font-size: 1.2rem;
        }

        /* ===================================
           SEÇÃO BOTGPT
        =================================== */
        .botgpt-section {
            background: linear-gradient(135deg, var(--gray-dark) 0%, var(--black-pure) 100%);
        }

        .botgpt-hero {
            text-align: center;
        }

        .botgpt-badge {
            display: inline-block;
            background: var(--electric-blue);
            color: var(--black-pure);
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .botgpt-title {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .botgpt-lead {
            font-size: 1.5rem;
            max-width: 900px;
            margin: 0 auto 1rem;
        }

        .botgpt-intro {
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
            text-align: center;
        }

        .botgpt-block {
            max-width: 1200px;
            margin: 0 auto 4rem;
        }

        .botgpt-block-narrow {
            max-width: 1000px;
        }

        .botgpt-block .section-title {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .botgpt-block .section-subtitle {
            margin-bottom: 3rem;
        }

        /* Manifesto */
        .manifesto {
            max-width: 900px;
            margin: 0 auto 4rem;
            padding: 2rem;
            background: rgba(0, 217, 255, 0.05);
            border-left: 4px solid var(--electric-blue);
            border-radius: 8px;
        }

        .manifesto h3 {
            color: var(--electric-blue);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .manifesto p {
            line-height: 1.8;
            color: var(--text-muted);
        }

        .manifesto .manifesto-quote {
            color: var(--white);
            margin-bottom: 1rem;
        }

        /* Cards da Mia */
        .mia-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .mia-grid .about-card h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        /* Planos e preços */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            align-items: stretch;
        }

        .price-card {
            background: var(--gray-dark);
            border: 2px solid var(--gray-medium);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .price-card:hover {
            border-color: rgba(0, 217, 255, 0.5);
            transform: translateY(-5px);
        }

        .price-card.featured {
            background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, var(--gray-dark) 100%);
            border: 3px solid var(--electric-blue);
            position: relative;
            transform: scale(1.05);
            box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
        }

        .price-card.featured:hover {
            transform: scale(1.05) translateY(-5px);
        }

        .price-flag {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--electric-blue);
            color: var(--black-pure);
            padding: 0.5rem 2rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .plan-tag {
            background: var(--gray-medium);
            display: inline-block;
            align-self: center;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .price-card.featured .plan-tag {
            background: var(--electric-blue);
            color: var(--black-pure);
            margin-top: 1rem;
        }

        .plan-tag.premium {
            background: transparent;
            border: 2px solid var(--electric-blue);
            color: var(--electric-blue);
        }

        .price-value {
            font-size: 2.5rem;
            color: var(--electric-blue);
            margin-bottom: 0.5rem;
        }

        .price-period {
            color: var(--text-muted);
            margin-bottom: 2rem;
        }

        .price-list {
            text-align: left;
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .price-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--gray-medium);
        }

        .price-card.featured .price-list li {
            border-bottom-color: rgba(0, 217, 255, 0.2);
        }

        .price-list li.unavailable {
            color: var(--text-muted);
            border-bottom: none;
        }

        /* Roadmap de 30 dias */
        .roadmap-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
        }

        .roadmap-card {
            background: var(--gray-dark);
            padding: 2rem;
            border-radius: 12px;
            border-left: 4px solid var(--electric-blue);
            position: relative;
        }

        .roadmap-week {
            position: absolute;
            top: -15px;
            left: 20px;
            background: var(--electric-blue);
            color: var(--black-pure);
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85rem;
        }

        .roadmap-card h4 {
            color: var(--electric-blue);
            margin: 1rem 0;
            font-size: 1.2rem;
        }

        .roadmap-card ul {
            list-style: none;
            padding: 0;
            color: var(--text-muted);
            line-height: 1.8;
        }

        .roadmap-card .roadmap-goal {
            margin-top: 1rem;
            font-weight: 700;
            color: var(--white);
        }

        .roadmap-card.week-2 { border-left-color: #00F0FF; }
        .roadmap-card.week-2 .roadmap-week { background: #00F0FF; }
        .roadmap-card.week-2 h4 { color: #00F0FF; }

        .roadmap-card.week-3 { border-left-color: #FFD700; }
        .roadmap-card.week-3 .roadmap-week { background: #FFD700; }
        .roadmap-card.week-3 h4 { color: #FFD700; }

        .roadmap-card.week-4 { border-left-color: #00FF88; }
        .roadmap-card.week-4 .roadmap-week { background: #00FF88; }
        .roadmap-card.week-4 h4 { color: #00FF88; }

        /* Modelo de monetização */
        .monetize-panel {
            max-width: 1000px;
            margin: 0 auto 4rem;
            padding: 2rem;
            background: rgba(0, 217, 255, 0.05);
            border-radius: 12px;
        }

        .monetize-panel > h3 {
            color: var(--electric-blue);
            margin-bottom: 2rem;
            font-size: 1.5rem;
            text-align: center;
        }

        .monetize-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
        }

        .monetize-card {
            text-align: center;
            padding: 1.5rem;
            background: var(--gray-dark);
            border-radius: 8px;
        }

        .monetize-card .monetize-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .monetize-card h4 {
            color: var(--electric-blue);
            margin-bottom: 0.5rem;
        }

        .monetize-card .monetize-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .monetize-card .monetize-desc {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* CTA final */
        .cta-block {
            text-align: center;
            margin-top: 4rem;
        }

        .cta-block .cta-highlight {
            color: var(--electric-blue);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-block .cta-text {
            color: var(--text-muted);
            margin: 0 auto 2rem;
            max-width: 600px;
        }

        .cta-block .cta-note {
            margin-top: 1.5rem;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* ===================================
           EXPERIÊNCIA
        =================================== */
        .experience-section {
            background: var(--gray-dark);
            border-radius: 30px;
            padding: 6rem 3rem;
            margin: 6rem 0;
            border: 2px solid var(--electric-blue);
            position: relative;
            overflow: hidden;
        }

        .experience-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
        }

        .experience-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .experience-badge {
            display: inline-block;
            background: var(--gradient-ai);
            color: var(--black-pure);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 800;
            margin-bottom: 3rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .experience-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .experience-type {
            background: rgba(0, 0, 0, 0.5);
            padding: 2.5rem;
            border-radius: 15px;
            border: 1px solid rgba(0, 217, 255, 0.3);
        }

        .experience-type h4 {
            color: var(--electric-blue);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .experience-type .duration {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .experience-cta {
            margin-top: 3rem;
        }

        /* ===================================
           CONTATO E REDES SOCIAIS
        =================================== */
        .contact-section {
            background: var(--gray-dark);
            border-radius: 30px;
            padding: 6rem 3rem;
            margin-top: 6rem;
            margin-bottom: 4rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 4rem;
            margin-top: 4rem;
        }

        .contact-card {
            text-align: center;
            padding: 2.5rem;
        }

        .contact-icon {
            font-size: 3rem;
            color: var(--electric-blue);
            margin-bottom: 1.5rem;
        }

        .contact-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .contact-card a {
            color: var(--electric-blue);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .contact-card a:hover {
            color: var(--white);
        }

        .social-block {
            text-align: center;
            margin-top: 4rem;
        }

        .social-block h3 {
            margin-bottom: 2rem;
            font-size: 1.8rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .social-link {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background: var(--gray-medium);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .social-link:hover {
            background: var(--gradient-ai);
            color: var(--black-pure);
            transform: translateY(-5px);
            border-color: var(--electric-blue);
        }

        /* ===================================
           FOOTER
        =================================== */
        .footer {
            background: var(--black-pure);
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(0, 217, 255, 0.2);
            margin-top: 6rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
        }

        .footer-tagline {
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .footer-tagline + .footer-tagline {
            margin-top: -1.5rem;
        }

        .footer-bottom {
            margin-top: 3.5rem;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* ===================================
           BOTÕES FLUTUANTES
        =================================== */
        .chatbot-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--gradient-ai);
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 40px rgba(0, 217, 255, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--black-pure);
            z-index: 999;
            transition: all 0.3s ease;
            animation: pulse-chat 2s ease-in-out infinite;
        }

        @keyframes pulse-chat {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .chatbot-button:hover {
            transform: scale(1.15) !important;
            box-shadow: 0 15px 50px rgba(0, 217, 255, 0.7);
        }

        /* Modo manutenção: widget continua visível (nunca some sem aviso),
           mas fica claramente desabilitado até o backend voltar sozinho. */
        .chatbot-button.is-checking {
            animation: none;
            opacity: 0.55;
            cursor: wait;
        }

        .chatbot-button.is-maintenance {
            animation: none;
            opacity: 0.45;
            filter: grayscale(70%);
            cursor: not-allowed;
        }

        .chatbot-button.is-maintenance:hover {
            transform: none !important;
        }

        .chatbot-badge {
            display: none;
            position: absolute;
            top: -4px;
            right: -4px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #ffb400;
            color: #111;
            font-size: 0.7rem;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--black-pure);
        }

        .chatbot-button.is-maintenance .chatbot-badge {
            display: flex;
        }

        .whatsapp-button {
            position: fixed;
            bottom: 120px;
            right: 30px;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: #25D366;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
            z-index: 999;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-button:hover {
            transform: scale(1.15);
            box-shadow: 0 15px 50px rgba(37, 211, 102, 0.7);
        }

        .back-to-top {
            position: fixed;
            bottom: 210px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gray-medium);
            border: 2px solid var(--electric-blue);
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--electric-blue);
            z-index: 998;
            transition: all 0.3s ease;
            opacity: 0;
            pointer-events: none;
        }

        .back-to-top.visible {
            opacity: 1;
            pointer-events: all;
        }

        .back-to-top:hover {
            background: var(--electric-blue);
            color: var(--black-pure);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 217, 255, 0.5);
        }

        /* ===================================
           SCROLL PROGRESS BAR
        =================================== */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-ai);
            z-index: 10001;
            transform-origin: left;
            transform: scaleX(0);
            transition: transform 0.1s ease;
        }

        /* ===================================
           RESPONSIVO
        =================================== */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            /* Menu mobile: painel suspenso abaixo do header */
            .nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                gap: 0;
                background: rgba(0, 0, 0, 0.98);
                backdrop-filter: blur(30px);
                -webkit-backdrop-filter: blur(30px);
                border-bottom: 2px solid rgba(0, 217, 255, 0.3);
                box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
                padding: 1rem 2rem 2rem;
            }

            .nav.open {
                display: flex;
            }

            .nav a {
                width: 100%;
                text-align: center;
                padding: 1rem 0;
                font-size: 1.1rem;
                border-bottom: 1px solid rgba(0, 217, 255, 0.1);
            }

            .nav a::after {
                display: none;
            }

            .nav .btn-cta {
                margin-top: 1.5rem;
                border-bottom: none;
                width: auto;
            }

            .logo {
                font-size: 1.4rem;
            }

            .brain-icon {
                width: 40px;
                height: 40px;
            }

            .hero {
                padding: 120px 1.5rem 80px;
                margin-bottom: 60px;
            }

            .section {
                padding: 80px 1.5rem;
                margin-bottom: 40px;
            }

            .ecosystem-grid,
            .solutions-grid,
            .about-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .price-card.featured {
                transform: none;
            }

            .price-card.featured:hover {
                transform: translateY(-5px);
            }

            .experience-section,
            .contact-section {
                padding: 4rem 2rem;
                margin-top: 4rem;
                margin-bottom: 4rem;
            }

            .section-title {
                margin-bottom: 2rem;
            }

            .section-subtitle {
                margin-bottom: 3rem;
            }

            .botgpt-title {
                font-size: 2.2rem;
            }
        }

        /* ===================================
           REGI.A. - JANELA DE CHAT
        =================================== */
        .mia-panel {
            position: fixed;
            bottom: 110px;
            right: 30px;
            width: 380px;
            max-width: calc(100vw - 40px);
            height: 560px;
            max-height: calc(100vh - 160px);
            background: var(--gray-dark);
            border: 1px solid rgba(0, 217, 255, 0.3);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 217, 255, 0.15);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px) scale(0.98);
            pointer-events: none;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .mia-panel.open {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: all;
        }

        .mia-header {
            background: var(--gradient-ai);
            color: var(--black-pure);
            padding: 1rem 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .mia-header .mia-avatar { font-size: 1.6rem; }
        .mia-header h4 { font-size: 1.05rem; margin: 0; }
        .mia-header p { font-size: 0.75rem; margin: 0; font-weight: 600; opacity: 0.85; }

        .mia-close {
            margin-left: auto;
            background: transparent;
            border: none;
            color: var(--black-pure);
            font-size: 1.6rem;
            line-height: 1;
            cursor: pointer;
        }

        .mia-body {
            flex: 1;
            overflow-y: auto;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .mia-msg {
            max-width: 85%;
            padding: 0.7rem 1rem;
            border-radius: 14px;
            font-size: 0.9rem;
            line-height: 1.5;
            white-space: pre-wrap;
            word-wrap: break-word;
        }

        .mia-msg.bot {
            background: var(--gray-medium);
            color: var(--white);
            align-self: flex-start;
            border-bottom-left-radius: 4px;
        }

        .mia-msg.user {
            background: var(--gradient-ai);
            color: var(--black-pure);
            align-self: flex-end;
            font-weight: 600;
            border-bottom-right-radius: 4px;
        }

        .mia-action { align-self: flex-start; }

        .mia-action a {
            display: inline-block;
            background: #25D366;
            color: #fff;
            text-decoration: none;
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
        }

        .mia-action-pending {
            display: inline-block;
            background: rgba(255, 193, 7, 0.12);
            color: #ffc107;
            border: 1px solid rgba(255, 193, 7, 0.35);
            padding: 0.5rem 1rem;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.8rem;
        }

        .mia-typing {
            align-self: flex-start;
            color: var(--text-muted);
            font-size: 0.85rem;
            font-style: italic;
        }

        .mia-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 0.25rem;
        }

        .mia-chip {
            background: rgba(0, 217, 255, 0.1);
            border: 1px solid rgba(0, 217, 255, 0.4);
            color: var(--electric-blue);
            border-radius: 50px;
            padding: 0.45rem 0.9rem;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .mia-chip:hover {
            background: var(--electric-blue);
            color: var(--black-pure);
        }

        .mia-footer {
            display: flex;
            gap: 0.5rem;
            padding: 0.75rem;
            border-top: 1px solid rgba(0, 217, 255, 0.15);
        }

        .mia-footer input {
            flex: 1;
            background: var(--gray-medium);
            border: 1px solid rgba(0, 217, 255, 0.2);
            border-radius: 50px;
            padding: 0.7rem 1rem;
            color: var(--white);
            font-family: inherit;
            font-size: 0.9rem;
            outline: none;
        }

        .mia-footer input:focus { border-color: var(--electric-blue); }

        .mia-footer button {
            background: var(--gradient-ai);
            border: none;
            color: var(--black-pure);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .mia-footer button:disabled { opacity: 0.5; cursor: not-allowed; }

        @media (max-width: 768px) {
            .mia-panel {
                right: 15px;
                left: 15px;
                width: auto;
                bottom: 100px;
                height: 70vh;
            }

            /* Botões flutuantes menores e mais juntos da borda no celular.
               Com 70px + 30px de margem eles invadiam ~100px da direita e
               passavam por cima de CTAs do hero e de texto dos cards. */
            .chatbot-button,
            .whatsapp-button {
                width: 54px;
                height: 54px;
                font-size: 1.5rem;
            }

            .chatbot-button { bottom: 16px; right: 16px; }
            .whatsapp-button { bottom: 80px; right: 16px; }

            .back-to-top {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
                bottom: 144px;
                right: 16px;
            }

            /* Reserva a faixa da direita onde a pilha de botões fica, para o
               texto dos cards não correr por baixo deles. */
            .ecosystem-card,
            .solution-card,
            .testimonial-card {
                padding-right: 1.5rem;
            }
        }

        /* ===================================
           ACESSIBILIDADE - REDUZIR MOVIMENTO
           Respeita usuários que pediram menos animação no sistema.
           Não afeta o visual de quem não ativou essa opção.
        =================================== */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* ===================================
           NÚMEROS / ESTATÍSTICAS
        =================================== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .stat-card {
            background: var(--gray-dark);
            border: var(--border-blue-soft);
            border-radius: 16px;
            padding: 2.5rem 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            border-color: var(--electric-blue);
            transform: translateY(-6px);
            box-shadow: 0 18px 50px rgba(0, 217, 255, 0.25);
        }

        .stat-number {
            font-size: clamp(2.4rem, 5vw, 3.4rem);
            font-weight: 900;
            color: var(--electric-blue);
            line-height: 1;
            text-shadow: 0 0 24px rgba(0, 217, 255, 0.5);
        }

        .stat-label {
            margin-top: 0.8rem;
            color: var(--text-muted);
            font-weight: 600;
            font-size: 1rem;
        }

        .stat-card-soon {
            grid-column: 1 / -1;
            max-width: 520px;
            margin: 0 auto;
        }

        .stat-soon-icon {
            font-size: 2.4rem;
            opacity: 0.85;
        }

        .stat-card-soon .stat-label {
            margin-top: 1rem;
            font-size: 1.05rem;
        }

        /* ===================================
           DEPOIMENTOS
        =================================== */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .testimonial-card {
            background: var(--gray-dark);
            border: var(--border-blue-soft);
            border-radius: 20px;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            border-color: var(--electric-blue);
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 217, 255, 0.25);
        }

        .testimonial-quote {
            color: var(--white);
            line-height: 1.8;
            font-size: 1.05rem;
            flex-grow: 1;
        }

        .testimonial-quote::before {
            content: '\201C';
            color: var(--electric-blue);
            font-size: 3rem;
            line-height: 0.1;
            display: block;
            margin-bottom: 0.8rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1.8rem;
        }

        .testimonial-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--gradient-ai);
            color: var(--black-pure);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.2rem;
            flex-shrink: 0;
            overflow: hidden;
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-name {
            font-weight: 800;
            color: var(--white);
        }

        .testimonial-role {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .testimonial-card-soon {
            grid-column: 1 / -1;
            max-width: 560px;
            margin: 0 auto;
            text-align: center;
        }

        .testimonial-card-soon .testimonial-quote {
            color: var(--text-muted);
            font-style: italic;
        }

        /* Faixa de logos (parceiros / quem confia) */
        .logo-strip {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 3.5rem;
        }

        .logo-slot {
            width: 150px;
            height: 64px;
            border: 1px dashed rgba(0, 217, 255, 0.35);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 0.8rem;
            text-align: center;
            background: rgba(0, 217, 255, 0.03);
        }

        .logo-slot img {
            max-width: 80%;
            max-height: 70%;
            object-fit: contain;
        }

        @media (max-width: 768px) {
            .stats-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

/* ═══════════════════════════════════════════════════════════════
   CAMADA DE REDESENHO — identidade editorial
   ═══════════════════════════════════════════════════════════════
   Escrita como camada sobre o CSS acima, de propósito. O conteúdo
   do site e as correções já validadas (mobile, modo manutenção,
   painel da Mia, cascata do menu) continuam intocados — esta camada
   só troca a linguagem visual. Ordem importa: por vir depois, ela
   vence nos conflitos.

   O que muda: tipografia de título vira serifada (Playfair), cabeçalho
   de seção deixa de ser centralizado e ganha numeração, cards ficam
   com borda fina e linha de destaque no hover, e o ritmo de espaço
   fica mais generoso. O que NÃO muda: a paleta ciano da marca.
═══════════════════════════════════════════════════════════════ */

:root {
    --serif: 'Playfair Display', Georgia, serif;
    --linha: rgba(0, 217, 255, 0.14);
    --superficie: #0B0D0F;
    --superficie-alta: #12161A;
}

/* ── TIPOGRAFIA EDITORIAL ───────────────────────────────────── */

.section-title,
.hero h1,
.botgpt-title {
    font-family: var(--serif);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.02;
}

/* Rótulo numerado acima de cada título — dá orientação de leitura e
   faz a página parecer um índice, não uma pilha de blocos soltos. */
.section-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--electric-blue);
    margin-bottom: 1.1rem;
    opacity: 0.85;
}

/* Cabeçalho de seção alinhado à esquerda: leitura mais natural e ar
   editorial. Centralizado em tudo achata a hierarquia. */
.section > .section-num,
.section > .section-title,
.section > .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: 780px;
    padding-left: 0;
}

.section > .section-title {
    margin-bottom: 1.5rem;
}

.section > .section-subtitle {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 4.5rem;
    color: var(--text-muted);
}

/* Filete sob o cabeçalho, marcando onde a seção começa. */
.section > .section-subtitle::after {
    content: '';
    display: block;
    width: 96px;
    height: 2px;
    margin-top: 2.5rem;
    background: var(--gradient-ai);
}

/* Seções com cabeçalho dentro de wrapper (BotGPT, Experiência)
   seguem centralizadas — ali a composição já funciona assim. */
.botgpt-hero .section-num,
.experiencia-content .section-num {
    text-align: center;
}

/* ── RITMO ──────────────────────────────────────────────────── */

.section {
    padding: 140px 2rem;
    margin-bottom: 0;
}

/* Alternância sutil de fundo separa as seções sem precisar de borda. */
.section:nth-of-type(even) {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.012) 18%, transparent);
}

/* ── CARDS ──────────────────────────────────────────────────── */

.about-card,
.ecosystem-card,
.solution-card,
.monetize-card,
.contact-card,
.roadmap-card,
.price-card {
    background: var(--superficie);
    border: 1px solid var(--linha);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    transition: background .35s ease, border-color .35s ease, transform .35s cubic-bezier(.16, 1, .3, 1);
}

.about-card:hover,
.ecosystem-card:hover,
.solution-card:hover,
.monetize-card:hover,
.contact-card:hover,
.roadmap-card:hover,
.price-card:hover {
    background: var(--superficie-alta);
    border-color: rgba(0, 217, 255, 0.42);
    transform: translateY(-5px);
}

/* Linha de destaque que cresce no hover — o "toque" que faz o card
   parecer responsivo ao cursor sem piscar cor. */
.about-card::after,
.ecosystem-card::after,
.solution-card::after,
.contact-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--gradient-ai);
    transition: width .45s cubic-bezier(.16, 1, .3, 1);
}

.about-card:hover::after,
.ecosystem-card:hover::after,
.solution-card:hover::after,
.contact-card:hover::after {
    width: 100%;
}

/* Título de card também serifado, pra conversar com os títulos de seção. */
.about-card h3,
.ecosystem-card h3,
.solution-card h3 {
    font-family: var(--serif);
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* ── HERO ───────────────────────────────────────────────────── */

.hero h1 {
    font-family: var(--serif);
}

.hero-tagline {
    letter-spacing: 0.24em;
    font-size: 0.72rem;
    font-weight: 700;
}

/* ── MOBILE ─────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .section {
        padding: 84px 1.25rem;
    }

    /* O piso do clamp original (2.5rem) somado à serifada, que é mais
       larga, fazia "EXTRAORDINÁRIA" estourar a tela em 375px e a página
       rolar pro lado. Mesmo defeito que o hero já teve. Piso menor +
       quebra de palavra resolvem sem encolher no desktop. */
    .section-title,
    .botgpt-title {
        font-size: clamp(1.75rem, 8.5vw, 4rem);
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }

    .section > .section-subtitle {
        margin-bottom: 3rem;
    }

    .section > .section-subtitle::after {
        margin-top: 1.75rem;
    }

    .section-num {
        font-size: 0.64rem;
        letter-spacing: 0.22em;
    }
}

/* ── CORREÇÃO: botão do menu sem respiro lateral ──────────────
   `.nav a { padding: .5rem 0 }` tem especificidade (0,1,1), maior que
   `.btn-cta` (0,1,0) — então vencia e zerava o padding horizontal do
   botão. O texto colava nas duas bordas da pílula, parecendo cortado.
   Bug antigo; a tipografia nova só deixou visível. Subir a
   especificidade resolve sem mexer nas regras originais. */
.nav a.btn-cta {
    padding: 0.9rem 2rem;
}

@media (min-width: 769px) and (max-width: 1500px) {
    .nav a.btn-cta {
        padding: 0.6rem 1.25rem;
    }
}

/* ── CORREÇÃO: "IA" invisível dentro dos botões ───────────────
   `.ai-highlight` pinta o "IA" de ciano (#00D9FF) — que é exatamente a
   cor onde o gradiente dos botões começa. Resultado: nos CTAs azuis a
   palavra que carrega a marca sumia no fundo, e o brilho ao redor ainda
   dava impressão de texto vazando pra fora da pílula. Dentro de botão,
   o "IA" herda a cor do próprio botão e mantém só o peso, que é o que
   dá o destaque ali. */
.btn-cta .ai-highlight,
.btn-primary .ai-highlight,
.price-cta .ai-highlight {
    color: inherit;
    text-shadow: none;
    animation: none;
}
