        /* --- Reset & Variáveis --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --bg-main: #0a0a0f;
            --bg-card: rgba(18, 18, 26, 0.65);
            --bg-input: #12121a;
            --primary: #6366f1;
            --primary-hover: #4f46e5;
            --primary-glow: rgba(99, 102, 241, 0.35);
            --accent: #8b5cf6;
            --text-main: #f1f5f9;
            --text-muted: #94a3b8;
            --border: rgba(255, 255, 255, 0.08);
            --border-glow: rgba(99, 102, 241, 0.2);
            --border-radius: 20px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-main);
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 45%),
                radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
            background-size: 100% 100%;
            color: var(--text-main);
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            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: #6366f1;
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(99, 102, 241, 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; }
        }

        /* --- Pill Navbar Estilizada (Compacta) --- */
        header.pill-nav {
            position: fixed;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            width: auto;
            background: rgba(10, 10, 15, 0.75);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 100px;
            padding: 10px 24px;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), top 0.4s ease, background-color 0.3s ease;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 28px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        header.pill-nav.nav-hidden {
            transform: translate(-50%, -100px);
        }
        header.pill-nav.nav-scrolled {
            background: rgba(10, 10, 15, 0.9);
            border-color: rgba(99, 102, 241, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
        }
        .logo-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-logo {
            height: 22px;
            max-width: 130px;
            object-fit: contain;
        }
        .brand-name {
            font-family: 'Outfit', sans-serif;
            font-size: 14.5px;
            font-weight: 700;
            color: white;
            white-space: nowrap;
        }
        .nav-menu {
            display: flex;
            gap: 16px;
            list-style: none;
        }
        .nav-menu a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 12.5px;
            font-weight: 500;
            transition: var(--transition);
        }
        .nav-menu a:hover, .nav-menu a.active {
            color: white;
        }
        .nav-actions {
            display: flex;
            align-items: center;
        }
        .nav-actions .btn-login {
            color: white;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 50px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
            border: none;
        }
        .nav-actions .btn-login:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 20px rgba(99, 102, 241, 0.45);
            filter: brightness(1.1);
        }
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            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.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            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: #06060a;
            border-right: 1px solid rgba(255, 255, 255, 0.05);
            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: 20px 0 50px rgba(0, 0, 0, 0.8);
        }
        .mobile-drawer.active {
            transform: translateX(0);
        }
        .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: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: white;
            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: rgba(255, 255, 255, 0.08);
        }
        .drawer-slogan {
            font-size: 12px;
            color: var(--text-muted);
            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: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 14px 18px;
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #f8fafc;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .drawer-card-item:hover, .drawer-card-item.active {
            background: rgba(99, 102, 241, 0.08);
            border-color: rgba(99, 102, 241, 0.3);
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
        }
        .drawer-icon {
            font-size: 18px;
            margin-right: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s;
        }
        .drawer-card-item:hover .drawer-icon, .drawer-card-item.active .drawer-icon {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
            box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
        }
        .drawer-title {
            font-family: 'Outfit', sans-serif;
            font-size: 14.5px;
            font-weight: 700;
            flex-grow: 1;
        }
        .drawer-arrow {
            font-size: 12px;
            color: var(--text-muted);
            transition: transform 0.3s;
        }
        .drawer-card-item:hover .drawer-arrow {
            transform: translateX(4px);
            color: white;
        }
        .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: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            padding: 14px;
            border-radius: 16px;
            text-decoration: none;
            font-size: 14px;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
            transition: all 0.3s;
        }
        .drawer-btn:hover {
            transform: translateY(-2px);
            filter: brightness(1.1);
        }
        .drawer-contact-info {
            background: rgba(255, 255, 255, 0.01);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 16px;
        }
        .drawer-contact-info h4 {
            font-size: 11px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
            font-weight: 700;
        }
        .drawer-contact-info a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-muted);
            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: white;
        }
        .drawer-whatsapp-link {
            color: #34d399 !important;
            font-weight: 600;
        }

        /* Responsive Navbar */
        @media (max-width: 768px) {
            .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 (Altura 60-70% e Grid Exclusivo) --- */
        .hero {
            height: auto;
            min-height: 65vh;
            max-height: 850px;
            display: flex;
            align-items: center;
            padding: 110px 0 80px 0;
            position: relative;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
            background-size: 40px 40px;
            background-position: center top;
            overflow: hidden;
        }
        .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;
            }
            .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, #0a0a0f);
            pointer-events: none;
            z-index: 3;
        }

        .badge-container {
            display: flex;
            gap: 10px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }
        .promo-badge {
            background: rgba(99, 102, 241, 0.08);
            border: 1px solid rgba(99, 102, 241, 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: 'Outfit', 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: rgba(99, 102, 241, 0.15);
            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(99, 102, 241, 0.3);
            transition: var(--transition);
        }
        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 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: 'Outfit', 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, #0a0a0f, 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, #0a0a0f, 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: 'Outfit', 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;
        }
        .marquee-item {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
            background: rgba(18, 18, 26, 0.75);
            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(99, 102, 241, 0.3);
            background: rgba(22, 22, 33, 0.9);
            transform: translateY(-4px);
        }
        .marquee-item-header {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .marquee-icon {
            font-size: 20px;
            background: rgba(99, 102, 241, 0.1);
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .marquee-item-title {
            font-family: 'Outfit', sans-serif;
            font-size: 15.5px;
            font-weight: 700;
            color: white;
        }
        .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: var(--bg-main);
            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: rgba(17, 24, 39, 0.45);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--border-radius);
            padding: 35px 30px;
            position: relative;
            transition: all 0.3s ease;
            overflow: hidden;
        }
        .diagnostic-card:hover {
            border-color: rgba(239, 68, 68, 0.25);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(239, 68, 68, 0.06);
        }
        .diagnostic-card::before {
            content: "";
            position: absolute;
            top: 0; left: 0; width: 100%; height: 2px;
            background: linear-gradient(90deg, #ef4444, #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: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(249, 115, 22, 0.05) 100%);
            border: 1px solid rgba(239, 68, 68, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 22px;
            color: #f87171;
        }
        .diagnostic-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
        }
        .diagnostic-card p {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* --- Seção: Fluxo e Auditoria CAPI --- */
        /* --- Seção: O Ecossistema (Layout Z Alternado) --- */
        .ecosystem-section {
            padding: 100px 0;
            background: var(--bg-main);
            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: 'Outfit', sans-serif;
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 18px;
            line-height: 1.3;
        }
        .block-text p {
            font-size: 15.5px;
            color: var(--text-muted);
            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: var(--bg-main);
            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: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 12px;
            padding: 20px;
            text-align: left;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--text-muted);
            outline: none;
        }
        @media (max-width: 991px) {
            .dashboard-tab-btn {
                min-width: 250px;
                flex-shrink: 0;
            }
        }
        .dashboard-tab-btn.active {
            background: rgba(99, 102, 241, 0.08);
            border-color: rgba(99, 102, 241, 0.3);
            color: #fff;
            box-shadow: 0 4px 20px rgba(99, 102, 241, 0.05);
        }
        .dashboard-tab-btn h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 6px;
            color: inherit;
        }
        .dashboard-tab-btn p {
            font-size: 12.5px;
            color: var(--text-muted);
            line-height: 1.4;
        }
        .dashboard-tab-btn.active h4 {
            color: var(--primary-color, #00ffcc);
        }
        .dashboard-content-panel {
            background: rgba(15, 15, 24, 0.75);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            padding: 30px;
            min-height: 420px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            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: var(--bg-main);
        }
        .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: 'Outfit', sans-serif;
            font-size: 38px;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff 40%, #c7d2fe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 12px;
        }
        .section-title p {
            color: var(--text-muted);
            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: rgba(17, 24, 39, 0.55);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border);
            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 */
        }
        .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(255,255,255,0.06), rgba(255,255,255,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: rgba(99, 102, 241, 0.35);
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
            background: rgba(17, 24, 39, 0.7);
        }
        .plan-card.featured {
            background: rgba(99, 102, 241, 0.04);
            border-color: rgba(99, 102, 241, 0.3);
        }
        .plan-card.featured:hover {
            background: rgba(99, 102, 241, 0.08);
            border-color: rgba(99, 102, 241, 0.55);
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.22);
        }
        .plan-badge {
            position: absolute;
            top: 24px;
            right: 24px;
            background: var(--primary);
            color: white;
            font-size: 11px;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: 700;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
        }
        .plans-features-box {
            max-width: 800px;
            margin: 0 auto 35px auto;
            padding: 25px 30px;
            background: rgba(99, 102, 241, 0.03);
            border: 1px solid rgba(99, 102, 241, 0.15);
            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: 'Outfit', sans-serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
            color: white;
        }
        .plan-desc {
            color: var(--text-muted);
            font-size: 14.5px;
            margin-bottom: 25px;
            min-height: 48px;
            line-height: 1.5;
        }
        .plan-price {
            font-family: 'Outfit', sans-serif;
            font-size: 38px;
            font-weight: 800;
            color: white;
            margin-bottom: 25px;
        }
        .plan-price span {
            font-size: 15px;
            color: var(--text-muted);
            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: var(--bg-main);
            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: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: left;
        }
        .testimonial-text {
            font-size: 14px;
            color: var(--text-muted);
            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: #1f2937;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
            font-size: 14px;
        }
        .user-info h4 {
            font-size: 14.5px;
            color: white;
            margin-bottom: 2px;
        }
        .user-info span {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* --- Separador do Rodapé --- */
        .footer-separator {
            display: none;
        }

        /* --- Footer --- */
        footer {
            background: var(--bg-main);
            padding: 60px 0 40px 0;
            position: relative;
            overflow: hidden;
        }
        .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: 'Outfit', sans-serif;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
            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: var(--primary);
        }

        /* --- Seção de Autoria --- */
        .copyright-section {
            background: #020204;
            padding: 24px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.02);
            text-align: center;
        }
        .copyright-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .copyright-container p {
            color: var(--text-muted);
            font-size: 12px;
            letter-spacing: 0.3px;
        }

        /* --- Chatbot Widget Estilizado (Unixcode Style) --- */
        .chat-widget {
            background: rgba(15, 15, 24, 0.7);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            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.5);
            margin: 0 auto;
            text-align: left;
            position: relative;
        }
        .chat-header {
            background: rgba(20, 20, 35, 0.6);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 14px;
            color: white;
            position: relative;
            z-index: 2;
        }
        .agent-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--primary);
            box-shadow: 0 0 12px rgba(99, 102, 241, 0.4);
        }
        .agent-info {
            display: flex;
            flex-direction: column;
        }
        .agent-name {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 15px;
            letter-spacing: -0.2px;
        }
        .agent-role {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 500;
        }
        .online-indicator {
            width: 10px;
            height: 10px;
            background: #10b981;
            border-radius: 50%;
            border: 2px solid rgba(20, 20, 35, 0.6);
            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: rgba(10, 10, 15, 0.4);
            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: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            color: #f1f5f9;
            border-top-left-radius: 4px;
        }
        .user-msg {
            align-self: flex-end;
        }
        .user-msg .message-text {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-top-right-radius: 4px;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
        }
        .typing-indicator {
            align-self: flex-start;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            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: #94a3b8;
            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: rgba(15, 15, 24, 0.95);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            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: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: white;
            font-size: 13.5px;
            outline: none;
            transition: all 0.3s;
        }
        .chat-input::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }
        .chat-input:focus {
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 0 10px rgba(99, 102, 241, 0.15);
        }
        .send-btn {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            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(99, 102, 241, 0.25);
        }
        .send-btn:hover {
            transform: translateY(-1px);
            filter: brightness(1.1);
            box-shadow: 0 4px 18px rgba(99, 102, 241, 0.4);
        }
        
        .options-container {
            display: flex;
            flex-direction: column;
            gap: 8px;
            width: 100%;
        }
        .option-btn {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #f1f5f9;
            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: rgba(99, 102, 241, 0.15);
            border-color: rgba(99, 102, 241, 0.4);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
        }

        /* --- Styles do Checkout Modal (Etapa 10) --- */
        /* --- Styles do Checkout Modal (Etapa 10 - Lateral Drawer) --- */
        .checkout-modal {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(10, 10, 15, 0.65);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: none;
            justify-content: flex-end; /* Drawer à direita */
            align-items: stretch;
            z-index: 10000;
            padding: 0;
        }
        .checkout-modal-content {
            background: #0c0c14;
            border-left: 1px solid rgba(255, 255, 255, 0.08);
            border-top: none;
            border-radius: 24px 0 0 24px;
            width: 100%;
            max-width: 480px;
            padding: 40px 30px;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
            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: 30px 20px;
            }
        }
        @keyframes slideInRight {
            from { transform: translateX(100%); }
            to { transform: translateX(0); }
        }
        .checkout-close {
            position: absolute;
            top: 20px;
            right: 24px;
            background: transparent;
            border: none;
            color: var(--text-muted);
            font-size: 24px;
            cursor: pointer;
            transition: var(--transition);
        }
        .checkout-close:hover {
            color: white;
            transform: scale(1.1);
        }
        .checkout-header {
            text-align: center;
            margin-bottom: 30px;
        }
        .checkout-header h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff 40%, #c7d2fe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 6px;
        }
        .checkout-header p {
            color: var(--text-muted);
            font-size: 13px;
        }
        .checkout-step {
            display: none;
        }
        .checkout-step.active {
            display: block;
        }
        .checkout-plan-summary {
            background: rgba(99, 102, 241, 0.04);
            border: 1px solid rgba(99, 102, 241, 0.15);
            border-radius: 12px;
            padding: 16px 20px;
            margin-bottom: 24px;
            text-align: left;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }
        .checkout-plan-title {
            font-family: 'Outfit', sans-serif;
            font-size: 15.5px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 4px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .checkout-plan-cycle {
            font-size: 11px;
            color: var(--text-muted);
            margin-bottom: 12px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding-bottom: 8px;
        }
        .checkout-price-value {
            font-family: 'Outfit', sans-serif;
            font-size: 20px;
            font-weight: 800;
            color: var(--accent);
        }
        .checkout-plan-installments {
            font-size: 11.5px;
            color: #cbd5e1;
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .checkout-gateway-badge {
            font-size: 10.5px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
            border-top: 1px solid rgba(255,255,255,0.03);
            padding-top: 8px;
            margin-top: 6px;
        }
        .checkout-form-group {
            margin-bottom: 18px;
            text-align: left;
        }
        .checkout-form-group label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .checkout-form-control {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            background: #12121a;
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: white;
            font-size: 14px;
            outline: none;
            transition: var(--transition);
        }
        .checkout-form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
        }
        .checkout-error {
            color: #ef4444;
            background: rgba(239, 68, 68, 0.08);
            border: 1px solid rgba(239, 68, 68, 0.15);
            border-radius: 10px;
            padding: 10px 15px;
            font-size: 13px;
            margin-bottom: 20px;
            text-align: left;
            display: none;
        }
        .checkout-btn {
            width: 100%;
            padding: 14px;
            border-radius: 12px;
            border: none;
            background: linear-gradient(135deg, var(--primary), #4f46e5);
            color: white;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 15px var(--primary-glow);
        }
        .checkout-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px var(--primary-glow);
            background: linear-gradient(135deg, #4f46e5, #3730a3);
        }
        .checkout-back-link {
            display: inline-block;
            margin-top: 15px;
            color: var(--text-muted);
            font-size: 12px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }
        .checkout-back-link:hover {
            color: white;
        }
        .plan-btn {
            transition: all 0.3s ease;
        }
        .plan-btn:hover {
            transform: translateY(-2px);
            background: white !important;
            color: black !important;
        }
        .featured .plan-btn:hover {
            background: #4f46e5 !important;
            color: white !important;
            box-shadow: 0 6px 15px rgba(99, 102, 241, 0.45);
        }
        .spinner {
            display: inline-block;
            width: 18px;
            height: 18px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            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);
        }
        .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: rgba(255,255,255,0.12) !important;
        }
        .pres-control-btn.end-btn:hover {
            background: #ff3b30 !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: var(--primary-color, #00ffcc);
            color: #000;
            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, 255, 204, 0.15);
        }
        .pres-chat-bot-message {
            align-self: flex-start;
            background: rgba(255,255,255,0.05);
            color: #fff;
            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: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            color: #fff;
            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: rgba(0, 255, 204, 0.08);
            border-color: var(--primary-color, #00ffcc);
        }
        .pres-text-input {
            flex: 1;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            color: #fff;
            padding: 12px;
            border-radius: 6px;
            font-size: 13px;
            outline: none;
            transition: border-color 0.2s;
        }
        .pres-text-input:focus {
            border-color: var(--primary-color, #00ffcc);
        }
        .pres-send-btn {
            background: var(--primary-color, #00ffcc);
            color: #000;
            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: #00ddb0;
        }
        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.05); opacity: 1; }
            100% { transform: scale(1); opacity: 0.8; }
        }

        /* --- Classes Responsivas da Modal de Apresentação --- */
        .pres-modal-left {
            width: 65%;
            height: 100%;
            display: flex;
            flex-direction: column;
            background: #07070a;
            border-right: 1px solid rgba(255,255,255,0.08);
            position: relative;
            box-sizing: border-box;
            transition: width 0.4s ease;
        }
        .pres-modal-right {
            width: 35%;
            height: 100%;
            display: flex;
            flex-direction: column;
            background: #0c0c10;
            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:#6366f1;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(99, 102, 241, 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: #39ff14; border: 2px solid #0a0a0f; 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: rgba(18, 18, 26, 0.97);
        border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        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 rgba(255, 255, 255, 0.08); }
    .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: #fff; font-size: 14px; font-family: 'Outfit', 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: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06); color: #fff; 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: 'Inter', sans-serif;
    }
    .iris-balloon-opt:last-child { margin-bottom: 0; }
    .iris-balloon-opt:hover { background: rgba(99, 102, 241, 0.15); transform: translateX(2px); }

    /* CSS para Fluxo Contínuo e Sem Linhas Divisórias */
    :root {
        --bg-card-glow: rgba(99, 102, 241, 0.04);
        --border-glow: rgba(99, 102, 241, 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-color: #0a0a0f !important; /* Mesma cor base da seção Hero (--bg-main) */
        background-image: 
            /* Máscara superior: esconde grid/orbs na borda p/ transição suave vinda do marquee */
            linear-gradient(to bottom, #0a0a0f 0%, transparent 90px),
            /* Orbes radiais iguais aos do body/Hero */
            radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 45%),
            radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
            /* Grid quadriculado sutil (igual ao da Hero: 40px) */
            linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px) !important;
        background-repeat: no-repeat, no-repeat, no-repeat, repeat, repeat !important;
        background-size: 100% 100%, 100% 100%, 100% 100%, 40px 40px, 40px 40px !important;
        width: 100%;
        position: relative;
        overflow: hidden;
    }
    
    /* Orbes Luminosos Animados no Fundo */
    .glowing-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(130px);
        pointer-events: none;
        z-index: 0;
        opacity: 0.28;
        mix-blend-mode: screen;
        animation: pulseOrb 9s infinite ease-in-out alternate;
    }
    @keyframes pulseOrb {
        0% {
            transform: scale(0.92) translate(0px, 0px);
            opacity: 0.22;
        }
        50% {
            opacity: 0.38;
        }
        100% {
            transform: scale(1.08) translate(15px, -20px);
            opacity: 0.22;
        }
    }
    .orb-1 {
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(139, 92, 246, 0.45) 0%, transparent 80%);
        top: 200px;
        right: -150px;
        animation-delay: 0s;
    }
    .orb-2 {
        width: 580px;
        height: 580px;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.38) 0%, transparent 80%);
        top: 1100px;
        left: -180px;
        animation-delay: 2s;
    }
    .orb-3 {
        width: 580px;
        height: 580px;
        background: radial-gradient(circle, rgba(139, 92, 246, 0.38) 0%, transparent 80%);
        top: 2100px;
        right: -180px;
        animation-delay: 4s;
    }
    .orb-4 {
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.38) 0%, transparent 80%);
        top: 3100px;
        left: -120px;
        animation-delay: 1s;
    }
    .orb-5 {
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(139, 92, 246, 0.42) 0%, transparent 80%);
        top: 4000px;
        right: -200px;
        animation-delay: 3s;
    }
    .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-size: 11px;
        font-weight: 700;
        color: #a5b4fc;
        border: 1px solid rgba(99, 102, 241, 0.3);
        background: rgba(99, 102, 241, 0.06);
        padding: 4px 12px;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        display: inline-block;
        margin-bottom: 15px;
    }
    .home-badge.red {
        color: var(--accent-red);
        border-color: rgba(239, 68, 68, 0.3);
        background: rgba(239, 68, 68, 0.06);
    }
    .home-h2 {
        font-family: 'Outfit', sans-serif;
        font-size: 38px;
        font-weight: 800;
        margin-bottom: 15px;
        line-height: 1.25;
        background: linear-gradient(135deg, #ffffff 40%, #c7d2fe 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
    }
    .home-h2 span {
        background: linear-gradient(135deg, #ffffff 40%, #c7d2fe 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !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 rgba(255, 255, 255, 0.04);
        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: 'Outfit', 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: #fff;
        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 rgba(255, 255, 255, 0.04);
        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(99, 102, 241, 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: 'Outfit', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        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(99, 102, 241, 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 rgba(255, 255, 255, 0.04);
        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(99, 102, 241, 0.08);
    }
    .incluso-icon {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .incluso-card h3 {
        font-family: 'Outfit', sans-serif;
        font-size: 19px;
        font-weight: 700;
        color: #fff;
        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 rgba(255, 255, 255, 0.04);
        border-radius: 12px;
        padding: 20px;
        display: flex;
        gap: 15px;
        text-align: left;
    }
    .factor-num {
        font-family: 'Outfit', 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: #fff;
        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 rgba(255, 255, 255, 0.06);
        border-radius: 20px;
        max-width: 1000px;
        margin: 0 auto;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    }
    .showcase-header {
        background: rgba(255, 255, 255, 0.02);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        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(99, 102, 241, 0.08);
        color: #fff;
        border-color: rgba(99, 102, 241, 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 rgba(255, 255, 255, 0.04);
        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(99, 102, 241, 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: #fff;
        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 rgba(255, 255, 255, 0.06);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    .comp-table th {
        padding: 22px 20px;
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        font-weight: 700;
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        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 rgba(255, 255, 255, 0.04);
        text-align: center;
        transition: background 0.2s;
    }
    .comp-table td: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: #fff;
    }
    .comp-col-bad {
        background: rgba(239, 68, 68, 0.015);
        color: #fca5a5 !important;
    }
    .comp-col-good {
        background: rgba(99, 102, 241, 0.03);
        color: #c7d2fe !important;
        font-weight: 600;
        border-left: 1px solid rgba(99, 102, 241, 0.1);
        border-right: 1px solid rgba(99, 102, 241, 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: #6366f1;
        color: #fff;
        border-color: #6366f1;
        box-shadow: 0 0 15px rgba(99, 102, 241, 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 rgba(255, 255, 255, 0.04);
        border-radius: 16px;
        padding: 24px;
        text-align: left;
    }
    .profile-benefit-card h4 {
        font-family: 'Outfit', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        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: 'Outfit', sans-serif;
        color: #c7d2fe;
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 20px;
        display: inline-block;
        background: rgba(99, 102, 241, 0.08);
        border: 1px solid rgba(99, 102, 241, 0.2);
        padding: 8px 20px;
        border-radius: 30px;
        line-height: 1.4;
    }
