/*** HOME.CSS - CSS principal da home do site Maquina de Leads.
 * Externalizado do index.php para reduzir o HTML e permitir cache.
 ***/


        /* --- Reset & Variáveis --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --bg-main: #07090d;
            --bg-grain-opacity: 0.065;
            --bg-card: rgba(18, 18, 28, 0.45);
            --bg-input: rgba(10, 10, 15, 0.85);
            --primary: #6366f1;
            --primary-hover: #4f46e5;
            --primary-glow: rgba(142, 100, 255, 0.3);
            --accent: #10b981;
            --accent-glow: rgba(16, 185, 129, 0.2);
            --text-main: #f1f5f9;
            --text-muted: #94a3b8;
            --border: rgba(255, 255, 255, 0.06);
            --border-glow: rgba(142, 100, 255, 0.15);
            --border-radius: 20px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            --font-mono: ui-monospace, 'Cascadia Code', 'Fira Code', monospace;
        }

        html {
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: #39424e #07090d;
        }
        ::-webkit-scrollbar { width: 10px; }
        ::-webkit-scrollbar-track { background: #07090d; }
        ::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #39424e, #1b212a); border-radius: 8px; border: 2px solid #07090d; }
        ::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #4c5765, #242c37); }

        body {
            background-color: var(--bg-main);
            background-image: none;
            color: var(--text-main);
            font-family: var(--font-main);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            box-sizing: border-box;
        }
        body::before { content:""; position:fixed; inset:0; pointer-events:none; z-index:0; background-image: linear-gradient(180deg, rgba(13,17,23,0.72) 0%, rgba(7,9,13,0) 34%, rgba(0,0,0,0.38) 100%), radial-gradient(120% 72% at 50% 0%, rgba(0, 0, 0, 0.34) 0%, transparent 62%), radial-gradient(64% 30% at 50% -8%, rgba(148, 163, 184, 0.10) 0%, transparent 68%); animation:none; }
        @keyframes bgdrift { 0%{ background-position:0 0; } 100%{ background-position:70px 40px; } } @keyframes bgpulse { 0%{ opacity:0.75; } 100%{ opacity:1; } } @media (prefers-reduced-motion: reduce){ body::before, body::after{ animation:none; } }
        body::after { content:""; position:fixed; inset:0; pointer-events:none; z-index:0; opacity:var(--bg-grain-opacity); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='mlgrain'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='140' height='140' filter='url(%23mlgrain)'/></svg>"); background-size:140px 140px; background-position:0 0; background-repeat:repeat; }
        .film-noise,.orb-a,.orb-b { display:none !important; }
        p  { color: var(--text-muted); font-size: var(--fs-body); line-height: 1.6; }

        a { color: inherit; text-decoration: none; }

        /* Eyebrow padr�o (substitui emojis) */
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-main);
            font-size: var(--fs-eyebrow);
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 24px;
        }
        .eyebrow::before {
            content: "";
            width: 24px;
            height: 1px;
            background: var(--text-subtle);
        }

        /* CTA prim�rio (Evervault-style) */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--primary);
            color: var(--primary-fg);
            font-family: var(--font-main);
            font-size: 15px;
            font-weight: 600;
            padding: 16px 28px;
            border-radius: 999px;
            border: none;
            cursor: pointer;
            transition: background .2s ease, transform .2s ease;
        }
        .btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); }
        .btn-primary .arr { transition: transform .2s ease; }
        .btn-primary:hover .arr { transform: translateX(3px); }

        /* CTA fantasma (apenas texto + seta) */
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--text);
            font-family: var(--font-main);
            font-size: 15px;
            font-weight: 500;
            padding: 16px 8px;
            cursor: pointer;
            transition: color .2s ease;
        }
        .btn-ghost:hover { color: var(--primary); }
        .btn-ghost .arr { transition: transform .2s ease; }
        .btn-ghost:hover .arr { transform: translateX(3px); }

        /* Se��o base */
        section {
            padding-top: var(--section-pad);
            padding-bottom: var(--section-pad);
            position: relative;
        }
        section .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

        /* Card base minimalista */
        .card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 32px;
            transition: border-color .2s ease, background .2s ease;
        }
        .card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }

        /* Mono data display */
        .mono {
            font-family: var(--font-mono);
            font-size: 12px;
            letter-spacing: 0.04em;
            color: var(--text-subtle);
        }

        html, body {
            font-family: var(--font-main);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* --- Partículas Ambientais --- */
        .particles-container {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }
        .particle {
            position: absolute;
            background: #8e64ff;
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(142, 100, 255, 0.6);
            animation: particle-pulse 6s ease-in-out infinite;
        }
        @keyframes particle-pulse {
            0%, 100% { transform: scale(1); opacity: 0.25; }
            50% { transform: scale(1.3); opacity: 0.6; }
        }

        /* --- Full-width Navbar --- */
        header.pill-nav {
            position: fixed;
            top: 24px;
            left: 24px;
            width: calc(100% - 48px);
            background: transparent;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            border-bottom: none;
            border-radius: 0;
            padding: 0 24px;
            height: 64px;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), top 0.4s ease, background-color 0.3s ease, box-shadow 0.3s ease;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            box-shadow: none;
        }
        header.pill-nav.nav-hidden {
            transform: translateY(-100%);
        }
        header.pill-nav.nav-scrolled {
            background: rgba(255, 255, 255, 0.98);
            border-bottom: 1px solid #E5E7EB;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        }
        .nav-inner {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }
        .logo-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            flex-shrink: 0;
        }
        .nav-logo {
            height: 24px;
            max-width: 140px;
            object-fit: contain;
        }
        .brand-name {
            font-family: 'Geologica', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: #111827;
            white-space: nowrap;
        }
        .nav-menu {
            display: flex;
            gap: 24px;
            list-style: none;
            margin: 0 auto;
            padding: 0;
        }
        .nav-menu a {
            color: #6B7280;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            transition: var(--transition);
            white-space: nowrap;
        }
        .nav-menu a:hover, .nav-menu a.active {
            color: #111827;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }
        .nav-actions .btn-login {
            color: #FFFFFF;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 50px;
            background: #111827;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            border: none;
        }
        .nav-actions .btn-login:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
            filter: brightness(1.1);
        }
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            color: #111827;
            cursor: pointer;
        }
        .hamburger-btn svg {
            width: 24px;
            height: 24px;
        }

        /* --- Mobile Drawer (Sidebar Estilo App) --- */
        .mobile-drawer-overlay {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 1999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        .mobile-drawer-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }
        .mobile-drawer {
            position: fixed;
            top: 0; left: 0; bottom: 0;
            width: 82%;
            max-width: 320px;
            background: #FFFFFF;
            border-right: 1px solid #E5E7EB;
            border-radius: 0 24px 24px 0;
            z-index: 2000;
            transform: translateX(-100%);
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            padding: 30px 20px;
            overflow-y: auto;
            box-shadow: none;
        }
        .mobile-drawer.active {
            transform: translateX(0);
            box-shadow: 20px 0 50px rgba(0, 0, 0, 0.08);
        }
        .drawer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        .drawer-logo {
            height: 32px;
            max-width: 140px;
            object-fit: contain;
        }
        .close-drawer-btn {
            background: #F3F4F6;
            border: 1px solid #E5E7EB;
            color: #111827;
            font-size: 20px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        .close-drawer-btn:hover {
            background: #E5E7EB;
        }
        .drawer-slogan {
            font-size: 12px;
            color: #6B7280;
            margin: 2px 0 0 0;
            font-weight: 500;
            line-height: 1.2;
        }
        .drawer-brand { margin-bottom: 28px; }
        .drawer-nav {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 30px;
        }
        .drawer-card-item {
            background: #FFFFFF;
            border: 1px solid #E5E7EB;
            border-radius: 16px;
            padding: 14px 18px;
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #374151;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .drawer-card-item:hover, .drawer-card-item.active {
            background: #F9FAFB;
            border-color: #D1D5DB;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
        }
        .drawer-icon {
            font-size: 18px;
            margin-right: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: #FFFFFF;
            border-radius: 10px;
            border: 1px solid #E5E7EB;
            transition: all 0.3s;
        }
        .drawer-card-item:hover .drawer-icon, .drawer-card-item.active .drawer-icon {
            background: #111827;
            border-color: #111827;
            color: white;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
        }
        .drawer-title {
            font-family: 'Geologica', sans-serif;
            font-size: 14.5px;
            font-weight: 700;
            flex-grow: 1;
            color: #111827;
        }
        .drawer-arrow {
            font-size: 12px;
            color: #9CA3AF;
            transition: transform 0.3s;
        }
        .drawer-card-item:hover .drawer-arrow {
            transform: translateX(4px);
            color: #111827;
        }
        .drawer-footer {
            margin-top: auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .drawer-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: #111827;
            color: white;
            font-family: 'Geologica', sans-serif;
            font-weight: 700;
            padding: 14px;
            border-radius: 16px;
            text-decoration: none;
            font-size: 14px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }
        .drawer-btn:hover {
            transform: translateY(-2px);
            filter: brightness(1.1);
        }
        .drawer-contact-info {
            background: #F9FAFB;
            border: 1px solid #E5E7EB;
            border-radius: 16px;
            padding: 16px;
        }
        .drawer-contact-info h4 {
            font-size: 11px;
            color: #111827;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
            font-weight: 700;
        }
        .drawer-contact-info a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            margin-bottom: 8px;
            transition: var(--transition);
        }
        .drawer-contact-info a:last-child {
            margin-bottom: 0;
        }
        .drawer-contact-info a:hover {
            color: #111827;
        }
        .drawer-whatsapp-link {
            color: #059669 !important;
            font-weight: 600;
        }

        /* Responsive Navbar */
        @media (max-width: 1240px) {
            .hamburger-btn { display: block; }
            .nav-menu, .nav-actions { display: none; }
            header.pill-nav {
                width: auto;
                min-width: unset;
                padding: 8px 16px;
                gap: 16px;
            }
        }

        /* --- Hero Section --- */
        .hero {
            height: auto;
            min-height: 65vh;
            max-height: 850px;
            display: flex;
            align-items: center;
            padding: 110px 0 80px 0;
            position: relative;
            background-color: #FFFFFF;
            background-image:
                linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            background-position: center top;
            overflow: hidden;
            border-top: 1px solid #111827;
            border-left: 1px solid #111827;
            border-right: 1px solid #111827;
            border-radius: 24px 24px 0 0;
            margin-top: 64px;
        }
        .hero-container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 1.15fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        @media (max-width: 991px) {
            .hero {
                max-height: none;
                height: auto;
                padding-top: 110px;
                padding-bottom: 80px;
                border-radius: 16px 16px 0 0;
            }
            .hero-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: left;
            }
        }

        .hero-fade-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: linear-gradient(to bottom, transparent, #FFFFFF);
            pointer-events: none;
            z-index: 3;
        }

        .badge-container {
            display: flex;
            gap: 10px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }
        .promo-badge {
            background: rgba(142, 100, 255, 0.08);
            border: 1px solid rgba(142, 100, 255, 0.2);
            color: #a5b4fc;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 30px;
        }
        .promo-badge.accent {
            background: rgba(139, 92, 246, 0.08);
            border: 1px solid rgba(139, 92, 246, 0.15);
            color: #c084fc;
        }

        .hero-copy h1 {
            font-family: 'Geologica', sans-serif;
            font-size: 48px;
            line-height: 1.15;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff 40%, #c7d2fe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
            text-align: left;
        }
        @media (max-width: 991px) {
            .hero-copy h1 { text-align: left; }
        }
        @media (max-width: 600px) {
            .hero-copy h1 { font-size: 34px; }
        }
        .hero-copy p {
            font-size: 16.5px;
            color: var(--text-muted);
            margin-bottom: 30px;
            line-height: 1.6;
            text-align: left;
        }
        @media (max-width: 991px) {
            .hero-copy p { text-align: left; }
        }

        /* --- Benefícios --- */
        .benefits {
            display: flex;
            flex-direction: column;
            gap: 15px;
            text-align: left;
            margin-bottom: 35px;
        }
        @media (max-width: 991px) {
            .benefits {
                max-width: 100%;
                margin-left: 0;
                margin-right: 0;
            }
        }
        .benefit-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            font-weight: 500;
        }
        .benefit-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #F3F4F6;
            color: #a5b4fc;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: bold;
        }
        .cta-btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            padding: 14px 34px;
            border-radius: 50px;
            box-shadow: 0 4px 14px rgba(142, 100, 255, 0.3);
            transition: var(--transition);
        }
        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(142, 100, 255, 0.5);
            filter: brightness(1.1);
        }

        /* --- Hero Metrics Grid --- */
        .hero-metrics {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 35px;
            border-top: 1px solid var(--border);
            padding-top: 25px;
            text-align: left;
        }
        .metric-item {
            display: flex;
            flex-direction: column;
        }
        .metric-value {
            font-family: 'Geologica', sans-serif;
            font-size: 26px;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff 60%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }
        .metric-label {
            font-size: 11.5px;
            color: var(--text-muted);
            margin-top: 4px;
            font-weight: 500;
        }
        @media (max-width: 991px) {
            .hero-metrics {
                justify-content: center;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
        }
        @media (max-width: 480px) {
            .hero-metrics {
                grid-template-columns: 1fr;
                gap: 15px;
                text-align: left;
            }
            .metric-item {
                align-items: flex-start !important;
                justify-content: flex-start !important;
            }
        }

        /* --- Chatbot Widget Wrapper (Sem cards flutuantes sobrepostos) --- */
        .chat-widget-wrapper {
            position: relative;
            width: 100%;
            max-width: 440px;
            margin: 0 auto;
        }

        /* --- Marquee de Setores (Duas colunas, sem partículas, com transições suaves) --- */
        .marquee-section {
            padding: 80px 0 50px 0;
            background: #0d0d12;
            position: relative;
            z-index: 5;
            overflow: hidden;
        }
        .marquee-fade-top {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 60px;
            background: linear-gradient(to bottom, #FFFFFF, transparent);
            pointer-events: none;
            z-index: 3;
        }
        .marquee-fade-bottom {
            position: absolute;
            bottom: 0; left: 0; width: 100%; height: 60px;
            background: linear-gradient(to top, #FFFFFF, transparent);
            pointer-events: none;
            z-index: 3;
        }
        .marquee-grid {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 1fr 2.2fr;
            gap: 50px;
            align-items: center;
        }
        @media (max-width: 991px) {
            .marquee-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: left;
            }
        }
        .marquee-text-col {
            text-align: left;
        }
        @media (max-width: 991px) {
            .marquee-text-col {
                text-align: left;
                max-width: 600px;
                margin: 0;
            }
        }
        .marquee-text-col h2 {
            font-family: 'Geologica', sans-serif;
            font-size: 32px;
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #ffffff 60%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .marquee-text-col p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .marquee-scroll-col {
            overflow: hidden;
            position: relative;
            mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
        }
        .marquee-track {
            display: flex;
            width: max-content;
            animation: marquee-scroll 30s linear infinite;
            gap: 20px;
            padding: 10px 0;
            will-change: transform;
            transform: translateZ(0);
        }
        @media (prefers-reduced-motion: reduce) {
            .marquee-track {
                animation: none;
            }
        }
        .marquee-item {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
            background: #F9FAFB;
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 20px 24px;
            border-radius: 16px;
            width: 280px;
            white-space: normal;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            text-align: left;
        }
        .marquee-item:hover {
            border-color: rgba(0, 0, 0, 0.15);
            background: #F9FAFB;
            transform: translateY(-4px);
        }
        .marquee-item-header {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .marquee-icon {
            font-size: 20px;
            background: #F3F4F6;
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .marquee-item-title {
            font-family: 'Geologica', sans-serif;
            font-size: 15.5px;
            font-weight: 700;
            color: #111827;
        }
        .marquee-item-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.45;
        }
        @keyframes marquee-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* --- Seção: Como Funciona --- */
        /* --- Seção: O Diagnóstico --- */
        .diagnostic-section {
            padding: 100px 0;
            background: #FFFFFF;
            text-align: left;
            position: relative;
            overflow: hidden;
        }
        .diagnostic-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }
        @media (max-width: 991px) {
            .diagnostic-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .diagnostic-grid {
                grid-template-columns: 1fr;
            }
        }
        .diagnostic-card {
            background: #FFFFFF;
            border: 1px solid #E5E7EB;
            border-radius: var(--border-radius);
            padding: 35px 30px;
            position: relative;
            transition: all 0.3s ease;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.04);
        }
        .diagnostic-card:hover {
            border-color: #FECACA;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        }
        .diagnostic-card::before {
            content: "";
            position: absolute;
            top: 0; left: 0; width: 100%; height: 2px;
            background: linear-gradient(90deg, #DC2626, #F97316);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .diagnostic-card:hover::before {
            opacity: 1;
        }
        .diagnostic-icon-wrapper {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            background: #FEF2F2;
            border: 1px solid #FECACA;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 22px;
            color: #DC2626;
        }
        .diagnostic-card h3 {
            font-family: 'Geologica', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 12px;
        }
        .diagnostic-card p {
            font-size: 13.5px;
            color: #6B7280;
            line-height: 1.5;
        }

        /* --- Seção: Fluxo e Auditoria CAPI --- */
        /* --- Seção: O Ecossistema (Layout Z Alternado) --- */
        .ecosystem-section {
            padding: 100px 0;
            background: #F9FAFB;
            position: relative;
            overflow: hidden;
        }
        .ecosystem-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-direction: column;
            gap: 100px;
            position: relative;
            z-index: 2;
        }
        .ecosystem-block {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
        }
        .ecosystem-block.reverse {
            grid-template-columns: 0.9fr 1.1fr;
        }
        @media (max-width: 991px) {
            .ecosystem-block, .ecosystem-block.reverse {
                grid-template-columns: 1fr !important;
                gap: 40px;
            }
            .ecosystem-block .block-visual {
                order: 2; /* Put visual under text on mobile */
            }
            .ecosystem-block.reverse .block-visual {
                order: 2;
            }
        }
        .block-text {
            text-align: left;
        }
        .block-text h3 {
            font-family: 'Geologica', sans-serif;
            font-size: 26px;
            font-weight: 800;
            color: #111827;
            margin-bottom: 18px;
            line-height: 1.3;
        }
        .block-text p {
            font-size: 15.5px;
            color: #6B7280;
            line-height: 1.6;
        }
        .block-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }
        @media (max-width: 600px) {
            .flow-connector::after {
                transform: rotate(90deg);
                bottom: 0;
                right: -6px;
                top: auto;
            }
        }

        /* --- Seção: O Painel por Dentro --- */
        .dashboard-showcase-section {
            padding: 100px 0;
            background: #FFFFFF;
            position: relative;
            overflow: hidden;
        }
        .dashboard-widget {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 40px;
            position: relative;
            z-index: 2;
        }
        @media (max-width: 991px) {
            .dashboard-widget {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        .dashboard-tabs {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        @media (max-width: 991px) {
            .dashboard-tabs {
                flex-direction: row;
                overflow-x: auto;
                padding-bottom: 10px;
            }
        }
        .dashboard-tab-btn {
            background: #FFFFFF;
            border: 1px solid #E5E7EB;
            border-radius: 12px;
            padding: 20px;
            text-align: left;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #4B5563;
            outline: none;
        }
        @media (max-width: 991px) {
            .dashboard-tab-btn {
                min-width: 250px;
                flex-shrink: 0;
            }
        }
        .dashboard-tab-btn.active {
            background: #F9FAFB;
            border-color: #111827;
            color: #111827;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .dashboard-tab-btn h4 {
            font-family: 'Geologica', sans-serif;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 6px;
            color: inherit;
        }
        .dashboard-tab-btn p {
            font-size: 12.5px;
            color: #6B7280;
            line-height: 1.4;
        }
        .dashboard-tab-btn.active h4 {
            color: #111827;
        }
        .dashboard-content-panel {
            background: #FFFFFF;
            border: 1px solid #E5E7EB;
            border-radius: 20px;
            padding: 30px;
            min-height: 420px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 1px 3px rgba(0,0,0,0.04);
            position: relative;
        }
        @media (max-width: 768px) {
            .dashboard-content-panel {
                padding: 20px 15px;
            }
        }
        .dashboard-screen {
            display: none;
            flex-direction: column;
            height: 100%;
            animation: fadeIn 0.4s ease forwards;
        }
        .dashboard-screen.active {
            display: flex;
        }

        /* --- Seção: Planos Comerciais --- */
        .plans-section {
            position: relative;
            overflow: hidden;
            padding: 100px 0;
            background: #FFFFFF;
        }
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }
        @media (max-width: 768px) {
            .section-title {
                text-align: left;
                margin-bottom: 40px;
                padding: 0 24px;
            }
            .section-title h2 {
                font-size: 28px;
            }
        }
        .section-title h2 {
            font-family: 'Geologica', sans-serif;
            font-size: 38px;
            font-weight: 800;
            background: linear-gradient(135deg, #111827 40%, #4B5563 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 12px;
        }
        .section-title p {
            color: #6B7280;
            font-size: 16px;
        }
        .plans-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }
        @media (max-width: 768px) {
            .plans-grid {
                grid-template-columns: 1fr;
            }
        }
        .plan-card {
            background: #FFFFFF;
            border: 1px solid #E5E7EB;
            border-radius: var(--border-radius);
            padding: 45px 40px;
            display: flex;
            flex-direction: column;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: visible; /* Changed from hidden to visible to show badges */
            box-shadow: 0 1px 3px rgba(0,0,0,0.04);
        }
        .plan-card::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            border-radius: var(--border-radius);
            border: 1px solid transparent;
            background: linear-gradient(135deg, rgba(0,0,0,0.02), rgba(0,0,0,0.01)) border-box;
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: destination-out;
            mask-composite: exclude;
            pointer-events: none;
        }
        .plan-card:hover {
            transform: translateY(-6px);
            border-color: #D1D5DB;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
            background: #FFFFFF;
        }
        .plan-card.featured {
            background: #FFFFFF;
            border-color: #111827;
        }
        .plan-card.featured:hover {
            background: #F9FAFB;
            border-color: #000000;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        .plan-badge {
            position: absolute;
            top: 24px;
            right: 24px;
            background: #111827;
            color: white;
            font-size: 11px;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: 700;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        }
        .plans-features-box {
            max-width: 800px;
            margin: 0 auto 35px auto;
            padding: 25px 30px;
            background: #F9FAFB;
            border: 1px solid #E5E7EB;
            border-radius: 16px;
            box-sizing: border-box;
            text-align: left;
        }
        .plans-features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px 30px;
            width: 100%;
        }
        @media (max-width: 768px) {
            .plans-features-grid {
                grid-template-columns: 1fr;
            }
        }
        .plan-name {
            font-family: 'Geologica', sans-serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #111827;
        }
        .plan-desc {
            color: #6B7280;
            font-size: 14.5px;
            margin-bottom: 25px;
            min-height: 48px;
            line-height: 1.5;
        }
        .plan-price {
            font-family: 'Geologica', sans-serif;
            font-size: 38px;
            font-weight: 800;
            color: #111827;
            margin-bottom: 25px;
        }
        .plan-price span {
            font-size: 15px;
            color: #6B7280;
            font-weight: 400;
        }
        .plan-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            font-size: 14px;
            margin-bottom: 35px;
            flex-grow: 1;
        }
        .plan-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.85);
        }
        .plan-features li::before {
            content: "✓";
            color: var(--accent);
            font-weight: bold;
        }

        /* --- Seção: Depoimentos --- */
        .testimonials {
            padding: 100px 0;
            background: #FFFFFF;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .testimonials-grid {
            max-width: 1280px;
            margin: 40px auto 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }
        .testimonial-card {
            background: #FFFFFF;
            border: 1px solid #E5E7EB;
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: left;
            box-shadow: 0 1px 3px rgba(0,0,0,0.04);
        }
        .testimonial-text {
            font-size: 14px;
            color: #4B5563;
            line-height: 1.6;
            margin-bottom: 20px;
            font-style: italic;
        }
        .testimonial-user {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #111827;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
            font-size: 14px;
        }
        .user-info h4 {
            font-size: 14.5px;
            color: #111827;
            margin-bottom: 2px;
        }
        .user-info span {
            font-size: 12px;
            color: #6B7280;
        }

        /* --- Separador do Rodapé --- */
        .footer-separator {
            display: block;
            height: 1px;
            background: rgba(255, 255, 255, 0.06);
        }

        /* --- Footer --- */
        footer {
            background: transparent;
            padding: 60px 0 40px 0;
            position: relative;
            overflow: hidden;
        }
        footer::before {
            content: "";
            position: absolute;
            top: -120px;
            left: 50%;
            transform: translateX(-50%);
            width: 720px;
            height: 280px;
            background: radial-gradient(ellipse, rgba(148, 163, 184, 0.08) 0%, transparent 68%);
            filter: blur(20px);
            pointer-events: none;
        }
        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 50px;
            text-align: left;
            position: relative;
            z-index: 2;
        }
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: left;
            }
            .footer-brand p {
                margin-left: 0;
                margin-right: 0;
            }
        }
        .footer-brand p {
            color: var(--text-muted);
            font-size: 14.5px;
            margin-top: 18px;
            max-width: 320px;
            line-height: 1.6;
        }
        .footer-logo {
            height: 38px;
            max-width: 180px;
            object-fit: contain;
        }
        .footer-links h4, .footer-legal h4 {
            font-family: 'Geologica', sans-serif;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #f1f5f9;
            letter-spacing: 0.5px;
        }
        .footer-links a, .footer-legal a {
            display: block;
            color: var(--text-muted);
            font-size: 14px;
            text-decoration: none;
            margin-bottom: 12px;
            transition: var(--transition);
        }
        .footer-links a:hover, .footer-legal a:hover {
            color: #f1f5f9;
        }

        /* --- Seção de Autoria --- */
        .copyright-section {
            background: transparent !important;
            padding: 16px 0 !important;
            margin: 0 !important;
            border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
            text-align: center !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            min-height: 52px !important;
            box-sizing: border-box !important;
            width: 100% !important;
        }
        .copyright-container {
            width: 100% !important;
            max-width: 1200px !important;
            margin: 0 auto !important;
            padding: 0 24px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            box-sizing: border-box !important;
        }
        .copyright-container p {
            color: var(--text-muted) !important;
            font-size: 12px !important;
            letter-spacing: 0.3px !important;
            margin: 0 !important;
            padding: 0 !important;
            line-height: 1.4 !important;
            display: inline-block !important;
        }

        /* --- Chatbot Widget Estilizado (Unixcode Style) --- */
        .chat-widget {
            background: #FFFFFF;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid #E5E7EB;
            border-radius: 24px;
            width: 100%;
            max-width: 440px;
            height: 560px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
            margin: 0 auto;
            text-align: left;
            position: relative;
        }
        .chat-header {
            background: #F9FAFB;
            border-bottom: 1px solid #E5E7EB;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 14px;
            color: #111827;
            position: relative;
            z-index: 2;
        }
        .agent-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #111827;
            box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
        }
        .agent-info {
            display: flex;
            flex-direction: column;
        }
        .agent-name {
            font-family: 'Geologica', sans-serif;
            font-weight: 700;
            font-size: 15px;
            letter-spacing: -0.2px;
            color: #111827;
        }
        .agent-role {
            font-size: 11px;
            color: #6B7280;
            font-weight: 500;
        }
        .online-indicator {
            width: 10px;
            height: 10px;
            background: #10b981;
            border-radius: 50%;
            border: 2px solid #F9FAFB;
            position: absolute;
            bottom: 18px;
            left: 50px;
            box-shadow: 0 0 8px #10b981;
        }
        .chat-body {
            flex-grow: 1;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
            background: #FFFFFF;
            position: relative;
            z-index: 1;
        }
        .message {
            max-width: 85%;
            display: flex;
            flex-direction: column;
        }
        .message-text {
            padding: 12px 18px;
            border-radius: 16px;
            font-size: 13.5px;
            line-height: 1.5;
        }
        .bot-msg {
            align-self: flex-start;
        }
        .bot-msg .message-text {
            background: #F9FAFB;
            border: 1px solid #E5E7EB;
            color: #374151;
            border-top-left-radius: 4px;
        }
        .user-msg {
            align-self: flex-end;
        }
        .user-msg .message-text {
            background: #111827;
            color: white;
            border-top-right-radius: 4px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }
        .typing-indicator {
            align-self: flex-start;
            background: #F9FAFB;
            border: 1px solid #E5E7EB;
            padding: 12px 18px;
            border-radius: 16px;
            border-top-left-radius: 4px;
            display: flex;
            gap: 4px;
            align-items: center;
        }
        .typing-indicator span {
            width: 6px;
            height: 6px;
            background: #9CA3AF;
            border-radius: 50%;
            animation: typingBounce 1.3s infinite ease-in-out;
        }
        .typing-indicator span:nth-child(2) { animation-delay: 0.15s; }
        .typing-indicator span:nth-child(3) { animation-delay: 0.3s; }
        
        .chat-footer {
            padding: 18px 20px;
            background: #F9FAFB;
            border-top: 1px solid #E5E7EB;
            position: relative;
            z-index: 2;
        }
        .input-wrapper {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .chat-input {
            flex-grow: 1;
            padding: 12px 18px;
            border-radius: 30px;
            background: #FFFFFF;
            border: 1px solid #E5E7EB;
            color: #111827;
            font-size: 13.5px;
            outline: none;
            transition: all 0.3s;
        }
        .chat-input::placeholder {
            color: #9CA3AF;
        }
        .chat-input:focus {
            border-color: #111827;
            background: #FFFFFF;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
        }
        .send-btn {
            background: #111827;
            border: none;
            border-radius: 30px;
            color: white;
            padding: 12px 24px;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        .send-btn:hover {
            transform: translateY(-1px);
            filter: brightness(1.1);
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
        }
        
        .options-container {
            display: flex;
            flex-direction: column;
            gap: 8px;
            width: 100%;
        }
        .option-btn {
            background: #FFFFFF;
            border: 1px solid #E5E7EB;
            color: #374151;
            padding: 12px 18px;
            border-radius: 14px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            text-align: left;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .option-btn:hover {
            background: #F9FAFB;
            border-color: #111827;
            color: #111827;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        }

        /* --- Styles do Checkout Modal (Etapa 10) --- */
/* --- Checkout Modal dark Evervault (drawer direita) --- */
.checkout-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: none;
    justify-content: flex-end;
    align-items: stretch;
    z-index: 10000;
    padding: 0;
}
.checkout-modal-content {
    background: #0a0a0c;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 22px 0 0 22px;
    width: 100%;
    max-width: 480px;
    padding: 44px 34px;
    box-shadow: -30px 0 80px rgba(0, 0, 0, 0.6);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    animation: slideInRight 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@media (max-width: 480px) {
    .checkout-modal-content {
        max-width: 100%;
        border-radius: 0;
        padding: 32px 22px;
    }
}
@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}
.checkout-close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.4);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.checkout-close:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.05);
}
.checkout-header {
    text-align: left;
    margin-bottom: 28px;
}
.checkout-header h2 {
    font-family: 'Geologica', sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 8px;
}
.checkout-header p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13.5px;
    line-height: 1.55;
}
.checkout-step {
    display: none;
}
.checkout-step.active {
    display: block;
}
.checkout-plan-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 24px;
    text-align: left;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}
