@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&display=swap&family=Mozilla+Text:wght@200..700&family=Saira:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap&family=Inter:wght@300;500;700&display=swap');
/* ===== CSS Variables - OmniView Identity ===== */
 :root {
    /* Colors - OmniView Neon Palette */
    /* === Cores Primárias === */
     --primary-blue: #6a9aff;
     --neon-cyan: #00e5ff;
     --neon-purple: #7b2fff;
     --neon-pink: #d400ff;
     --neon-magenta: #b300ff;
     --neon-green: #19c969;
     --polenta: #ddbb50;
    /* === Gradientes Principais === */
     --gradient-blue: linear-gradient(135deg, #001040, #001f80);
     --gradient-purple: linear-gradient(180deg, #200f60, #001040);
     --gradient-gold: linear-gradient(135deg, #ddaa60, var(--polenta));
     --gradient-card: linear-gradient(145deg, #020617, #0a1f5a 60%, #0e3aff);
    /* === Cores Neutras e de Fundo === */
     --dark-bg: #020609;
     --mid-bg: #081038;
     --light-bg: #0d0d0e;
     --card-bg: #0b1635;
     --border-color: #1b2a64;
    /* === Tipografia === */
     --text-light: #b5c9ff;
     --text-dark: #020617;
     --text-muted: #7b8baf;
    /* === Acentos e Feedback === */
     --success: #00ff99;
     --warning: #ffd500;
     --error: #aa0022;
    /* === Sombras e Efeitos === */
     --shadow-glow-blue: 0 0 20px rgba(0, 153, 255, 0.4);
     --shadow-glow-cyan: 0 0 20px rgba(0, 253, 255, 0.4);
     --shadow-glow-purple: 0 0 20px rgba(155, 50, 255, 0.4);
     --shadow-glow-gold: 50 50 20px rgba(240, 240, 85, 0.4);
     --shadow-glow-green: 50 50 20px rgba(85, 240, 85, 0.4);
     --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.5);
     --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.6);
     --shadow-xl: 0 6px 12px rgba(0, 0, 0, 0.9);
    /* Spacing */
     --spacing-xs: 8px;
     --spacing-sm: 16px;
     --spacing-md: 24px;
     --spacing-lg: 48px;
     --spacing-xl: 100px;
    /* Border Radius */
     --radius-sm: 2px;
     --radius-md: 2px;
     --radius-lg: 2px;
    /* Shadows */
     --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
     --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
     --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
     --font-title: 'Oxanium', serif;
     --font-text: 'Space Grotesk', sans-serif;
}
/* ===== Global Styles ===== */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}
 html {
     scroll-behavior: smooth;
}
 body {
     color: var(--text-light);
     background-color: var(--light-bg);
     line-height: 1.6;
     margin: 0;
     font-family: var(--font-title);
}
 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 var(--spacing-md);
}
 .container-title, .container-subtitle {
     margin-bottom: 50px;
     color: white !important;
}
 .learn {
     background: linear-gradient(150deg, var(--dark-bg), var(--card-bg));
}
 .container-megatitle {
     font-size: 4em;
}
 .container-title {
     font-size: 5em;
}
 .container-subtitle {
     font-size: 3em;
}
/* ===== Header ===== */
 .header {
     background: rgba(0, 0, 0, 0.9);
     position: sticky;
     top: 0;
     z-index: 100;
     box-shadow: var(--shadow-sm);
}
 .header-content {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: var(--spacing-sm) 0;
}
 .logo-icon {
     font-size: 32px;
}
 .logo-brand, .logo-product {
     max-height: 50px;
}
 .logo-product-container {
     position: absolute;
     left: 50%;
     top: 50%;
     transform: translate(-50%, -50%);
     z-index: 10;
     flex-shrink: 0;
}
 .lang-selector {
     margin-left: auto;
     margin-right: 50px;
     display: flex;
     gap: 10px;
     z-index: 5;
}
.lang-globe {
    display: none !important;
}
.flags-dropdown {
    display: flex;
    gap: 10px;
}
 .logo {
     display: flex;
     align-items: center;
     gap: var(--spacing-sm);
     font-size: 24px;
     font-weight: 800;
     color: var(--text-light);
     max-width: 160px;
}
 .nav {
     display: flex;
     gap: var(--spacing-lg);
    /*align-items: center;
    */
     align-items: top;
     position: static;
     max-height: none;
     padding: 0;
     transition: none;
}
 .nav a {
     text-decoration: none;
     color: var(--text-light);
     font-weight: 500;
     transition: color 0.3s ease;
     border-bottom: 2px solid transparent;
     padding-bottom: 4px;
}
 .nav a:hover {
     color: var(--primary-blue);
     border-bottom-color: var(--primary-blue);
}
 .menu-toggle {
     display: none;
     padding: 5% 3%;
     margin-right: 0;
     background-color: black;
     font-size: 1.5rem;
     border: none;
}
/* Estilos básicos para os logos */
 .logo-product-container img, .logo-brand-container img {
     max-height: 50px;
}
/* Remove a largura forçada para que os logos fiquem nos cantos */
 .logo-product-container, .logo-brand-container {
     flex-shrink: 0;
    /* Impede que os logos encolham */
}
/* ===== Buttons ===== */
 .btn {
     padding: 12px 24px;
     border: none;
     border-radius: var(--radius-md);
     font-size: 14px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
     text-align: center;
     font-family: var(--font-title);
}
 .btn-center {
     background: linear-gradient(150deg, var(--neon-cyan), var(--neon-purple));
     border: 1px solid var(--neon-cyan);
     box-shadow: 0 0 15px var(--neon-purple);
     color: white !important;
}
 .btn-center:hover {
     background: var(--gradient-card);
     color: linear-gradient(150deg, var(--neon-cyan), var(--neon-purple));
     border: 1px solid var(--neon-cyan);
     transform: translateY(-1px);
}
 .btn-primary {
     background: linear-gradient(135deg, var(--primary-blue), var(--neon-magenta));
     color: white;
     border: 1px solid var(--primary-blue);
}
 .btn-primary:hover {
     transform: translateY(-1px);
     box-shadow: rgba(0, 102, 255, 0.4);
}
 .btn-secondary {
     background: linear-gradient(135deg, var(--primary-blue), var(--neon-green));
     color: white;
     border: 1px solid var(--neon-green);
     box-shadow: 0 0 15px var(--neon-cyan);
}
 .btn-secondary:hover {
     background: var(--neon-green);
     transform: translateY(-2px);
}
 .btn-map {
     margin: 1% 0 2% 0;
     min-width: 25%;
     font-size: 19px;
     background: linear-gradient(135deg, var(--error));
     box-shadow: 0 0 15px var(--neon-purple);
}
 .btn-map:hover {
     background: var(--gradient-card);
     box-shadow: 0 0 15px var(--neon-purple);
}
 .map-subtitle {
     border-radius: var(--radius-sm);
     padding: 5%;
}
 .map-subtitle p {
     font-size: 1.5rem;
     margin-top: 2%;
}
 .map-subtitle .btn {
     font-size: 2rem;
     background-color: var(--error);
     min-width: 50%;
}
/* ===== Hero Section ===== */
/* Container principal da seção */
 .hero, .pricing, .enterprise, .map, .trust, .faq {
     position: relative;
    /* Necessário para segurar o vídeo e o overlay absolutos */
     overflow: hidden;
    /* Corta qualquer parte do vídeo que ultrapasse a seção */
     padding: var(--spacing-xl) var(--spacing-md);
     text-align: center;
}
/* Configuração de bg*/
 .bg-section {
     position: absolute;
     top: 50%;
     left: 50%;
     width: 100%;
     height: 100%;
     transform: translate(-50%, -50%);
     object-fit: cover;
     z-index: 0;
}
/* Camada escura por cima do vídeo (Overlay) para dar destaque ao texto */
 .hero::before, .pricing::before, .enterprise::before, .map::before, .trust::before, .faq::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
    /* Gradiente com 80% a 85% de opacidade, baseado no tom escuro da sua imagem de referência */
     background: linear-gradient(135deg, rgba(5, 15, 30, 0.8), rgba(2, 5, 15, 0.85));
     z-index: 1;
}
/* Coloca o conteúdo de texto ACIMA do vídeo e da camada escura */
 .hero .container, .pricing .container, .enterprise .container, .map .container, .trust .container, .faq .container {
     position: relative;
     z-index: 2;
}
 .hero, .map {
     background: linear-gradient(135deg, rgba(0, 40, 80, 0.1), rgba(0, 50, 90, 0.1));
     padding: var(--spacing-xl) var(--spacing-md);
     text-align: center;
}
 .hero h1, .map h1 {
     font-size: 48px;
     font-weight: 800;
     margin-bottom: var(--spacing-md);
     background: linear-gradient(135deg, var(--primary-blue), var(--neon-magenta));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
}
 .subtitle {
     font-size: 18px;
     color: var(--text-light);
     max-width: 600px;
     margin: 0 auto;
}
/* ===== Map Section ===== */
 .map iframe {
     min-width: 100%;
     height: 640px;
     justify-content: center;
}
/* ===== Pricing Section ===== */
 .pricing {
     background: var(--light-bg);
     position: relative;
     overflow: hidden;
     padding: var(--spacing-lg) var(--spacing-md);
     background: var(--light-bg);
}
 .billing-toggle {
     display: flex;
     justify-content: center;
     gap: var(--spacing-md);
     margin-bottom: var(--spacing-lg);
}
 .toggle-label {
     display: flex;
     align-items: center;
     gap: var(--spacing-sm);
     cursor: pointer;
     padding: var(--spacing-sm) var(--spacing-md);
     border: 2px solid var(--border-color);
     border-radius: var(--radius-md);
     transition: all 0.3s ease;
}
 .toggle-label input[type="radio"] {
     cursor: pointer;
     width: 18px;
     height: 18px;
     accent-color: var(--primary-blue);
}
 .toggle-label:has(input:checked) {
     background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 255, 255, 0.1));
     border-color: var(--primary-blue);
}
 .pricing-cards {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: var(--spacing-lg);
     margin-bottom: var(--spacing-xl);
}
 .pricing-card {
     background: var(--card-bg);
     border: 2px solid var(--border-color);
     border-radius: var(--radius-lg);
     padding: var(--spacing-lg);
     position: relative;
     transition: all 0.3s ease;
     min-height: 33%;
     display: flex;
     flex-direction: column;
     width: 105%;
}
 .pricing-card:hover {
     transform: translateY(-8px);
     box-shadow: var(--shadow-lg);
     border-color: var(--primary-blue);
}
 .pricing-card.popular {
     border-color: var(--neon-cyan);
     box-shadow: var(--shadow-glow-blue);
     transform: scale(1.05);
     min-height: 42%;
}
 .pricing-card.popular:hover {
     border-color: var(--neon-green);
     box-shadow: var(--shadow-glow-cyan);
}
 .popular-badge {
     position: absolute;
     top: -12px;
     left: 50%;
     transform: translateX(-50%);
     background: rgb(251, 208, 81);
     color: black;
     padding: 6px 16px;
     border-radius: 20px;
     font-size: 12px;
     font-weight: 700;
     text-transform: uppercase;
     padding-top: 10px;
}
 .card-header {
     margin-bottom: var(--spacing-md);
}
 .card-header h3 {
     color: var(--primary-blue);
     font-size: 24px;
     font-weight: 700;
     margin-bottom: var(--spacing-xs);
}
 .card-subtitle {
     color: var(--text-light);
     font-size: 14px;
}
 .card-price {
     margin-bottom: var(--spacing-md);
}
 .price-value {
     font-size: 34px;
     font-weight: 800;
     color: var(--success);
}
 .price-period {
     color: var(--text-light);
     font-size: 14px;
     margin-left: var(--spacing-xs);
}
 .card-economy {
     margin-bottom: var(--spacing-md);
     padding: var(--spacing-sm);
     border-radius: var(--radius-md);
     background-color: rgb(251, 208, 81);
     box-shadow: 0 0 15px var(--warning);
}
 .economy-text {
     font-size: 13px;
     color: var(--text-dark);
     margin: 0;
     white-space: pre-line;
}
 .features-list {
     margin-top: auto;
     list-style: none;
     margin-bottom: var(--spacing-lg);
}
 .features-list li {
     padding: 8px 0;
     color: var(--text-light);
     font-size: 14px;
}
 .features-list li:before {
     content: "✓ ";
     color: var(--neon-green);
     font-weight: 700;
     margin-right: 8px;
}
 .pricing-card .btn {
     width: 100%;
}
/* 2. Estiliza a imagem de fundo */
 .pricing-bg-img {
     margin-top: -10%;
     position: absolute;
     top: 0;
    /* Força o topo */
     left: 0;
     width: 100%;
     height: 100%;
    /* Ajuste principal */
     min-height: 100vh;
    /* Garante que cubra no mínimo a tela */
     object-fit: cover;
     opacity: 0.1;
     z-index: 0;
}
 .billing-toggle, .pricing-cards, .payments {
     position: relative;
     z-index: 1;
}
/* Container do Plano Personal (Linha única) */
 .personal-card-container {
     display: flex;
     justify-content: flex-start;
    /* Na imagem ele fica alinhado à esquerda. Se quiser no centro, use 'center' */
     width: 100%;
     margin-top: 30px;
     position: relative;
     z-index: 2;
}
/* Formato do Card Vertical (como na imagem) */
 .personal-card-container .pricing-card {
     max-width: 450px;
     width: 100%;
     background: var(--card-bg, #0a1128);
     padding: 40px 30px;
     display: flex;
     flex-direction: column;
     align-items: center;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
/* O Card Personal */
 .personal-card {
     max-width: 750px;
    /* Largura perfeita para não esticar os elementos */
     width: 100%;
     display: flex;
     flex-direction: column;
     align-items: center;
    /* Centraliza conteúdo do topo e base */
     padding: 40px;
     min-height: auto;
}
/* 1. Topo */
 .personal-card-top {
     text-align: center;
     width: 100%;
     margin-bottom: 25px;
}
 .personal-card-top .card-header {
     margin-bottom: 0;
}
 .personal-card-top h3 {
     margin: 0;
    /* Centralizado perfeitamente, sem margens sobrando */
}
/* 2. Meio (Grid das Colunas) */
 .personal-card-middle {
     display: flex;
     flex-direction: row;
     justify-content: center;
     align-items: center;
    /* Alinha horizontalmente preço com checkmarks */
     gap: 50px;
    /* Espaçamento entre esquerda e direita */
     width: 100%;
     margin-bottom: 35px;
}
/* Coluna Esquerda */
 .personal-card-left {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
}
 .personal-card-left .card-price {
     margin-bottom: 15px;
}
 .personal-card-left .card-economy {
     margin-bottom: 0;
}
/* Coluna Direita */
 .personal-card-right {
     display: flex;
     flex-direction: column;
     justify-content: center;
}
 .personal-card-right .features-list {
     margin-bottom: 0;
    /* Remove a margem original para alinhar perfeitamente com a caixa esquerda */
     text-align: left;
}
/* 3. Base (Botão) */
 .personal-card-bottom {
     text-align: center;
     width: 100%;
}
 .personal-card-bottom .btn-plano {
     width: auto;
    /* Sobrescreve o 100% dos outros cards */
     min-width: 280px;
     padding: 15px 40px;
     display: inline-block;
}
/**/
/* BEGIN TESTES PERSONAL CARD */
/**/
/* Topo e Preço (Centralizados) */
 .personal-card-container .card-header, .personal-card-container .card-price {
     text-align: center;
     width: 100%;
}
 .personal-card-container .card-header h3 {
     color: var(--primary-blue, #58a6ff);
     font-size: 22px;
     font-weight: 700;
     margin-bottom: 20px;
}
 .personal-card-container .card-price {
     margin-bottom: 10px;
}
 .personal-card-container .billing-toggle {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     margin-top: 5px;
     padding-bottom: 5px;
     width: 100%;
     margin-bottom: 0 !important;
}
 .personal-card-container .billing-toggle label {
     font-size: 11px;
    /* Texto bem pequeno */
     color: #ccc;
     cursor: pointer;
     margin: 0;
}
 .personal-card-container .billing-toggle .text-blue {
     color: #58a6ff;
     font-size: 10px;
}
/* Esconde as bolinhas do radio original */
 .personal-card-container .billing-toggle input[type="radio"] {
     display: none;
}
 .months-free {
     margin-bottom: 25px;
}
 .personal-card-container .billing-toggle label {
     font-size: 11px;
     color: #ccc;
     cursor: pointer;
}
 .personal-card-container .toggle-container {
     width: 32px;
     height: 18px;
    /* Slightly taller to fit ball */
     border-width: 1px;
}
 .personal-card-container .toggle-ball {
     width: 12px;
     height: 12px;
     top: 2px;
     left: 2px;
}
/* O botão do Toggle em si */
 .personal-card-container .toggle-container {
     width: 32px;
     height: 16px;
     background: #0055ff;
     border-radius: 10px;
     position: relative;
     cursor: pointer;
}
 .personal-card-container .toggle-ball {
     width: 12px;
     height: 12px;
     background: #fff;
     border-radius: 50%;
     position: absolute;
     top: 2px;
     left: 2px;
     transition: transform 0.3s ease;
}
/* Lógica CSS para mover a bolinha quando "Anual" está checado */
 .personal-card-container input#personal-annual:checked ~ .personal-toggle-container .personal-toggle-ball {
     transform: translateX(16px);
}
 .business-cards-container input#business-annual:checked ~ .business-toggle-container .toggle-ball {
     transform: translateX(25px);
}
/* Lista de Recursos (Alinhada à Esquerda) */
 .personal-card-container .features-list {
     width: 100%;
     text-align: left;
     margin-bottom: 30px;
     padding: 0;
     list-style: none;
}
 .personal-card-container .features-list li {
     font-size: 14px;
     color: #ddd;
     line-height: 1.4;
     margin-bottom: 12px;
     display: flex;
     align-items: flex-start;
}
 .personal-card-container .features-list li::before {
     content: "✓";
     color: var(--neon-green, #0f0);
    /* Verde vivo para o check */
     margin-right: 8px;
     font-weight: bold;
}
/* Botão da Base */
 .personal-card-container .personal-card-bottom {
     width: 100%;
     margin-top: auto;
    /* Empurra o botão pro final do card */
}
 .personal-card-container .btn-plano {
     width: 100%;
     display: block;
     color: #fff;
     text-align: center;
     padding: 15px;
     font-size: 14px;
     text-transform: uppercase;
     text-decoration: none;
     border: none;
     transition: 0.3s;
}
/**/
/* END TESTES PERSONAL CARD */
/**/
/* Responsividade (Empilha no celular) */
 @media (max-width: 768px) {
     .personal-card-middle {
         flex-direction: column;
         gap: 25px;
    }
     .personal-card-left {
         align-items: center;
         text-align: center;
    }
     .personal-card-right .features-list {
         margin: 0 auto;
    }
.lang-selector { 
        margin: 0; 
        order: 3; 
        position: relative; 
        cursor: pointer;
    }
    
    .lang-globe {
        display: block !important;
        font-size: 24px;
        color: var(--text-light);
        transition: color 0.3s;
    }
    
    .lang-selector.aberto .lang-globe {
        color: var(--neon-cyan); /* Dá um feedback visual quando aberto */
    }

    /* Oculta e transforma as bandeiras em um menu flutuante */
    .flags-dropdown {
        position: absolute;
        top: 40px;
        right: -5px;
        background: linear-gradient(145deg, rgba(14, 21, 40, 0.98), rgba(5, 8, 17, 1));
        border: 1px solid rgba(0, 243, 255, 0.15);
        border-radius: 12px;
        padding: 12px;
        display: flex;
        flex-direction: column; /* Empilha as bandeiras */
        gap: 15px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.8);
        z-index: 100;
        
        /* Efeito de animação escondido por padrão */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    /* Ao clicar na div (adicionando a classe 'aberto'), o dropdown desce */
    .lang-selector.aberto .flags-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .lang-flag { 
        width: 28px; 
        height: auto; 
    }
}
/* ===== Enterprise Section ===== */
 .enterprise {
     background: linear-gradient(135deg, var(--card-bg), var(--light-bg));
     border-color: #000;
     padding: var(--spacing-xl) var(--spacing-md);
     color: var(--neon-cyan);
}
/* Criação do Layout em 2 colunas */
 .enterprise-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     align-items: center;
     max-width: 1100px;
     margin: 0 auto;
}
/* Ajustes do Lado Direito (Texto e Botão) */
 .enterprise-content {
     text-align: left;
    /* Alinhado à esquerda para harmonizar com o formulário */
}
 .enterprise-content h2 {
     font-size: 32px;
     font-weight: 800;
     margin-bottom: var(--spacing-md);
}
 .enterprise-content p {
     font-size: 18px;
     margin-bottom: var(--spacing-lg);
     opacity: 0.95;
     line-height: 1.5;
}
 .enterprise .schedule {
     color: white;
     background: var(--gradient-gold);
     border-color: rgba(240, 240, 85, 0.4);
     display: inline-block;
}
 .enterprise .schedule:hover {
     background: #efefef;
     color: var(--primary-blue);
}
/* Estilos do Lado Esquerdo (Formulário) */
 .enterprise-form {
     display: flex;
     flex-direction: column;
     gap: 15px;
     background: rgba(11,22,53, .95);
     padding: 30px;
     border-radius: 8px;
     border: 1px solid rgba(255, 255, 255, 0.1);
}
 .enterprise-form input, .enterprise-form textarea {
     font-size: 16px;
     width: 100%;
     padding: 12px;
     border: none;
     border-radius: 4px;
     background-color: #050819;
     color: var(--text-light);
     font-family: var(--font-text);
}
 .enterprise-form input::placeholder, .enterprise-form textarea::placeholder {
     color: var(--text-muted);
}
 .enterprise-form input:focus, .enterprise-form textarea:focus {
     outline: none;
     border-color: var(--neon-cyan);
}
 .enterprise-form textarea {
     resize: vertical;
     min-height: 90px;
}
 .enterprise-form .btn-submit {
     background-color: var(--neon-cyan);
    /* Cor de destaque para envio */
     color: #000;
     font-weight: bold;
     border: none;
     margin-top: 10px;
     padding: 12px;
     width: 100%;
}
 .enterprise-form .btn-submit:hover {
     background-color: #fff;
     color: #000;
}
/* Responsividade: Celulares e Tablets */
 @media (max-width: 900px) {
     .enterprise-grid {
         grid-template-columns: 1fr;
        /* Quebra para 1 coluna */
         gap: 40px;
    }
     .enterprise-content {
         text-align: center;
        /* Centraliza no mobile */
    }
}
/* ===== FAQ Section ===== */
 .faq {
     padding: var(--spacing-xl) var(--spacing-lg);
}
 .faq h2 {
     font-size: 32px;
     font-weight: 800;
     text-align: center;
     margin-bottom: 40px;
}
 .faq-list {
     max-width: 750px;
     margin: 0 auto;
}
 .faq-item {
     border-bottom: 1px solid var(--border-color);
}
 .faq-question {
     color: var(--text-light);
     width: 100%;
     padding: 18px 0;
     background: none;
     border: none;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 16px;
     font-weight: 600;
     text-align: left;
     transition: color 0.3s ease;
}
 .faq-question:hover {
     color: var(--primary-blue);
}
 .faq-icon {
     font-size: 18px;
     transform: rotate(180deg);
     transition: transform 0.3s ease;
}
 .faq-item.active .faq-icon {
     transform: rotate(0deg);
}
 .faq-answer {
     max-height: 0;
     overflow: hidden;
     opacity: 0;
     transition: all 0.3s ease;
}
 .faq-item.active .faq-answer {
     max-height: 300px;
     opacity: 1;
     margin-bottom: 12px;
}
 .faq-answer p {
     color: white;
     font-size: 15px;
     line-height: 1.6;
     padding-bottom: 12px;
}
/* ===== Footer ===== */
 .footer {
     background: var(--gradient-purple);
     color: white;
     padding: var(--spacing-md) var(--spacing-md) var(--spacing-md);
}
 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: var(--spacing-lg);
     margin-bottom: var(--spacing-xl);
}
 .footer-section h4 {
     font-size: 16px;
     font-weight: 700;
     margin-bottom: var(--spacing-md);
     background: var(--border-color);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
}
 .footer-section p {
     color: rgba(255, 255, 255, 0.7);
     font-size: 14px;
}
 .footer-section ul {
     list-style: none;
}
 .footer-section ul li {
     margin-bottom: var(--spacing-sm);
}
 .footer-section a {
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     transition: color 0.3s ease;
}
 .footer-section a:hover {
     color: var(--neon-cyan);
}
 .footer-bottom {
     text-align: center;
     color: rgba(255, 255, 255, 0.5);
     font-size: 14px;
}
/* ===== Responsive Design ===== */
 @media (max-width: 768px) {
     .menu-toggle {
         display: block;
    }
     .header-content {
        /* Garante que Logo Product, Menu Toggle e Logo Brand (se visível) fiquem em linha */
         flex-direction: row;
         justify-content: space-between;
        /* Espaça logo e hamburger */
         align-items: center;
    }
    /* === Ocultar Logo da Marca (Overnine) no Mobile === */
     .logo-brand-container {
         display: none;
        /* Esconde a logo da Overnine */
    }
     .nav {
        /* Configurações de layout Mobile (Hambuger) */
         flex-direction: column;
         gap: var(--spacing-md);
         width: 100%;
        /* Posicionamento e Esconder (Essencial para o Menu Hamburguer) */
         position: absolute;
         top: 100%;
        /* Abaixo do header-content */
         left: 0;
        /* Visual */
         background-color: #090909;
         padding: 0;
         opacity: .95;
         font-size: 1.1em;
        /* Esconder e Animação */
         max-height: 0;
         overflow: hidden;
         transition: max-height 0.1s ease-in-out, padding 0.2s ease-in-out;
         z-index: 50;
    }
     .nav a {
         display: block;
         text-align: center;
         padding: 20px 100%;
         border-bottom: none;
    }
     .nav.active {
         max-height: 300px;
        /* Valor suficiente para todos os links */
         padding: var(--spacing-lg) 0;
    }
     .hero h1 {
         font-size: 32px;
    }
     .pricing-card.popular {
         transform: scale(1);
    }
     .faq h2 {
         font-size: 28px;
    }
     .enterprise-content h2 {
         font-size: 24px;
    }
}
 @media (max-width: 480px) {
     .container {
         padding: 0 var(--spacing-sm);
    }
     .hero h1 {
         font-size: 24px;
    }
     .subtitle {
         font-size: 16px;
    }
     .btn {
         padding: 10px 16px;
         font-size: 13px;
    }
     .pricing-cards {
         grid-template-columns: 1fr;
    }
     .price-value {
         font-size: 28px;
    }
}
 .schedule {
     min-width: 90%;
     font-size: 1.2em !important;
     background: linear-gradient(135deg, var(--primary-blue), var(--neon-magenta)) !important;
     box-shadow: 0 0 15px var(--neon-purple);
     text-decoration: none;
}
 .schedule:hover {
     color: white !important;
     background: var(--gradient-card) !important ;
}
/* ===== Animations ===== */
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
    }
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
 .pricing-card {
     animation: fadeIn 0.6s ease-out;
}
 @keyframes slideInLeft {
     from {
         opacity: 0;
         transform: translateX(-30px);
    }
     to {
         opacity: 1;
         transform: translateX(0);
    }
}
 .header {
     animation: slideInLeft 0.6s ease-out;
}
 .billing-toggle {
     display: flex;
     align-items: center;
     gap: 12px;
     font-family: var(--font-title);
     font-size: 16px;
}
 .toggle-container {
     position: relative;
     width: 52px;
     height: 28px;
     background-color: #0053b3;
     border-radius: 50px;
     cursor: pointer;
     transition: background-color 0.3s;
}
 .toggle-ball {
     position: absolute;
     top: 3px;
     left: 3px;
     width: 22px;
     height: 22px;
     background-color: white;
     border-radius: 50%;
     transition: left 0.3s;
}
 input[type="radio"] {
     display: none;
}
 .billing-toggle span {
     cursor: pointer;
}
 #annual:checked ~ .toggle-container {
     background-color: #0053b3;
}
 #annual:checked ~ .toggle-container .toggle-ball {
     left: 27px;
}
 .text-gray {
     color: #777;
     font-size: 13px;
}
 .text-blue {
     color: var(--text-light);
     font-size: 13px;
}
 section {
     padding: 20px 20px;
     text-align: center;
}
 h2 {
     font-size: 2.2rem;
     font-weight: 700;
     margin-bottom: 60px;
}
/* .how-works {
     background: linear-gradient(135deg, #010207,#0a041a ) !important;
}
 */
