:root {
    --bg-main: #040A19;
    --primary: #0AE66E;
    --primary-glow: rgba(10, 230, 110, 0.5);
    --text-main: #FFFFFF;
    --text-sec: #B7C0CC;
    --border-color: #162338;
    --card-bg: #0C1528;
    
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.038) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.038) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: center top;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h2 span, h1 span {
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.mt-medium { margin-top: 2rem; }
.mt-large { margin-top: 4rem; }
.mb-large { margin-bottom: 4rem; }
.neon-text { color: var(--primary); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(90deg, #0AE66E 0%, #08b858 100%);
    color: #040A19;
    box-shadow: 0 0 20px rgba(10, 230, 110, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(10, 230, 110, 0.6);
    transform: translateY(-2px);
}

.btn-secondary-glow {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(10, 230, 110, 0.4);
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(10, 230, 110, 0.15);
}

.btn-secondary-glow:hover {
    background: rgba(10, 230, 110, 0.15);
    border-color: #0AE66E;
    color: #0AE66E;
    box-shadow: 0 0 25px rgba(10, 230, 110, 0.35);
    transform: translateY(-2px);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-main);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    height: 140px; /* Mesma lógica do header */
    width: auto;
    margin: -50px 0;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 15px rgba(10, 230, 110, 0.5)); }
    100% { transform: scale(1); opacity: 0.8; }
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    padding: 20px 0;
    backdrop-filter: blur(10px);
    background: rgba(4, 10, 25, 0.8);
    border-bottom: 1px solid var(--border-color);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 140px;
    width: auto;
    object-fit: contain;
}

.header .logo-img {
    margin: -50px 0;
}

.desktop-nav {
    display: flex;
    gap: 32px;
    position: relative;
}

.desktop-nav a {
    color: var(--text-sec);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    padding-bottom: 4px;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--text-main);
}

.header .btn {
    padding: 11px 24px;
    font-size: 0.95rem;
}

.desktop-nav a.active {
    font-weight: 600;
}

.nav-indicator {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease-out;
    z-index: 1;
}

.mobile-menu-btn, .mobile-menu-close {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Usa viewport dinâmica para não cortar no Safari */
    background: rgba(4, 10, 25, 0.98);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-logo {
    height: 140px; /* Compensa o espaço em branco da imagem da logo */
    width: auto;
    margin: -50px 0;
}

.mobile-menu-close {
    display: block;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    padding: 32px 24px 44px; /* Padding ajustado para não deixar gap excessivo abaixo do botão */
    overflow-y: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.mobile-nav-links a {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--primary);
}

.mobile-nav-footer {
    padding-top: 24px;
    margin-top: auto;
    width: 100%;
}

.mobile-nav-footer .btn {
    padding: 18px 24px !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    width: 100%;
    box-shadow: 0 0 25px rgba(10, 230, 110, 0.45);
    letter-spacing: 0.3px;
    border-radius: 50px;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.glow-bg {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(4, 10, 25, 0) 70%);
    z-index: -1;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-sec);
    margin-bottom: 40px;
}

/* VSL Section */
.vsl-section {
    padding: 40px 0 100px;
}

.vsl-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.vsl-content {
    max-width: 800px;
    margin: 0 auto;
}

.vsl-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.vsl-content p {
    color: var(--text-sec);
    font-size: 1.1rem;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #162338, #0C1528);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(10,230,110,0.1) 0%, transparent 70%);
}

.play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bg-main);
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(10, 230, 110, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 2;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(10, 230, 110, 0.7);
}