.checkout-plan-summary::before {
    content: "";
    position: absolute;
    top: 0; left: 20px; right: 20px;
    height: 2px; border-radius: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}
.checkout-plan-title {
    font-family: 'Geologica', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.checkout-plan-cycle {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #a5b4fc;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 10px;
}
.checkout-price-value {
    font-family: 'Geologica', sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
    text-shadow: none;
}
.checkout-plan-installments {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.checkout-gateway-badge {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 10px;
    margin-top: 8px;
}
.checkout-form-group {
    margin-bottom: 16px;
    text-align: left;
}
.checkout-form-group label {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 8px;
}
.checkout-form-control {
    width: 100%;
    padding: 13px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
    font-family: 'Inter', sans-serif;
}
.checkout-form-control::placeholder {
    color: rgba(255, 255, 255, 0.28);
}
.checkout-form-control:focus {
    border-color: rgba(255, 251, 235, 0.55);
    box-shadow: 0 0 0 3px rgba(255, 251, 235, 0.12);
    background: rgba(255, 255, 255, 0.05);
}
.checkout-error {
    color: #f87171;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 13px;
    margin-bottom: 20px;
    text-align: left;
    display: none;
}
.checkout-btn {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: none;
    background: #3B5F41;
    color: #F8FAFC;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
    box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.5);
    font-family: 'Geologica', sans-serif;
}
.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -8px rgba(0, 0, 0, 0.55);
    background: #2f4c36;
    filter: none;
}
.checkout-back-link {
    display: inline-block;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12.5px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s;
}
.checkout-back-link:hover {
    color: #fff;
}
.checkout-cycle-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
    color: rgba(255, 255, 255, 0.75);
}
.checkout-cycle-option strong {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
}
.checkout-cycle-option .co-price {
    display: block;
    font-family: 'Geologica', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
}
.checkout-cycle-option small {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10.5px;
}
.checkout-cycle-option:hover {
    border-color: rgba(255, 255, 255, 0.25);
}
.checkout-cycle-option.selected {
    border-color: rgba(59, 95, 65, 0.9);
    background: rgba(59, 95, 65, 0.18);
    box-shadow: none;
}
.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    border-top-color: #FFFBEB;
    animation: spin 1s ease-in-out infinite;
    vertical-align: middle;
    margin-right: 8px;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* --- CSS Adicional para Modal de Apresentação --- */
        .pres-slide {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.4s ease, transform 0.4s ease;
            grid-template-columns: 0.8fr 1.2fr !important; /* 40% Detalhes / 60% Imagem no Desktop */
        }
        .pres-slide.active {
            display: grid !important;
            opacity: 1;
            transform: translateX(0);
        }
        .pres-slide.exit-left {
            display: grid !important;
            opacity: 0;
            transform: translateX(-30px);
        }
        /* Imagem 4:5 da coluna direita dos slides */
        .slide-graphic { display: flex; align-items: center; justify-content: center; height: 100%; box-sizing: border-box; }
        .slide-img {
            width: 100%;
            max-width: 420px;
            aspect-ratio: 4 / 5;
            object-fit: cover;
            border-radius: 14px;
            border: 1px solid #E5E7EB;
            box-shadow: 0 12px 30px rgba(0,0,0,0.06);
            display: block;
        }
        .slide-img-fallback {
            width: 100%;
            max-width: 420px;
            aspect-ratio: 4 / 5;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #6B7280;
            font-size: 13px;
            background: #F9FAFB;
            border: 1px dashed #D1D5DB;
            border-radius: 14px;
        }
        .pres-pulse-dot {
            animation: pulse-dot 1.5s infinite;
        }
        @keyframes pulse-dot {
            0% { opacity: 0.4; }
            50% { opacity: 1; }
            100% { opacity: 0.4; }
        }
        .pres-control-btn:hover {
            background: #F3F4F6 !important;
        }
        .pres-control-btn.end-btn:hover {
            background: #DC2626 !important;
        }
        .pres-left-content {
            opacity: 0;
            transform: scale(0.98);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }
        .pres-left-content.active {
            display: flex !important;
            opacity: 1;
            transform: scale(1);
        }
        .pres-chat-user-message {
            align-self: flex-end;
            background: #111827;
            color: #111827;
            padding: 10px 14px;
            border-radius: 12px 12px 0 12px;
            font-size: 13.5px;
            line-height: 1.4;
            max-width: 85%;
            word-break: break-word;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
        }
        .pres-chat-bot-message {
            align-self: flex-start;
            background: #F9FAFB;
            color: #374151;
            border: 1px solid #E5E7EB;
            padding: 10px 14px;
            border-radius: 12px 12px 12px 0;
            font-size: 13.5px;
            line-height: 1.4;
            max-width: 85%;
            word-break: break-word;
        }
        .pres-option-btn {
            background: #FFFFFF;
            border: 1px solid #E5E7EB;
            color: #374151;
            padding: 10px 14px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 500;
            text-align: left;
            width: 100%;
            transition: background 0.2s, border-color 0.2s;
            outline: none;
        }
        .pres-option-btn:hover {
            background: #F9FAFB;
            border-color: #111827;
        }
        .pres-text-input {
            flex: 1;
            background: #FFFFFF;
            border: 1px solid #E5E7EB;
            color: #111827;
            padding: 12px;
            border-radius: 6px;
            font-size: 13px;
            outline: none;
            transition: border-color 0.2s;
        }
        .pres-text-input:focus {
            border-color: #111827;
        }
        .pres-send-btn {
            background: #111827;
            color: #111827;
            border: none;
            padding: 0 20px;
            border-radius: 6px;
            font-weight: bold;
            font-size: 13px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .pres-send-btn:hover {
            background: #000000;
        }
        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.05); opacity: 1; }
            100% { transform: scale(1); opacity: 0.8; }
        }

        /* --- Chat da apresentacao: tema dark Evervault --- */
        #presentation-modal .chat-body {
            background: #0a0c16;
        }
        #presentation-modal .pres-chat-bot-message {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.09);
            color: rgba(255,255,255,0.85);
        }
        #presentation-modal .pres-chat-user-message {
            background: linear-gradient(135deg, #8e64ff, #6633ee);
            color: #fff;
            box-shadow: 0 6px 20px -6px rgba(142,100,255,0.55);
        }
        #presentation-modal .typing-indicator {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.09);
        }
        #presentation-modal .typing-indicator span {
            background: #8e64ff;
        }
        #presentation-modal .pres-option-btn {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            color: #fff;
            border-radius: 10px;
        }
        #presentation-modal .pres-option-btn:hover {
            background: rgba(142,100,255,0.12);
            border-color: rgba(142,100,255,0.5);
        }
        #presentation-modal .pres-text-input {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            color: #fff;
            border-radius: 10px;
        }
        #presentation-modal .pres-text-input::placeholder {
            color: rgba(255,255,255,0.3);
        }
        #presentation-modal .pres-text-input:focus {
            border-color: rgba(142,100,255,0.6);
            box-shadow: 0 0 0 3px rgba(142,100,255,0.15);
        }
        #presentation-modal .pres-send-btn {
            background: linear-gradient(135deg, #8e64ff, #6633ee);
            color: #fff;
            border-radius: 10px;
        }
        #presentation-modal .pres-send-btn:hover {
            background: linear-gradient(135deg, #8e64ff, #6633ee);
            filter: brightness(1.1);
        }

        /* --- Classes Responsivas da Modal de Apresentação --- */
        .pres-modal-left {
            width: 65%;
            height: 100%;
            display: flex;
            flex-direction: column;
            background: #FFFFFF;
            border-right: 1px solid #E5E7EB;
            position: relative;
            box-sizing: border-box;
            transition: width 0.4s ease;
        }
        .pres-modal-right {
            width: 35%;
            height: 100%;
            display: flex;
            flex-direction: column;
            background: #F9FAFB;
            box-sizing: border-box;
            position: relative;
            transition: width 0.4s ease, opacity 0.4s ease;
        }

        /* Desktop FULL-WIDTH slides toggle */
        .pres-modal-container.slides-active .pres-modal-left {
            width: 100%;
            border-right: none;
        }
        .pres-modal-container.slides-active .pres-modal-right {
            width: 0% !important;
            opacity: 0 !important;
            overflow: hidden !important;
            display: none !important;
        }

        /* Mobile specific adjustments (max-width: 768px) */
        @media (max-width: 768px) {
            .pres-modal-container {
                width: 100% !important;
                height: 100% !important;
                max-height: 100vh !important;
                border-radius: 0 !important;
                border: none !important;
            }
            /* Default: Left (Capa/Success) is hidden, Right (Chatbot) takes full space */
            .pres-modal-left {
                width: 0% !important;
                display: none !important;
            }
            .pres-modal-right {
                width: 100% !important;
                display: flex !important;
                opacity: 1 !important;
            }

            /* Slides active: Left (Slides) takes full space, Right (Chatbot) is hidden */
            .pres-modal-container.slides-active .pres-modal-left {
                width: 100% !important;
                display: flex !important;
            }
            .pres-modal-container.slides-active .pres-modal-right {
                width: 0% !important;
                display: none !important;
                opacity: 0 !important;
            }

            /* Inside slides: make layout single column on mobile */
            .pres-slide {
                grid-template-columns: 1fr !important;
                gap: 15px !important;
                padding: 15px !important;
            }
            .slide-graphic {
                margin-top: 10px;
                justify-content: center;
            }
            .hero-metrics {
                grid-template-columns: 1fr !important;
                gap: 15px !important;
                text-align: left !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
            .metric-item {
                align-items: flex-start !important;
                justify-content: flex-start !important;
                text-align: left !important;
            }
        }
    
    /* === Reformulação Home (2026-07-14) === */
    .split-section{max-width:1200px;margin:0 auto;padding:0 24px;display:grid;grid-template-columns:0.95fr 1.05fr;gap:55px;align-items:center;}
    .split-section > * { min-width: 0; }
    @media(max-width:991px){.split-section{grid-template-columns:1fr;gap:35px;}}
    .solucao-split{grid-template-areas:"svg head" "svg body";}
    .solucao-split .split-right{grid-area:svg;display:flex;align-items:center;justify-content:center;}
    .solucao-split .solucao-head{grid-area:head;}
    .solucao-split .solucao-body{grid-area:body;}
    @media(max-width:991px){.solucao-split{grid-template-columns:1fr;grid-template-areas:"head" "svg" "body";gap:30px;}.solucao-split .split-right{padding:18px 0;}}
    .split-left{text-align:left;width:100%;}
    .split-right{width:100%;}
    .split-cta-wrap{margin-top:24px;display:flex;gap:12px;flex-wrap:wrap;}
    .resource-list{list-style:none;padding:0;margin:22px 0 0 0;display:flex;flex-direction:column;gap:12px;}
    .resource-list li{display:flex;gap:10px;font-size:14px;color:var(--text-muted);line-height:1.5;align-items:flex-start;}
    .resource-list li::before{content:"\2726";color:#8e64ff;font-weight:700;flex-shrink:0;}
    .faq-split{max-width:1200px;margin:0 auto;padding:0 24px;display:grid;grid-template-columns:0.85fr 1.15fr;gap:55px;align-items:start;}
    @media(max-width:991px){.faq-split{grid-template-columns:1fr;gap:35px;}}
    .conv-svg,.core-svg,.mini-contrast,.faq-illo{width:100%;height:auto;display:block;max-width:520px;margin:0 auto;}

    /* ========== FLOATING BOT (Ýris) ========== */
    .chat-widget-wrapper { transition: opacity 0.4s ease, transform 0.4s ease; }
    .hero-chat-box.minimized { opacity: 0; transform: scale(0.92); pointer-events: none; }
    .floating-bot {
        position: fixed; bottom: 28px; right: 28px; z-index: 900;
        width: 64px; height: 64px; border-radius: 50%;
        cursor: pointer; opacity: 0; visibility: hidden; transform: scale(0.5);
        transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        filter: drop-shadow(0 6px 24px rgba(142, 100, 255, 0.45));
    }
    .floating-bot.visible { opacity: 1; visibility: visible; transform: scale(1); }
    .floating-bot:hover { transform: scale(1.1); }
    .floating-bot img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary); display: block; }
    .floating-bot .floating-pulse { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--primary); animation: floating-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite; }
    @keyframes floating-ping { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.4); opacity: 0; } }
    .floating-bot .floating-dot { position: absolute; bottom: 2px; right: 2px; width: 14px; height: 14px; background: #10b981; border: 2px solid #FFFFFF; border-radius: 50%; }
    @media (max-width: 768px) {
        .floating-bot, .iris-balloon { display: none !important; }
    }
    @media (max-width: 991px) {
        #vem-dentro, #planos .home-section-title, .final-cta-section { text-align: left !important; }
    }

    /* ========== BALÃO DA ÝRIS ========== */
    .iris-balloon {
        position: fixed; bottom: 104px; right: 28px; z-index: 901;
        width: 290px; background: #FFFFFF;
        border: 1px solid #E5E7EB; border-radius: 16px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
        padding: 14px; opacity: 0; visibility: hidden;
        transform: translateY(10px) scale(0.96); transform-origin: bottom right;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        backdrop-filter: blur(8px);
    }
    .iris-balloon.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
    .iris-balloon-header { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; margin-bottom: 10px; border-bottom: 1px solid #E5E7EB; }
    .iris-balloon-header img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--primary); object-fit: cover; }
    .iris-balloon-header strong { display: block; color: #111827; font-size: 14px; font-family: 'Geologica', sans-serif; }
    .iris-balloon-header span { display: block; color: var(--text-muted); font-size: 11.5px; }
    .iris-balloon-opt {
        width: 100%; text-align: left; background: #FFFFFF;
        border: 1px solid #E5E7EB; color: #111827; font-size: 13.5px;
        padding: 11px 14px; border-radius: 10px; margin-bottom: 8px; cursor: pointer;
        display: flex; align-items: center; gap: 10px;
        transition: background 0.2s, transform 0.15s; font-family: var(--font-main);
    }
    .iris-balloon-opt:last-child { margin-bottom: 0; }
    .iris-balloon-opt:hover { background: #F3F4F6; transform: translateX(2px); }




    /* CSS para Fluxo Contínuo e Sem Linhas Divisórias */
    :root {
        --bg-card-glow: rgba(142, 100, 255, 0.04);
        --border-glow: rgba(142, 100, 255, 0.15);
        --accent-red: #ef4444;
        --accent-red-glow: rgba(239, 68, 68, 0.15);
    }

    .home-section, .plans-section, .faq-section {
        padding: 90px 0;
        position: relative;
        overflow: hidden;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    .home-sections-flow {
        background: transparent !important;
        width: 100%;
        position: relative;
        overflow: hidden;
    }
    
    .home-section-title {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 55px auto;
        padding: 0 24px;
    }
    .home-section-title.text-left {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
    .home-badge {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.55);
        border: none;
        background: none;
        padding: 0;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 18px;
    }
    .home-badge::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #FFFBEB;
        box-shadow: none;
        flex-shrink: 0;
    }
    .home-badge.red {
        color: rgba(255,255,255,0.55);
        border: none;
        background: none;
    }
    .home-h2 {
        font-family: 'Geologica', sans-serif;
        font-size: 38px;
        font-weight: 800;
        margin-bottom: 15px;
        line-height: 1.25;
        background: none !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: rgba(255,255,255,0.92) !important;
    }
    .home-h2 span {
        background: none !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: rgba(255,255,255,0.92) !important;
    }
    .home-desc {
        color: var(--text-muted);
        font-size: 16px;
        line-height: 1.6;
    }

    /* Seção 3: O Problema */
    .problem-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        align-items: center;
    }
    @media (max-width: 991px) {
        .problem-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
    }
    .problem-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    .problem-item {
        background: rgba(255, 255, 255, 0.015);
        border: 1px solid #E5E7EB;
        border-radius: 12px;
        padding: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: var(--transition);
    }
    .problem-item:hover {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.08);
        transform: translateY(-2px);
    }
    .problem-item-icon {
        font-size: 20px;
        opacity: 0.8;
    }
    .problem-danger-box {
        background: rgba(239, 68, 68, 0.02);
        border: 1px solid rgba(239, 68, 68, 0.1);
        border-radius: 16px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(239, 68, 68, 0.03);
    }
    .danger-header {
        font-family: 'Geologica', sans-serif;
        font-size: 17px;
        font-weight: 700;
        color: var(--accent-red);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .danger-item {
        display: flex;
        gap: 12px;
        margin-bottom: 16px;
        align-items: flex-start;
    }
    .danger-item:last-child {
        margin-bottom: 0;
    }
    .danger-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--accent-red);
        margin-top: 6px;
        box-shadow: 0 0 8px var(--accent-red);
        flex-shrink: 0;
    }
    .danger-text h4 {
        font-size: 14.5px;
        font-weight: 700;
        color: #111827;
        margin: 0 0 4px 0;
    }
    .danger-text p {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.5;
        margin: 0;
    }

    /* Seção 4: Como Funciona */
    .how-it-works-flow {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        position: relative;
        flex-wrap: wrap;
        gap: 12px;
    }
    @media (max-width: 991px) {
        .how-it-works-flow {
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
    }
    .flow-step {
        background: rgba(255, 255, 255, 0.015);
        border: 1px solid #E5E7EB;
        border-radius: 16px;
        padding: 24px;
        flex: 1;
        min-width: 170px;
        position: relative;
        z-index: 2;
        transition: var(--transition);
        text-align: left;
    }
    .flow-step:hover {
        background: var(--bg-card-glow);
        border-color: var(--border-glow);
        transform: translateY(-4px);
        box-shadow: 0 10px 20px rgba(142, 100, 255, 0.08);
    }
    .flow-step-num {
        font-size: 11px;
        font-weight: 800;
        color: var(--primary-color, #00ffcc);
        margin-bottom: 12px;
        opacity: 0.9;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .flow-step h3 {
        font-family: 'Geologica', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #111827;
        margin: 0 0 8px 0;
    }
    .flow-step p {
        font-size: 12.5px;
        color: var(--text-muted);
        line-height: 1.5;
        margin: 0;
    }
    .flow-arrow {
        font-size: 20px;
        color: rgba(142, 100, 255, 0.25);
        flex-shrink: 0;
        user-select: none;
    }
    @media (max-width: 991px) {
        .flow-arrow {
            transform: rotate(90deg);
        }
    }

    /* Seção 5: O Que Está Incluso */
    .incluso-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }
    .incluso-card {
        background: rgba(255, 255, 255, 0.015);
        border: 1px solid #E5E7EB;
        border-radius: 20px;
        padding: 30px;
        transition: var(--transition);
        text-align: left;
    }
    .incluso-card:hover {
        background: var(--bg-card-glow);
        border-color: var(--border-glow);
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(142, 100, 255, 0.08);
    }
    .incluso-icon {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .incluso-card h3 {
        font-family: 'Geologica', sans-serif;
        font-size: 19px;
        font-weight: 700;
        color: #111827;
        margin: 0 0 15px 0;
    }
    .incluso-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .incluso-list li {
        font-size: 13.5px;
        color: var(--text-muted);
        margin-bottom: 10px;
        display: flex;
        align-items: flex-start;
        gap: 8px;
        line-height: 1.4;
    }
    .incluso-list li::before {
        content: "✓";
        color: var(--primary-color, #00ffcc);
        font-weight: bold;
        flex-shrink: 0;
    }

    /* Seção 6: Por que os leads perdem qualidade */
    .quality-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        align-items: center;
    }
    @media (max-width: 991px) {
        .quality-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
    }
    .quality-factors {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .factor-card {
        background: rgba(255, 255, 255, 0.015);
        border: 1px solid #E5E7EB;
        border-radius: 12px;
        padding: 20px;
        display: flex;
        gap: 15px;
        text-align: left;
    }
    .factor-num {
        font-family: 'Geologica', sans-serif;
        font-size: 18px;
        font-weight: 800;
        color: var(--accent-red);
        flex-shrink: 0;
    }
    .factor-info h4 {
        font-size: 15px;
        font-weight: 700;
        color: #111827;
        margin: 0 0 6px 0;
    }
    .factor-info p {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.5;
        margin: 0;
    }

    /* Seção 7: Painel Showcase */
    .showcase-widget {
        background: #09090d;
        border: 1px solid #E5E7EB;
        border-radius: 20px;
        max-width: 1000px;
        margin: 0 auto;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    }
    .showcase-header {
        background: rgba(255, 255, 255, 0.02);
        border-bottom: 1px solid #E5E7EB;
        padding: 15px 25px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .showcase-dots {
        display: flex;
        gap: 6px;
    }
    .showcase-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }
    .showcase-title {
        font-family: monospace;
        font-size: 12px;
        color: var(--text-muted);
    }
    .showcase-body {
        padding: 25px;
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 25px;
        min-height: 380px;
    }
    @media (max-width: 768px) {
        .showcase-body {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }
    .showcase-sidebar {
        border-right: 1px solid rgba(255, 255, 255, 0.05);
        padding-right: 20px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    @media (max-width: 768px) {
        .showcase-sidebar {
            border-right: none;
            padding-right: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding-bottom: 15px;
            flex-direction: row;
            overflow-x: auto;
        }
    }
    .showcase-menu-btn {
        background: none;
        border: 1px solid transparent;
        color: var(--text-muted);
        font-size: 13.5px;
        padding: 10px 15px;
        border-radius: 8px;
        text-align: left;
        cursor: pointer;
        transition: var(--transition);
        font-weight: 500;
        outline: none;
    }
    @media (max-width: 768px) {
        .showcase-menu-btn {
            white-space: nowrap;
        }
    }
    .showcase-menu-btn.active {
        background: rgba(142, 100, 255, 0.08);
        color: #111827;
        border-color: rgba(142, 100, 255, 0.2);
    }
    .showcase-tab-content {
        display: none;
        text-align: left;
    }
    .showcase-tab-content.active {
        display: block;
    }

    /* Seção 8: Jornada Completa */
    .jornada-container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 24px;
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 20px;
        position: relative;
    }
    @media (max-width: 992px) {
        .jornada-container {
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }
    }
    @media (max-width: 576px) {
        .jornada-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
    }
    .jornada-step {
        background: rgba(255, 255, 255, 0.015);
        border: 1px solid #E5E7EB;
        border-radius: 12px;
        padding: 20px 10px;
        text-align: center;
        transition: var(--transition);
        position: relative;
        box-sizing: border-box;
        width: 100%;
    }
    .jornada-step:hover {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(142, 100, 255, 0.3);
        transform: translateY(-2px);
    }
    @media (min-width: 993px) {
        .jornada-step:not(:last-child)::after {
            content: "➔";
            position: absolute;
            right: -18px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.15);
            font-size: 16px;
        }
    }
    .jornada-step-icon {
        font-size: 26px;
        margin-bottom: 8px;
        display: block;
    }
    .jornada-step h4 {
        font-size: 12.5px;
        color: #111827;
        margin: 0;
        font-weight: 700;
        line-height: 1.3;
    }
 
    /* Seção 9: Comparativo */
    .comp-table-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 24px;
        overflow-x: auto;
    }
    .comp-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        background: rgba(255, 255, 255, 0.01);
        border: 1px solid #E5E7EB;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    .comp-table th {
        padding: 22px 20px;
        font-family: 'Geologica', sans-serif;
        font-size: 15px;
        font-weight: 700;
        color: #111827;
        border-bottom: 1px solid #E5E7EB;
        background: rgba(255, 255, 255, 0.02);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .comp-table td {
        padding: 20px;
        font-size: 14.5px;
        color: var(--text-muted);
        border-bottom: 1px solid #E5E7EB;
        text-align: center;
        transition: background 0.2s;
        line-height: 1.5;
        vertical-align: middle;
    }
    .comp-table td:first-child {
        text-align: left;
        width: 26%;
        font-weight: 600;
    }
    .comp-table td:not(:first-child) {
        width: 24.6%;
        padding: 20px 16px;
        word-break: normal;
        hyphens: none;
    }
    .comp-table th {
        text-align: center;
    }
    .comp-table th:first-child {
        text-align: left;
    }
    .comp-table tr:hover td {
        background: rgba(255, 255, 255, 0.01);
    }
    .comp-table tr:last-child td {
        border-bottom: none;
    }
    .comp-col-desc {
        font-weight: 600;
        color: #111827;
    }
    .comp-col-bad {
        background: rgba(239, 68, 68, 0.015);
        color: #fca5a5 !important;
    }
    .comp-col-good {
        background: rgba(142, 100, 255, 0.03);
        color: #c7d2fe !important;
        font-weight: 600;
        border-left: 1px solid rgba(142, 100, 255, 0.1);
        border-right: 1px solid rgba(142, 100, 255, 0.1);
    }
    @media (max-width: 768px) {
        .comp-table-container { padding: 0 12px; overflow-x: hidden; }
        .comp-table { table-layout: fixed; width: 100%; }
        .comp-table thead th,
        .comp-table th,
        .comp-table td {
            padding: 9px 4px;
            font-size: 9px;
            line-height: 1.25;
            word-break: break-word;
            overflow-wrap: anywhere;
            white-space: normal;
        }
        .comp-table th {
            text-transform: none;
            letter-spacing: 0;
        }
        .comp-table td:first-child { font-size: 9px; }
    }

    /* Seção 10: Benefícios por Perfil */
    .profile-tabs-nav {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }
    .profile-tab-btn {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 30px;
        padding: 12px 24px;
        color: var(--text-muted);
        font-weight: 700;
        cursor: pointer;
        transition: var(--transition);
        font-size: 14px;
        outline: none;
    }
    .profile-tab-btn.active {
        background: #8e64ff;
        color: #111827;
        border-color: #8e64ff;
        box-shadow: 0 0 15px rgba(142, 100, 255, 0.25);
    }
    .profile-tab-pane {
        display: none;
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 24px;
        box-sizing: border-box;
    }
    .profile-tab-pane.active {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 25px !important;
    }
    @media (max-width: 768px) {
        .profile-tab-pane.active {
            grid-template-columns: 1fr !important;
        }
    }
    .profile-benefit-card {
        background: rgba(255, 255, 255, 0.015);
        border: 1px solid #E5E7EB;
        border-radius: 16px;
        padding: 24px;
        text-align: left;
    }
    .profile-benefit-card h4 {
        font-family: 'Geologica', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #111827;
        margin: 0 0 10px 0;
    }
    .profile-benefit-card p {
        font-size: 13.5px;
        color: var(--text-muted);
        line-height: 1.5;
        margin: 0;
    }

    /* Seção 11: Assinaturas */
    .pricing-info-badge {
        font-family: 'Geologica', sans-serif;
        color: #c7d2fe;
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 20px;
        display: inline-block;
        background: rgba(142, 100, 255, 0.08);
        border: 1px solid rgba(142, 100, 255, 0.2);
        padding: 8px 20px;
        border-radius: 30px;
        line-height: 1.4;
    }
    
/* Honeypot anti-spam + Turnstile (modal de checkout compartilhado) */
.checkout-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.cf-turnstile {
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
}

/* Tour 45s: telas de abertura e encerramento */
#pres-cover-intro, #pres-cover-outro {
    --primary-color: #8e64ff;
    background: linear-gradient(180deg, rgba(142,100,255,0.07) 0%, rgba(13,15,30,0) 42%), #0d0d12 !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 16px !important;
    box-shadow: 0 24px 60px rgba(0,0,0,0.55) !important;
    position: relative;
    overflow: hidden;
}
#pres-cover-intro::before, #pres-cover-outro::before {
    content: "";
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 2px; border-radius: 2px;
    background: linear-gradient(90deg, transparent, rgba(142,100,255,0.7), transparent);
}
#pres-cover-intro > span, #pres-cover-outro > span {
    font-family: 'IBM Plex Mono', monospace !important;
    font-size: 10.5px !important;
    letter-spacing: 2px !important;
    color: #a5b4fc !important;
    border-color: rgba(142,100,255,0.4) !important;
    background: rgba(142,100,255,0.08) !important;
    border-radius: 20px !important;
}
#pres-cover-intro h4, #pres-cover-outro h4 {
    font-family: 'Geologica', sans-serif !important;
    font-size: 24px !important;
    letter-spacing: -0.5px !important;
}
#pres-cover-intro .pres-cover-chip {
    border-color: rgba(142,100,255,0.28) !important;
    background: rgba(142,100,255,0.07) !important;
}
/* BG chapado: sem grain, sem overlays empilhados */
body::before, body::after{ display:none !important; }