/* TESTANDO */
 .how-works {
     position: relative;
    /* O gradiente escurece a imagem para não ofuscar os cards. Substitua a URL abaixo pelo caminho real da sua imagem */
     background-image: linear-gradient(to bottom, rgba(5, 8, 17, 0.85), rgba(5, 8, 17, 0.95)), url('/assets/img/4.png');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
    /* Opcional: cria um efeito parallax elegante ao rolar a página */
     padding-top: 50px;
}
/* TESTANDO */
 .security-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 50px;
     max-width: 1000px;
     margin: 0 auto 80px;
}
 @media (min-width: 768px) {
     .security-grid {
         grid-template-columns: repeat(3, 1fr);
    }
}
 .security-item {
     text-align: center;
}
 .security-icon {
     font-size: 50px;
     margin-bottom: 15px;
}
 .icon-green {
     color: var(--success);
}
 .icon-blue {
     color: var(--primary-blue);
}
 .icon-yellow {
     color: var(--warning);
}
 h3 {
     font-size: 1.1rem;
     font-weight: 700;
     margin-bottom: 8px;
}
 p {
     color: var(--text-light);
     font-size: 1rem;
    /* font-size: 0.95rem;
     */
     line-height: 1.5;
}
 .payments h3 {
     color: var(--text-light);
     font-size: 1rem;
     font-weight: 400;
     margin-bottom: 10px;
}
 .payment-methods {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     margin-bottom: 2em;
}
 .payment-method {
     background-color: white;
     color: #111827;
     font-weight: 600;
     padding: 10px 24px;
     border-radius: 8px;
     transition: transform 0.2s;
}
 .payment-method:hover {
     transform: scale(1.05);
}
 .payment-methods img {
     max-height: 50px;
}
 .divider {
     border-top: 1px solid #102030;
     margin: 0 auto;
     max-width: 900px;
}
 .trust p {
     margin: 10px 0;
}
 .trust .highlight {
     color: var(--success);
     font-weight: 700;
}
 .trust strong {
     font-size: 1.5rem;
}
/* MODAL */
 .modal-termos {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     margin-top: 50px;
    /* Backdrop: preto com 75% */
     background: rgba(0, 0, 0, 0.75);
     backdrop-filter: blur(4px);
     padding: 40px;
     overflow-y: auto;
     z-index: 9999;
}
/* Conteúdo da Modal */
 .modal-termos-content {
     background: var(--card-bg);
     background-image: var(--gradient-card);
     max-width: 520px;
     margin: auto;
     padding: 32px;
     border-radius: 5px;
     border: 1px solid var(--border-color);
     box-shadow: var(--shadow-lg), 0 0 25px rgba(0, 153, 255, 0.25);
     color: var(--text-light);
     font-family: "Inter", sans-serif;
     animation: fadeIn 0.25s ease-out;
}
/* Títulos da modal */
 .modal-termos-content h2 {
     color: var(--neon-cyan);
     margin-top: 0;
     margin-bottom: 18px;
     text-shadow: var(--shadow-glow-cyan);
}
/* Lista de links */
 .modal-termos-content ul {
     padding-left: 18px;
}
 .modal-termos-content a {
     color: var(--primary-blue);
     text-decoration: none;
     transition: 0.2s;
}
 .modal-termos-content a:hover {
     color: var(--neon-cyan);
     text-shadow: var(--shadow-glow-cyan);
}
/* Ações */
 .modal-termos-actions {
     text-align: right;
     margin-top: 25px;
}
/* Botões */
 .modal-termos-actions button {
     padding: 10px 20px;
     border-radius: 4px;
     border: 1px solid var(--border-color);
     background: var(--mid-bg);
     color: var(--text-light);
     cursor: pointer;
     transition: 0.2s ease-out;
}
 .modal-termos-actions button:hover {
     background: var(--neon-purple);
     color: #fff;
     box-shadow: var(--shadow-glow-purple);
}
 #btn-continuar {
     color: #fff;
     background: linear-gradient(135deg, var(--primary-blue), var(--neon-magenta));
}
/* Botão desabilitado */
 #btn-continuar[disabled] {
     opacity: 0.4;
     cursor: not-allowed;
     background: var(--mid-bg);
     border-color: #333;
}
 .check-termos {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-top: 18px;
     color: var(--text-muted);
}
 .check-termos input[type="checkbox"] {
     transform: scale(1.2);
}
/* Container geral do bloco de aceite */
.terms-container {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Espaçamento entre a frase e a lista de links */
    margin-top: 15px;
    text-align: left;
}
/* Alinhamento do checkbox com a frase */
.terms-header {
    display: flex;
    align-items: center;
    gap: 10px; /* Espaço entre o quadradinho e o texto */
    cursor: pointer;
    color: var(--text-light);
    font-size: 14px;
}
.terms-header input[type="checkbox"] {
    transform: scale(1.2); /* Aumenta um pouco o checkbox para facilitar o clique no mobile */
    cursor: pointer;
    flex-shrink: 0; /* Impede que o checkbox seja esmagado se o texto quebrar de linha */
}
/* Lista de links sem marcadores e alinhada */
.terms-list {
    list-style-type: none; /* Remove as bolinhas (marcadores) */
    padding-left: 28px; /* Recuo exato para alinhar os links com a primeira letra do texto acima */
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px; /* Espaço vertical entre um link e outro */
}
.terms-list a {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}
.terms-list a:hover {
    color: var(--neon-cyan);
    text-decoration: underline; /* Adiciona um sublinhado sutil no hover para UX */
}
/* Animação */
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(-12px);
    }
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
 .lista-riscos i, .lista-riscos {
     color: var(--polenta) !important;
     border: none !important;
}
/* FEATURES */
 .sec-recursos-css .lista-recursos, .lista-riscos {
     display: flex;
     flex-wrap: wrap;
     list-style: none;
     padding: 0;
     margin: 2% 0 2% 0;
     gap: 20px;
}
 .sec-recursos-css .item-recurso {
     width: calc(25% - 15px);
     min-width: 250px;
     box-sizing: border-box;
}
 .sec-recursos-css .recurso-conteudo, .risco-conteudo {
     display: flex;
     align-items: center;
     padding: 15px;
     border-radius: 8px;
     height: 100%;
}
 .sec-recursos-css .recurso-conteudo i {
     font-size: 52px;
     margin-right: 15px;
     color: #ddd;
     color: var(--neon-cyan);
     text-shadow: var(--shadow-glow-cyan);
     text-shadow: var(--shadow-glow-purple);
     flex-shrink: 0;
}
 .sec-recursos-css .risco-conteudo i {
     font-size: 52px;
     margin-right: 15px;
     color: var(--polenta);
     flex-shrink: 0;
}
 .title-riscos, .subtitle-riscos {
     color: var(--polenta);
}
 .subtitle-riscos {
     margin: 25px;
     padding: 25px;
}
 .sec-recursos-css .recurso-conteudo p, .sec-recursos-css .risco-conteudo p {
     margin: 0;
     font-size: 14px;
     line-height: 1.5;
     color: var(--text-light);
}
 .sec-recursos-css .risco-conteudo p {
     color: var(--polenta) 
}
 .recurso-img {
     max-height: 120px;
}
 .dropdown {
     position: relative;
     display: inline-block;
}
 .dropdown-menu {
     display: none;
     position: absolute;
     top: 100%;
     left: 0;
     background-color: var(--dark-bg);
     min-width: 150px;
     box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
     border-radius: 4px;
     padding: 10px 0;
     z-index: 1000;
}
 .dropdown:hover .dropdown-menu {
     display: flex;
     flex-direction: column;
}
 .dropdown-menu a {
     padding: 8px 16px;
     text-decoration: none;
     display: block;
     color: var(--text-light);
}
 .dropdown-menu a:hover {
     background-color: var(--mid-bg);
}
 @media (max-width: 992px) {
     .sec-recursos-css .item-recurso {
         width: calc(50% - 10px);
         min-width: 0;
    }
}
 .cusom-support {
     margin-bottom: 1em;
}
/* --- RODAPÉ DA TABELA DE INCIDENTES --- */
 .ir-table-footer {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 40px 35px 30px;
     margin-top: -10px;
     background-color: rgba(10,17,35,0.8);
}
 .ir-footer-item {
     display: flex;
     align-items: center;
     gap: 20px;
     flex: 1;
}
 .ir-footer-item i {
     font-size: 42px;
     color: var(--neon-cyan);
     text-shadow: var(--shadow-glow-cyan);
     width: 50px;
     text-align: center;
}
 .ir-footer-text {
     text-align: left;
}
 .ir-footer-text h4 {
     font-size: 16px;
     font-weight: 700;
     color: #fff;
     margin-bottom: 4px;
     font-family: var(--font-title);
}
 .ir-footer-text p {
     font-size: 14px;
     color: var(--text-muted);
     margin: 0;
     font-family: var(--font-text);
     line-height: 1.4;
}
 .ir-footer-divider {
     width: 1px;
     height: 45px;
     background-color: rgba(255, 255, 255, 0.1);
     margin: 0 35px;
}
/* Responsividade do Rodapé (Empilha no Mobile) */
@media (max-width: 950px) {
    /* --- REDESIGN PREMIUM DOS CARDS DE SUPORTE (IR) PARA MOBILE --- */
    .hidden-mobile { display: none; }
    
    .ir-table-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 25px 30px;
        text-align: center;
        
        background: linear-gradient(145deg, rgba(14, 21, 40, 0.95), rgba(5, 8, 17, 1));
        border: 1px solid rgba(0, 243, 255, 0.15);
        border-radius: 16px;
        margin-bottom: 25px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.6), inset 0 2px 15px rgba(0, 243, 255, 0.05);
        position: relative;
        /* "overflow: hidden" REMOVIDO AQUI PARA NÃO CORTAR O BADGE */
    }

    /* Linha de luz neon acompanhando a borda curva sem precisar de overflow */
    .ir-table-row::before {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 3px;
        background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
        border-radius: 16px 16px 0 0;
    }

    .ir-table-row.highlight-purple {
        background: linear-gradient(145deg, rgba(30, 10, 50, 0.95), rgba(10, 5, 20, 1));
        border-color: rgba(212, 0, 255, 0.3);
        box-shadow: 0 12px 30px rgba(0,0,0,0.6), inset 0 2px 15px rgba(212, 0, 255, 0.05);
    }
    
    .ir-table-row.highlight-purple::before {
        background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
    }

    .ir-col { justify-content: center; }
    .ir-col.indication { flex-direction: column; gap: 5px; margin-bottom: 10px; }
    .ir-col.plan-name span { font-size: 22px; }
    .ir-col.plan-price { margin-bottom: 10px; }
    
    .btn-col { justify-content: center; margin-top: 10px; width: 100%; }
    .btn-col a { 
        width: 100%; 
        display: block; 
        padding: 16px; 
        font-size: 16px;
        border-radius: 8px;
        background: linear-gradient(135deg, var(--primary-blue), var(--neon-green));
        color: #fff;
        border: none;
        box-shadow: 0 4px 15px rgba(25, 201, 105, 0.4);
    }
    
    .ir-table-row.highlight-purple .btn-col a {
        background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
        box-shadow: 0 4px 15px rgba(212, 0, 255, 0.4);
    }
    
    /* Z-INDEX E AJUSTE DE POSIÇÃO PARA O BADGE FICAR VISÍVEL */
    .ir-badge { 
        right: 50%; 
        transform: translateX(50%); 
        font-size: 11px; 
        padding: 6px 18px; 
        top: -14px; 
        z-index: 10; 
    }

    .ir-table-footer { flex-direction: column; gap: 30px; align-items: flex-start; padding: 30px 20px; margin-top: 30px; }
    .ir-footer-divider { display: none; }
    .ir-footer-item { width: 100%; }
}

 .banner-logo {
     background: linear-gradient(135deg, #010207, var(--border-color));
}
 @media (max-width: 576px) {
     .sec-recursos-css .item-recurso {
         width: 100%;
    }
}
 .how-works img {
     display: block;
     margin: 0 auto;
     padding: 20px 0 100px;
     margin-top: -200px;
     margin-left: -310px;
     height: 100%;
     max-width: 155%;
     object-fit: contain;
}
/* --- IMAGEM CLICÁVEL --- */
 .zoomable-img {
     cursor: zoom-in;
    /* Muda o cursor para uma lupa */
     transition: transform 0.3s ease, filter 0.3s ease;
}
 .zoomable-img:hover {
     transform: scale(1.02);
    /* Dá um pequeno zoom ao passar o mouse */
     filter: brightness(1.1);
    /* Deixa a imagem levemente mais clara */
}
/* --- MODAL DO LIGHTBOX --- */
 .lightbox-modal {
     display: none;
    /* Escondido por padrão */
     position: fixed;
     z-index: 10000;
    /* Acima de tudo no seu site (seu modal atual tem 9999) */
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.85);
    /* Fundo escuro transparente */
     backdrop-filter: blur(5px);
    /* Efeito de desfoque no fundo do site */
     align-items: center;
    /* Centraliza verticalmente */
     justify-content: center;
    /* Centraliza horizontalmente */
}
/* A imagem gigante no meio */
 .lightbox-content {
     max-width: 90%;
     max-height: 90vh;
    /* Não deixa a imagem ser maior que a tela */
     object-fit: contain;
     box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
     animation: zoomIn 0.3s ease;
    /* Animação suave de entrada */
     cursor: zoom-out;
}
/* Botão de Fechar (X) */
 .lightbox-close {
     position: absolute;
     top: 20px;
     right: 35px;
     color: #f1f1f1;
     font-size: 40px;
     font-weight: bold;
     cursor: pointer;
     transition: color 0.3s;
}
 .lightbox-close:hover {
     color: var(--neon-cyan);
}
/* Animação */
 @keyframes zoomIn {
     from {
         transform: scale(0.9);
         opacity: 0;
    }
     to {
         transform: scale(1);
         opacity: 1;
    }
}
/* --- UNIFIED TOGGLE CSS --- */
 .billing-toggle {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 12px;
     font-family: var(--font-title);
     font-size: 16px;
    /*margin-bottom: var(--spacing-lg);
    */
}
 .toggle-container {
     position: relative;
     width: 52px;
     height: 28px;
     background-color: var(--card-bg);
    /* Use card bg for unchecked state */
     border: 2px solid var(--primary-blue);
     border-radius: 50px;
     cursor: pointer;
     transition: background-color 0.3s, border-color 0.3s;
     flex-shrink: 0;
}
 .toggle-ball {
     position: absolute;
     top: 2px;
     left: 2px;
     width: 20px;
     height: 20px;
     background-color: var(--text-light);
     border-radius: 50%;
     transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    /* Smoother animation */
}
/* Hide original inputs */
 .billing-toggle input[type="radio"] {
     display: none;
}
 .billing-toggle input[value="annual"]:checked ~ .toggle-container {
     background-color: #0053b3;
    /* Or var(--primary-blue) */
     border-color: #0053b3;
}
 .billing-toggle input[value="annual"]:checked ~ .toggle-container .toggle-ball {
     transform: translateX(24px);
}
/* Move the ball for mini toggle. Translation = 32 - 12 - 2 - 2 = 16 */
 .personal-card-container input[value="annual"]:checked ~ .toggle-container .toggle-ball {
     transform: translateX(14px);
}
/* --- CUSTOM SUPPORT CHECKBOX & TOOLTIP --- */
 .cusom-support {
     display: flex;
     align-items: center;
     gap: 8px;
     margin-bottom: 1em;
     cursor: pointer;
}
/* Wrapper to hold the icon and the absolute tooltip */
 .info-icon-wrapper {
     font-size: 1em;
     position: relative;
     display: inline-flex;
     align-items: center;
     color: var(--primary-blue);
     cursor: help;
}
 .tooltip-content {
     visibility: hidden;
     opacity: 0;
     width: 220px;
     background-color: var(--dark-bg);
     color: var(--text-light);
     text-align: center;
     border-radius: 6px;
     padding: 8px 12px;
     position: absolute;
     z-index: 10;
     bottom: 125%;
    /* Position above the icon */
     left: 50%;
     margin-left: -110px;
    /* Center it (Half of width) */
     border: 1px solid var(--border-color);
     box-shadow: var(--shadow-md);
     font-size: .95rem;
     line-height: 1.4;
     transition: opacity 0.3s;
     font-family: var(--font-text);
}
 .hero p {
     font-size: 1.7rem;
}
/* Little arrow pointing down */
 .tooltip-content::after {
     content: "";
     position: absolute;
     top: 100%;
     left: 50%;
     margin-left: -5px;
     border-width: 5px;
     border-style: solid;
     border-color: var(--border-color) transparent transparent transparent;
}
/* Show tooltip on hover */
 .info-icon-wrapper:hover .tooltip-content {
     visibility: visible;
     opacity: 1;
}
/* CUSTOM PLAN */
/* --- ESTILOS DO BOTÃO PERSONALIZAR --- */
/* --- ESTILOS DO MODAL DE PERSONALIZAÇÃO --- */
 .quantity-selector-inline {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
     margin-bottom: 20px;
     width: 100%;
}
 .quantity-label-inline {
     color: var(--text-light);
     font-size: 14px;
     font-weight: 600;
}
 .quantity-controls {
     display: flex;
     align-items: center;
     background: rgba(0, 0, 0, 0.4);
     border: 1px solid var(--border-color);
     border-radius: 8px;
     overflow: hidden;
}
 .quantity-controls button {
     background: transparent;
     border: none;
     color: var(--primary-blue);
     font-size: 20px;
     width: 35px;
     height: 35px;
     cursor: pointer;
     transition: background 0.2s;
}
 .quantity-controls button:hover {
     background: rgba(106, 154, 255, 0.2);
}
 .quantity-controls input {
     background: transparent;
     border: none;
     color: #fff;
     font-size: 18px;
     font-weight: 700;
     width: 45px;
     text-align: center;
     -moz-appearance: textfield;
    /* Esconde as setinhas nativas no Firefox */
     font-family: var(--font-title);
     outline: none;
}
/* Esconde setinhas nativas em navegadores Webkit (Chrome/Safari) */
 .quantity-controls input::-webkit-outer-spin-button, .quantity-controls input::-webkit-inner-spin-button {
     -webkit-appearance: none;
     margin: 0;
}
/* Ajuste fino para o suporte do personal */
 .personal-support {
     justify-content: center;
    /* Centraliza no card */
     margin-bottom: 20px;
     font-weight: 600;
     font-size: 18px;
     color: var(--warning);
}
 .modal-close {
     position: absolute;
     top: 15px;
     right: 15px;
     background: transparent;
     border: none;
     color: var(--text-muted);
     font-size: 24px;
     cursor: pointer;
     transition: color 0.2s;
}
 .modal-close:hover {
     color: var(--neon-pink);
}
 .modal-personalizar-content p {
     margin-bottom: 25px;
}
/* Controle de Quantidade */
 .personalize-controls {
     display: flex;
     flex-direction: column;
     align-items: center;
     margin-bottom: 30px;
}
 .quantity-selector {
     display: flex;
     align-items: center;
     background: rgba(0, 0, 0, 0.4);
     border: 1px solid var(--border-color);
     border-radius: 8px;
     overflow: hidden;
}
 .quantity-selector button {
     background: transparent;
     border: none;
     color: var(--primary-blue);
     font-size: 24px;
     width: 40px;
     height: 40px;
     cursor: pointer;
     transition: background 0.2s;
}
 .quantity-selector button:hover {
     background: rgba(106, 154, 255, 0.2);
}
 .quantity-selector span {
     font-size: 24px;
     font-weight: 700;
     color: #fff;
     width: 50px;
     text-align: center;
}
 .quantity-label {
     margin-top: 10px;
     color: var(--text-light);
     font-size: 14px;
     text-transform: uppercase;
     letter-spacing: 1px;
}
/* Área de Preços */
 .personalize-pricing {
     background: rgba(0, 0, 0, 0.3);
     border-radius: 8px;
     padding: 15px 20px;
     margin-bottom: 20px;
}
 .price-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 10px;
     color: var(--text-light);
}
 .price-row:last-child {
     margin-bottom: 0;
}
 .highlight-text {
     color: #fff;
     font-weight: 600;
}
 .total-row {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 10px;
     margin-top: 10px;
}
 .highlight-total {
     color: var(--success);
     font-size: 24px;
     font-weight: 800;
}
 .personalize-alert {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 12px;
     color: var(--warning);
     background: rgba(255, 213, 0, 0.1);
     padding: 10px;
     border-radius: 4px;
     text-align: left;
}
/* --- TOOLTIP DE QUANTIDADE MÁXIMA --- */
 .qty-tooltip {
     position: absolute;
     bottom: 120%;
    /* Fica um pouco acima do input */
     left: 50%;
     transform: translateX(-50%);
     background-color: rgba(255, 213, 0, 0.95);
    /* Amarelo alerta */
     color: #000;
     padding: 6px 12px;
     border-radius: 4px;
     font-size: 11px;
     font-weight: 700;
     white-space: nowrap;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease, visibility 0.3s ease;
     pointer-events: none;
    /* Para não atrapalhar o clique */
     z-index: 10;
     box-shadow: 0 4px 8px rgba(0,0,0,0.4);
     font-family: var(--font-text);
}
/* Setinha apontando para baixo */
 .qty-tooltip::after {
     content: '';
     position: absolute;
     top: 100%;
     left: 50%;
     margin-left: -5px;
     border-width: 5px;
     border-style: solid;
     border-color: rgba(255, 213, 0, 0.95) transparent transparent transparent;
}
/* Classe que o JS vai adicionar para mostrar a tooltip */
 .qty-tooltip.show {
     opacity: 1;
     visibility: visible;
}
 .strikethrough {
     text-decoration: line-through;
     font-style: italic;
     font-weight: bold;
     font-size: 16px;
}
/* ========================================================= SEÇÃO: SUPORTE A INCIDENTES (IR) ========================================================= */
 .support {
     position: relative;
     color: var(--text-light);
     overflow: hidden;
}
/* Camada escura degradê sobre a imagem de fundo para dar leitura aos textos */
 .support::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, rgba(5, 15, 30, 0.95) 0%, rgba(5, 15, 30, 0.7) 100%);
     z-index: 1;
}
 .support .container {
     position: relative;
     z-index: 2;
}
 .support h1.container-title {
     font-size: 3.5em;
     margin-bottom: 10px;
     text-align: center;
}
 .support-subtitle {
     color: var(--polenta);
     text-align: center;
     font-size: 1.5rem;
     font-weight: 600;
     margin-bottom: 40px;
}
 .support-intro {
     max-width: 70%;
     margin: 0 0 50px 0;
     text-align: left;
     font-size: 15px;
     line-height: 1.6;
     text-align: justify;
}
 .support-highlight {
     color: var(--polenta);
     text-align: left;
     font-weight: 600;
     font-size: 16px;
     margin-top: 30px;
}
 .support-intro p {
     margin-bottom: 20px;
}
 .support-highlight {
     text-align: center !important;
     margin-bottom: 20px;
}
/* --- TABELA DE PREÇOS HTML --- */
 .ir-table-container {
     background: rgba(10, 17, 40, 0.8);
     border: 1px solid var(--border-color);
     border-radius: 12px;
     padding: 10px 25px;
     max-width: 100%;
     margin: 0 auto;
     backdrop-filter: blur(8px);
}
 .ir-table-header {
     display: grid;
     grid-template-columns: 1.5fr 1.2fr 1.5fr 1.2fr 1.5fr;
     padding: 20px 10px;
     border-bottom: 1px solid rgba(255,255,255,0.1);
     color: var(--neon-cyan);
     font-weight: 700;
     font-size: 13px;
     letter-spacing: 1px;
     text-transform: uppercase;
}
 .ir-table-row {
     display: grid;
     grid-template-columns: 1.5fr 1.2fr 1.5fr 1.2fr 1.5fr;
     align-items: center;
     padding: 25px 10px;
     border-bottom: 1px solid rgba(255,255,255,0.05);
     position: relative;
     transition: background 0.3s;
}
 .ir-table-row:last-child {
     border-bottom: none;
}
 .ir-table-row:hover {
     background: rgba(255,255,255,0.03);
}
/* Colunas Internas */
 .ir-col {
     display: flex;
     align-items: center;
     gap: 15px;
}
 .ir-col.text-center {
     justify-content: center;
     flex-direction: column;
     gap: 2px;
}
 .ir-col.indication {
     gap: 15px;
}
 .ir-col.plan-price {
     font-weight: bold;
     align-items: baseline;
     gap: 4px;
}
 .btn-col {
     justify-content: flex-end;
}
/* Tipografia da Tabela */
 .plan-name i {
     font-size: 26px;
     color: var(--neon-cyan);
     width: 35px;
     text-align: center;
}
 .plan-name span {
     font-size: 18px;
     font-weight: 700;
     color: #fff;
}
 .ir-big-num {
     font-size: 34px;
     font-weight: 800;
     line-height: 1;
}
 .ir-sub-text {
     font-size: 12px;
     color: var(--text-muted);
}
 .indication i {
     font-size: 26px;
     color: var(--neon-cyan);
     width: 35px;
     text-align: center;
}
 .indication span {
     font-size: 13px;
     color: var(--text-light);
     line-height: 1.4;
}
 .plan-price .currency {
     font-size: 16px;
}
 .plan-price .value {
     font-size: 28px;
}
 .plan-price .cents {
     font-size: 16px;
}
/* Cores Utilitárias */
 .text-cyan {
     color: var(--neon-cyan);
     text-shadow: var(--shadow-glow-cyan);
}
 .text-purple {
     color: #d400ff;
     text-shadow: 0 0 10px rgba(212, 0, 255, 0.4);
}
/* Linha de Destaque (IR Priority) */
 .highlight-purple {
     background: rgba(123, 47, 255, 0.05);
     border: 1px solid #7b2fff;
     border-radius: 8px;
     margin: 10px 0;
     box-shadow: inset 0 0 20px rgba(123, 47, 255, 0.1);
}
 .highlight-purple:hover {
     background: rgba(123, 47, 255, 0.1);
}
 .highlight-purple .plan-name i, .highlight-purple .indication i {
     color: #d400ff;
}
 .ir-badge {
     position: absolute;
     top: -12px;
     right: 20px;
     background: #7b2fff;
     color: #fff;
     font-size: 10px;
     font-weight: 800;
     padding: 4px 12px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     gap: 5px;
     box-shadow: 0 0 10px rgba(123, 47, 255, 0.5);
}
/* Botões da Tabela */
 .btn-outline-cyan {
     background: transparent;
     border: 1px solid var(--neon-cyan);
     color: var(--neon-cyan);
     padding: 10px 20px;
     border-radius: 6px;
     font-size: 13px;
     transition: all 0.3s;
     text-decoration: none;
     font-weight: 600;
}
 .btn-outline-cyan:hover {
     background: rgba(0, 229, 255, 0.15);
     box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}
 .btn-outline-purple {
     background: transparent;
     border: 1px solid #d400ff;
     color: #d400ff;
     padding: 10px 20px;
     border-radius: 6px;
     font-size: 13px;
     transition: all 0.3s;
     text-decoration: none;
     font-weight: 600;
}
 .btn-outline-purple:hover {
     background: rgba(212, 0, 255, 0.15);
     box-shadow: 0 0 15px rgba(212, 0, 255, 0.3);
}
/* Responsividade Mobile (Empilha a tabela) */
 @media (max-width: 950px) {
     .hidden-mobile {
         display: none;
    }
     .ir-table-row {
         grid-template-columns: 1fr;
         gap: 20px;
         padding: 30px 20px;
         text-align: center;
         border: 1px solid rgba(255,255,255,0.1);
         border-radius: 8px;
         margin-bottom: 20px;
         background: rgba(0,0,0,0.2);
         overflow: visible !important;
        }
        .ir-col {
            justify-content: center;
        }
        .ir-col.indication {
            flex-direction: column;
         gap: 5px;
    }
     .btn-col {
         justify-content: center;
         margin-top: 5px;
        }
     .ir-badge {
         right: 50%;
         transform: translateX(50%);
         z-index: 999 !important;
    }
}
/* ========================================================= SEÇÃO: SOBRE NÓS ========================================================= */
 .about-section {
     position: relative;
     overflow: hidden;
     padding: var(--spacing-xl) var(--spacing-md);
     background-image: linear-gradient(135deg, rgba(5, 15, 30, 0.9), rgba(2, 5, 15, 0.95)), url('https://cdn.overnine.com.br/e37f516faca8/assets/img/bg/sections/14.png');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     text-align: left;
    /* Alinhamento geral à esquerda conforme imagem 2 */
}
 .about-container {
     position: relative;
     z-index: 2;
     display: grid;
     grid-template-columns: 1fr 1.3fr;
     gap: 80px;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
}
 .about-logo {
     display: flex;
     justify-content: center;
     align-items: center;
}
 .about-logo img {
     max-width: 100%;
     height: auto;
     opacity: 1;
     margin: 0;
     filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.05));
}
 .about-content {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     text-align: left;
}
 .about-title {
     grid-column: 1 / -1;
     font-size: 3.5rem;
     color: #fff;
     text-align: center;
    /* Centralizado conforme solicitado */
     margin-bottom: 20px;
     font-weight: 700;
     font-family: var(--font-title);
     width: 100%;
}
/* Cartão Branco */
 .about-card {
     background-color: transparent !important;
     margin: 0;
     width: 100%;
     border-radius: 0;
     padding: 0;
     color: var(--text-light);
     box-shadow: none !important;
}
 .about-card p {
     line-height: 1.7;
     text-align: center;
     margin-bottom: 25px;
     color: var(--text-light);
     font-family: var(--font-text);
     font-size: 1.05rem;
}
/* Ícones dos Pilares (Versão Dark Neon) */
 .about-pillars {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 35px;
     padding-top: 0;
     width: 100%;
     gap: 20px;
}
 .pillar {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 12px;
     flex: 1;
}
 .pillar i {
     font-size: 32px;
     color: #fff;
    /* Aplica o efeito sutil de glow branco/ciano nos ícones circulares */
     filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
     transition: transform 0.3s ease;
}
 .pillar:hover i {
     transform: scale(1.1);
     color: var(--neon-cyan);
     filter: drop-shadow(0 0 10px var(--neon-cyan));
}
 .pillar span {
     font-size: 13px;
     font-weight: 500;
     color: var(--text-light);
     text-align: center;
     font-family: var(--font-text);
}
/* --- Responsividade (Mobile) --- */
 @media (max-width: 900px) {
    .enterprise-grid, .about-container { grid-template-columns: 1fr; gap: 40px; }
    .enterprise-content { text-align: center; }
    .about-logo img { max-width: 55%; margin: 0 auto; }
    .about-card { padding: 30px 20px; margin-left: 0; width: 100%; }
    .about-pillars { flex-wrap: wrap; gap: 25px; justify-content: center; }
    .pillar { min-width: 40%; margin-bottom: 10px; }
    .sec-recursos-css .item-recurso { width: calc(50% - 10px); min-width: 0; }
    .about-title { font-size: 2.5rem; margin-bottom: 10px; }
    .about-content { align-items: center; }
    .about-card p { text-align: center; }
}
/* ========================================= CONTAINER PRINCIPAL DO FLUXO ========================================= */
 .cyber-workflow {
     width: 100%;
     max-width: 1400px;
     margin: 0 auto;
}
 .workflow-grid {
     display: grid;
     grid-template-columns: repeat(7, 1fr);
     gap: 20px;
     position: relative;
     padding-bottom: 50px;
     margin-top: 50px;
     margin-bottom: 250px;
     width: 85vw;
     left: 50%;
     transform: translateX(-50%);
}
/* ========================================= ESTILO DOS flux-CARDS (GLASSMORPHISM) ========================================= */
 .flux-card {
    /* Fundo gradiente translúcido simulando o reflexo e a espessura do vidro */
     background: linear-gradient(135deg, rgba(02, 90, 120, 0.7) 0%, rgba(33, 66, 105, 0.4) 20%);
    /* Bordas assimétricas para simular a luz batendo na quina superior esquerda */
     border: 1px solid rgba(0, 243, 255, 0.15);
     border-top: 1px solid rgba(255, 255, 255, 0.15);
     border-left: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 12px;
     padding: 20px 15px;
     position: relative;
    /* O Segredo do Vitral: Desfoque alto + Aumento de Saturação */
     backdrop-filter: blur(4px) saturate(180%);
     -webkit-backdrop-filter: blur(16px) saturate(180%);
    /* Sombra externa (profundidade) + Sombra interna (volume do vidro) */
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(0, 243, 255, 0.05);
     transition: all 0.3s ease;
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
}
 .flux-card:hover {
    /* Fica levemente mais claro/iluminado ao passar o mouse */
     background: linear-gradient(135deg, rgba(14, 21, 40, 0.8) 0%, rgba(0, 243, 255, 0.1) 100%);
     border-color: var(--neon-cyan);
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8), inset 0 0 30px rgba(0, 243, 255, 0.2);
     transform: translateY(-5px);
}
/* Ícones dos flux-cards */
 .flux-card-icon {
     font-size: 48px;
     color: var(--neon-cyan);
     margin-bottom: 15px;
     filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.5));
}
/* Títulos e Textos */
 .flux-card h3 {
     font-size: 14px;
     font-weight: 700;
     color: #fff;
     margin-bottom: 10px;
     line-height: 1.3;
}
 .flux-card p {
    /* color: var(--text-muted);
     */
     line-height: 1.5;
     margin-top: 10px;
}
/* Estilo das Listas (Cards 1 e 7) */
 .flux-card ul {
     list-style: none;
     text-align: left;
     width: 100%;
     margin-top: 5px;
}
 .flux-card ul li {
    /* font-size: 11px;
     */
     color: var(--text-muted);
     margin-bottom: 6px;
     position: relative;
     padding-left: 12px;
}
 .flux-card ul li::before {
     content: '>';
     font-family: 'Inter' !important;
     position: absolute;
     left: 0;
     color: var(--neon-blue);
     font-weight: bold;
}
/* ========================================= SETAS LINEARES DO FLUXO (1 -> 2 -> ... -> 7) ========================================= */
 .flux-card:not(:last-child)::after {
     content: '\203A';
     font-weight: 400;
     font-family: sans-serif !important;
     position: absolute;
    /* --- NOVO: Fica no centro exato do gap de 20px, evita desalinhamento --- */
     right: -10px;
     top: 50%;
     transform: translate(50%, -50%);
     color: var(--neon-blue);
     font-size: 48px;
     z-index: 2;
     text-shadow: 0 0 10px rgba(0, 102, 255, 0.8);
}
/* ========================================= A SETA RECURSIVA (Card 6 -> flux-Card 2) ========================================= */
 .recursive-line {
     position: absolute;
     bottom: 10px;
    /* A mágica da matemática: Cada flux-card é ~14.28%. Começa no meio do flux-card 2 (14.28 + 7.14 = 21.4%) Largura = 4 colunas exatas (4 * 14.28 = 57.1%) */
     left: 21.4%;
     width: 57.1%;
     height: 30px;
     border: 2px dashed var(--neon-cyan);
     border-top: none;
     border-radius: 0 0 12px 12px;
     opacity: 0.8;
     pointer-events: none;
}
/* Ponta da seta apontando para o flux-Card 2 */
 .recursive-line::before {
     content: '';
     position: absolute;
     top: -10px;
     left: -7px;
     border-bottom: 10px solid var(--neon-cyan);
     border-left: 6px solid transparent;
     border-right: 6px solid transparent;
     filter: drop-shadow(0 0 5px var(--neon-cyan));
}
/* Ponto de origem saindo do flux-Card 6 */
 .recursive-line::after {
     content: '';
     position: absolute;
     top: -5px;
     right: -5px;
     width: 10px;
     height: 10px;
     background: var(--neon-cyan);
     border-radius: 50%;
     box-shadow: 0 0 10px var(--neon-cyan);
}
/* ========================================= RESPONSIVIDADE (MOBILE / TABLET) ========================================= */
 @media (max-width: 1100px) {
    /* Altera de horizontal para vertical */
     .workflow-grid {
         grid-template-columns: 1fr;
         gap: 25px;
         padding-bottom: 0;
         padding-left: 40px;
        /* Espaço na esquerda para a linha recursiva */
         width: 100%;
         left: 0;
         transform: none;
         margin-bottom: 50px;
    }
     .flux-card {
         align-items: flex-start;
         text-align: left;
         padding: 20px 25px;
    }
     .flux-card-icon {
         margin-bottom: 10px;
    }
    /* Muda as setas do fluxo para apontar para baixo */
     .flux-card:not(:last-child)::after {
         content: '\2193';
        /* Seta universal para baixo (↓) */
         font-family: sans-serif !important;
         font-size: 24px;
         right: auto;
         left: 50%;
         top: auto;
        /* Coloca a seta EXATAMENTE no meio do gap de 25px (12.5px para baixo) */
         bottom: -12.5px;
         transform: translate(-50%, 50%);
    }
    /* Reajusta a linha recursiva para a lateral (Card 6 subindo pro 2) */
     .recursive-line {
        /* Aproximação vertical: do meio do flux-card 2 até o meio do flux-card 6 */
         top: 22%;
         height: 56%;
         left: 15px;
         width: 25px;
        /* Curva para dentro em direção aos flux-cards */
         border: 2px dashed var(--neon-cyan);
         border-right: none;
         border-radius: 12px 0 0 12px;
         bottom: auto;
    }
    /* Ponta da seta apontando para a direita no flux-Card 2 */
     .recursive-line::before {
         top: -6px;
         right: -10px;
         left: auto;
         border-left: 10px solid var(--neon-cyan);
         border-top: 6px solid transparent;
         border-bottom: 6px solid transparent;
         border-right: none;
    }
    /* Ponto de origem saindo do flux-Card 6 */
     .recursive-line::after {
         bottom: -5px;
         right: -5px;
         top: auto;
    }
}