/* Cenario */
.cenario {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

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

.cenario-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.cenario-text p {
    color: var(--text-sec);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.glass-card {
    background: rgba(12, 21, 40, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
}

.cenario-mockup {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.cenario-mockup::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary-glow);
    filter: blur(100px);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.chat-line {
    background: var(--bg-main);
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

/* Plataforma */
.plataforma {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-main), #080f1e);
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-sec);
    max-width: 600px;
    margin: 0 auto;
}

.plataforma-showcase {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.mockup-large {
    background: var(--card-bg);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.dashboard-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.plataforma-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.feature-card i {
    font-size: 2rem;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

/* Como funciona */
.como-funciona {
    padding: 100px 0;
}

.flow-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.flow-step {
    text-align: center;
    flex: 1;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
    color: var(--text-sec);
    transition: all 0.3s;
}

.flow-step p {
    font-size: 0.95rem;
    font-weight: 500;
}

.flow-arrow {
    color: var(--border-color);
    font-size: 1.5rem;
}

.glow-step .step-icon {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(10, 230, 110, 0.2);
}

/* Video Plataforma */
.video-plataforma {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

.secondary-video {
    max-width: 900px;
    margin: 0 auto;
}

/* Recursos */
.recursos {
    padding: 100px 0;
}

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

.recurso-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 24px;
    transition: all 0.3s;
}

.recurso-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.recurso-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 24px;
    display: inline-block;
}

.recurso-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.recurso-card p {
    color: var(--text-sec);
    font-size: 0.95rem;
}

/* Para Quem */
.para-quem {
    padding: 100px 0;
    background: var(--card-bg);
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tag {
    padding: 12px 24px;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}

.tag:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Por Que Mudar */
.por-que-mudar {
    padding: 100px 0;
}

.benefits-list {
    max-width: 600px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--card-bg);
    padding: 20px 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.benefit-item i {
    font-size: 1.5rem;
}

.benefit-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

.conclusion-text {
    font-size: 1.5rem;
}

/* Depoimentos */
.depoimentos {
    padding: 100px 0;
    background: linear-gradient(to top, var(--bg-main), #080f1e);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.depoimento-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 24px;
    position: relative;
}

.depoimento-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: var(--font-heading);
}

.quote {
    font-size: 1.1rem;
    color: var(--text-sec);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

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

.avatar {
    width: 48px;
    height: 48px;
    background: var(--border-color);
    border-radius: 50%;
}

.author strong {
    display: block;
    font-size: 1rem;
}

.author span {
    color: var(--text-sec);
    font-size: 0.85rem;
}

/* Investimento / Planos (SaaS Layout) */
.investimento {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.investimento::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 230, 110, 0.09) 0%, rgba(4, 10, 25, 0) 70%);
    filter: blur(90px);
    z-index: 0;
    pointer-events: none;
}

.investimento .container {
    position: relative;
    z-index: 1;
}

/* Container do Seletor Mensal / Anual */
.pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 24px auto 0;
}

.toggle-label {
    font-size: 1rem;
    color: var(--text-sec);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.toggle-label.active {
    color: var(--text-main);
    font-weight: 700;
}

.toggle-badge {
    background: rgba(10, 230, 110, 0.18);
    color: var(--primary);
    border: 1px solid rgba(10, 230, 110, 0.4);
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-toggle-btn {
    width: 56px;
    height: 28px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
}

.pricing-toggle-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(10, 230, 110, 0.5);
}

.toggle-circle {
    position: absolute;
    top: 3px;
    left: 4px;
    width: 20px;
    height: 20px;
    background: #FFFFFF;
    border-radius: 50%;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.pricing-toggle-btn.active .toggle-circle {
    transform: translateX(26px);
    background: #040A19;
}

/* Card Principal de Preços em Destaque (Centrado e Compacto) */
.saas-pricing-container {
    max-width: 540px;
    margin: 24px auto 0;
}

/* Cards SaaS com Efeito 3D, Shimmer e Glow Neon */
.saas-card {
    background: linear-gradient(165deg, rgba(18, 29, 51, 0.88) 0%, rgba(10, 18, 33, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 56px 32px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    backdrop-filter: blur(16px);
}

/* Aura de luz no topo do card (Spotlight) */
.saas-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(10, 230, 110, 0.15) 0%, transparent 70%);
    opacity: 0.6;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

/* Efeito Shimmer (feixe de luz que atravessa o card no hover) */
.saas-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        115deg,
        transparent 40%,
        rgba(255, 255, 255, 0.12) 47%,
        rgba(10, 230, 110, 0.22) 50%,
        transparent 56%
    );
    transition: left 0.75s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
    z-index: 1;
}

/* Garante que o conteúdo fique acima do brilho de fundo */
.saas-card > * {
    position: relative;
    z-index: 2;
}

/* Animação de pulso contínuo para o card em destaque */
@keyframes featuredPulse {
    0%, 100% {
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 30px rgba(10, 230, 110, 0.15);
    }
    50% {
        box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55), 0 0 45px rgba(10, 230, 110, 0.3);
    }
}

.saas-card.featured {
    border-color: rgba(10, 230, 110, 0.45);
    border-top: 1px solid rgba(10, 230, 110, 0.8);
    background: linear-gradient(165deg, rgba(22, 38, 66, 0.92) 0%, rgba(10, 19, 36, 0.98) 100%);
    animation: featuredPulse 4s infinite ease-in-out;
}

.saas-card.featured::before {
    background: radial-gradient(circle, rgba(10, 230, 110, 0.25) 0%, transparent 70%);
    opacity: 0.9;
}

/* Estado Hover: Elevação 3D, Brilho Intenso e Passagem de Luz */
.saas-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(10, 230, 110, 0.85);
    border-top-color: rgba(10, 230, 110, 1);
    box-shadow: 
        0 25px 55px rgba(0, 0, 0, 0.65),
        0 0 40px rgba(10, 230, 110, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.saas-card:hover::before {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
}

.saas-card:hover::after {
    left: 150%;
}

/* Faixa Superior (Ribbon) no Topo do Card de Preços */
.card-top-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #0AE66E 0%, #00D160 100%);
    color: #040A19;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(10, 230, 110, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

/* Efeitos Suaves de Transição ao Alternar Plano (Mensal vs Anual) */
.saas-card-content-wrapper {
    transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.2s ease;
}

.saas-card.switching .saas-card-content-wrapper {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    filter: blur(5px);
}

.saas-card.switching .card-top-ribbon {
    transform: translateY(-100%);
    opacity: 0;
}

@keyframes planSwitchFlash {
    0% {
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 30px rgba(10, 230, 110, 0.15);
        border-color: rgba(10, 230, 110, 0.45);
    }
    50% {
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 75px rgba(10, 230, 110, 0.7);
        border-color: rgba(10, 230, 110, 1);
    }
    100% {
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 30px rgba(10, 230, 110, 0.15);
        border-color: rgba(10, 230, 110, 0.45);
    }
}

.saas-card.switching-flash {
    animation: planSwitchFlash 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.saas-card-header {
    margin-bottom: 16px;
}

.saas-card-title {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.saas-card-subtitle {
    font-size: 0.92rem;
    color: var(--text-sec);
    line-height: 1.45;
}

.saas-price-box {
    margin-bottom: 18px;
}

.saas-price-tag {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 6px;
}

.saas-price-value {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.saas-price-value span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-sec);
}

.saas-price-sub {
    font-size: 0.95rem;
    color: var(--text-sec);
    margin-top: 6px;
}

.saas-price-sub strong {
    color: #E2E8F0;
    font-weight: 600;
}

.saas-card-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 0 18px 0;
}

.saas-features-header {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
}

.saas-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.saas-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-sec);
    line-height: 1.35;
}

.saas-features-list li i {
    font-size: 1.15rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Bloco de Apoio Abaixo (Banner SaaS Compacto) */
.saas-support-banner {
    max-width: 920px;
    margin: 28px auto 0;
    background: linear-gradient(160deg, rgba(14, 25, 46, 0.85) 0%, rgba(8, 15, 28, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    transition: border-color 0.4s ease, transform 0.4s ease;
}

.saas-support-banner:hover {
    border-color: rgba(10, 230, 110, 0.4);
    transform: translateY(-4px);
}

.support-banner-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.support-banner-right {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.support-banner-right .saas-features-list {
    margin-bottom: 20px;
}

.support-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.support-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-main);
    line-height: 1.25;
}

.support-description {
    font-size: 0.95rem;
    color: var(--text-sec);
    line-height: 1.55;
    margin-bottom: 18px;
}

.support-highlight-box {
    background: rgba(10, 230, 110, 0.05);
    border-left: 3px solid var(--primary);
    padding: 14px 18px;
    border-radius: 0 14px 14px 0;
}

.support-highlight-box p {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 6px;
}

.support-highlight-box p:last-child {
    margin-bottom: 0;
    color: var(--text-sec);
    font-size: 0.88rem;
}

@media (max-width: 992px) {
    .saas-support-banner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .investimento {
        padding: 50px 0;
    }

    .saas-card {
        padding: 52px 20px 24px;
    }

    .btn {
        padding: 14px 16px;
        font-size: 0.92rem;
        gap: 6px;
        white-space: nowrap;
    }
    
    .saas-price-value {
        font-size: 2.4rem;
    }

    .saas-support-banner {
        padding: 24px 18px;
    }

    .support-banner-right {
        padding: 20px 16px;
    }

    .support-title {
        font-size: 1.5rem;
    }

    .pricing-toggle-wrapper {
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* FAQ */
.faq {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.faq-header p {
    font-size: 1.1rem;
    color: var(--text-sec);
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.accordion-item.active {
    border-color: var(--primary);
}

.accordion-header {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    text-align: left;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-sans);
}

.accordion-header i {
    color: var(--primary);
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding: 0 24px 24px;
    color: var(--text-sec);
}

/* CTA Final */
.cta-final {
    padding: 100px 0;
}

.cta-card {
    background: linear-gradient(135deg, #0C1528, #080f1e);
    border: 1px solid var(--primary);
    padding: 80px 40px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.cta-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: var(--primary-glow);
    filter: blur(150px);
    z-index: 0;
    opacity: 0.3;
}

.cta-card h2, .cta-card p, .cta-card a {
    position: relative;
    z-index: 1;
}

.cta-card h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.cta-card p {
    font-size: 1.25rem;
    color: var(--text-sec);
}

/* Footer */
.footer {
    background: var(--bg-main);
    border-top: 1px solid var(--border-color);
    padding: 40px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo p {
    color: var(--text-sec);
    margin-top: 16px;
    max-width: 300px;
}

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

.link-column h4 {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.link-column a {
    display: block;
    color: var(--text-sec);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.link-column a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    color: var(--text-sec);
    font-size: 0.85rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.developed-by a {
    color: var(--primary);
    font-weight: 500;
}

.developed-by a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .vsl-wrapper { grid-template-columns: 1fr; }
    .cenario-grid { grid-template-columns: 1fr; }
    .plataforma-showcase { grid-template-columns: 1fr; }
    .recursos-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { grid-template-columns: 1fr; }
    .flow-container { flex-direction: column; gap: 20px; }
    .flow-arrow i { 
        display: inline-block;
        transform: rotate(90deg); 
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .desktop-nav { display: none; }
    .header-actions .btn { display: none; }
    .mobile-menu-btn { display: block; }
    .recursos-grid { grid-template-columns: 1fr; }
    .depoimentos-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
    .cta-final {
        padding: 50px 0;
    }
    .cta-card {
        padding: 40px 24px;
        border-radius: 24px;
    }
    .cta-card h2 {
        font-size: 1.75rem;
        margin-bottom: 14px;
        line-height: 1.25;
    }
    .cta-card p {
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 8px;
    }
    .cta-card .btn-large {
        margin-top: 20px;
        padding: 14px 28px;
        width: 100%;
    }
    .section-header h2 { font-size: 2rem; }
    .tags-container { gap: 12px; }
    .tag { padding: 8px 16px; font-size: 0.9rem; }
}
 
 /* Floating Video (Mobile) */
.close-video-btn {
    display: none !important;
}
@media (max-width: 768px) {
    .video-container.is-floating {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 100000;
        background: rgba(4, 10, 25, 0.95);
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(5px);
        border: none;
        border-radius: 0;
        box-shadow: none;
        transition: opacity 0.3s ease;
    }
    .video-container.is-floating video {
        width: 90%;
        height: auto;
        max-height: 80vh;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    }
    .video-container.is-floating .close-video-btn {
        display: flex !important;
        position: absolute;
        top: 20px;
        right: 20px;
        left: auto;
        width: 40px;
        height: 40px;
        background: var(--bg-main);
        color: var(--text-main);
        border: 1px solid var(--border-color);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1000;
        font-size: 1.2rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    }
    .show-video-btn {
        position: relative;
        margin: 20px auto 0;
        background: var(--primary);
        color: var(--bg-main);
        border: none;
        padding: 12px 24px;
        border-radius: 30px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        z-index: 10;
        box-shadow: 0 4px 15px rgba(10, 230, 110, 0.4);
        cursor: pointer;
        transition: transform 0.3s ease;
        width: 100%;
        max-width: 250px;
    }
}
.vsl-wrapper .video-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