/* ==========================================================================
   14. SYSTEM BREAKPOINTS & RESPONSIVE INTERFACE (MOBILE FIXES)
   ========================================================================== */

@media (max-width: 1100px) {
    /* --- FLUXO DE MONITORAMENTO --- */
    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 0;
        padding-left: 45px;
        width: 100%;
        left: 0;
        transform: none;
        margin-top: 40px;
        margin-bottom: 40px !important; /* Garante respiro abaixo da grid */
    }

    /* Trava de Segurança: Anula o margin-top: -230px inline do seu HTML */
    .how-works h1[data-i18n="how-works.subtitle"],
    .workflow-subtitle {
        margin-top: 50px !important; 
        position: relative;
        z-index: 10;
        display: block;
    }

    .flux-card { align-items: flex-start; text-align: left; padding: 25px; }
    .flux-card-icon { margin-bottom: 15px; }

    .flux-card:not(:last-child)::after {
        content: '\2193';
        font-family: sans-serif !important;
        font-size: 24px;
        right: auto; left: 50%; top: 100%;
        bottom: auto;
        margin-top: 17.5px;
        transform: translate(-50%, -50%);
    }

    .recursive-line {
        top: 22%; height: 56%; left: 15px; width: 25px;
        border: 2px dashed var(--neon-cyan);
        border-right: none;
        border-radius: 12px 0 0 12px;
        bottom: auto;
    }

    .recursive-line::before {
        top: -6px; right: -10px; left: auto;
        border-left: 10px solid var(--neon-cyan);
        border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-right: none;
    }
    .recursive-line::after { bottom: -5px; right: -5px; top: auto; }
}

@media (max-width: 950px) {
    /* --- REDESIGN PREMIUM DOS CARDS DE SUPORTE (IR) PARA MOBILE --- */
    .hidden-mobile { display: none; }
    
    .ir-table-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 25px 30px;
        text-align: center;
        
        /* Nova Estética: Profundidade e Luz */
        background: linear-gradient(145deg, rgba(14, 21, 40, 0.95), rgba(5, 8, 17, 1));
        border: 1px solid rgba(0, 243, 255, 0.15);
        border-radius: 16px;
        margin-bottom: 25px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.6), inset 0 2px 15px rgba(0, 243, 255, 0.05);
        position: relative;
        overflow: hidden;
    }

    /* Linha de luz neon no topo do card */
    .ir-table-row::before {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 3px;
        background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    }

    .ir-table-row.highlight-purple {
        background: linear-gradient(145deg, rgba(30, 10, 50, 0.95), rgba(10, 5, 20, 1));
        border-color: rgba(212, 0, 255, 0.3);
        box-shadow: 0 12px 30px rgba(0,0,0,0.6), inset 0 2px 15px rgba(212, 0, 255, 0.05);
    }
    
    .ir-table-row.highlight-purple::before {
        background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
    }

    /* Melhoria tipográfica nos cards */
    .ir-col { justify-content: center; }
    .ir-col.indication { flex-direction: column; gap: 5px; margin-bottom: 10px; }
    .ir-col.plan-name span { font-size: 22px; }
    .ir-col.plan-price { margin-bottom: 10px; }
    
    /* Botões mais atraentes e largos */
    .btn-col { justify-content: center; margin-top: 10px; width: 100%; }
    .btn-col a { 
        width: 100%; 
        display: block; 
        padding: 16px; 
        font-size: 16px;
        border-radius: 8px;
        background: linear-gradient(135deg, var(--primary-blue), var(--neon-green));
        color: #fff;
        border: none;
        box-shadow: 0 4px 15px rgba(25, 201, 105, 0.4);
    }
    
    .ir-table-row.highlight-purple .btn-col a {
        background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
        box-shadow: 0 4px 15px rgba(212, 0, 255, 0.4);
    }
    
    .ir-badge { right: 50%; transform: translateX(50%); font-size: 11px; padding: 6px 18px; top: -14px; z-index: 99; }

    .ir-table-footer { flex-direction: column; gap: 30px; align-items: flex-start; padding: 30px 20px; margin-top: 30px; }
    .ir-footer-divider { display: none; }
    .ir-footer-item { width: 100%; }
}

@media (max-width: 900px) {
    .enterprise-grid, .about-container { grid-template-columns: 1fr; gap: 40px; }
    .enterprise-content { text-align: center; }
    .about-logo img { max-width: 55%; margin: 0 auto; }
    .about-card { padding: 30px 20px; margin-left: 0; width: 100%; }
    .about-pillars { flex-wrap: wrap; gap: 25px; justify-content: center; }
    .pillar { min-width: 40%; margin-bottom: 10px; }
    .sec-recursos-css .item-recurso { width: calc(50% - 10px); min-width: 0; }
    .about-title { font-size: 2.5rem; margin-bottom: 10px; }
    .about-content { align-items: center; }
    .about-card p { text-align: center; }
}

@media (max-width: 768px) {
    /* --- TÍTULO "PERSONAL" CENTRALIZADO (Sobrescrevendo o HTML Inline) --- */
    #pricing-personal .container-subtitle {
        text-align: center !important;
        margin: 15px 0 35px 0 !important;
        width: 100%;
        display: block;
    }

    .menu-toggle { display: block; }
    
    .header-content { 
        flex-direction: row; 
        flex-wrap: nowrap;
        justify-content: space-between; 
        align-items: center; 
        gap: 15px;
    }
    
    .logo-brand-container { display: none; }
    
    .logo-product-container { 
        position: static; 
        transform: none; 
        display: flex;
        justify-content: center;
        flex: 1; 
    }
    
    .logo-product { max-height: 35px; width: auto; }
    
    .lang-selector { margin: 0; gap: 6px; flex-shrink: 0; }
    .lang-flag { width: 22px; height: auto; }

    .nav {
        flex-direction: column; gap: var(--spacing-md); width: 100%;
        position: absolute; top: 100%; left: 0;
        background-color: #090909; padding: 0; opacity: .95; font-size: 1.1em;
        max-height: 0; overflow: hidden; transition: max-height 0.15s ease-in-out, padding 0.2s ease-in-out;
        z-index: 50;
    }
    .nav a { display: block; text-align: center; padding: 15px 100%; border-bottom: none; }
    .nav.active { max-height: 300px; padding: var(--spacing-lg) 0; }

    .sec-recursos-css { position: relative; overflow: hidden; }
    .sec-recursos-css .bg-section {
        top: 0 !important; left: 0 !important;
        transform: none !important; height: 100% !important;
        object-fit: cover;
    }

    .recurso-img { max-height: 80px; margin-bottom: 15px; }

    .container-megatitle { font-size: 2.2rem; line-height: 1.3; }
    .container-title { font-size: 2.5rem; line-height: 1.2; }
    .container-subtitle { font-size: 2rem; line-height: 1.2; }
    .hero h1, .map h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; margin-bottom: 30px; }

    .support-intro { max-width: 100%; text-align: left; margin-bottom: 40px; }
    .support-highlight { text-align: center !important; font-size: 1.1rem; }

    .pricing-card.popular { transform: scale(1); }
    .faq h2 { font-size: 1.8rem; }
    .enterprise-content h2 { font-size: 1.8rem; }
    
    .personal-card-middle { flex-direction: column; gap: 25px; }
    .personal-card-left { align-items: center; text-align: center; }
    .personal-card-right .features-list { margin: 0 auto; }
}

@media (max-width: 576px) {
    .sec-recursos-css .item-recurso { width: 100%; }
}

@media (max-width: 480px) {
    .container { padding: 0 var(--spacing-sm); }
    .hero h1 { font-size: 2rem; }
    .subtitle { font-size: 16px; }
    .btn { padding: 10px 16px; font-size: 13px; }
    .pricing-cards { grid-template-columns: 1fr; }
    .price-value { font-size: 28px; }
}

/* ==========================================================================
   15. ANIMATIONS SYSTEM KEYS
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}