:root {
    --primary-blue: #0056b3;
    --dark-blue: #002a5c;
    --deep-dark-blue: #001229;
    --light-blue: #e3f2fd;
    --white: #ffffff;
    --orange: #ff6b00;
    --text-color: #333;
    --text-light: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--deep-dark-blue);
    color: var(--text-light);
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Header */
.header {
    background-color: rgba(0, 18, 41, 0.95); /* Um pouco mais opaco */
    padding: 20px 0; /* Mais altura para o header */
    position: fixed;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

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

.header-nav {
    display: flex;
    gap: 20px;
    margin-left: auto;
    padding-right: 20px;
}

.logo-container {
    position: absolute;
    top: -40px; /* Encosta no topo da tela (20px padding - 20px top = 0) */
    left: 20px;
    z-index: 1001;
}

.nav-link {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.header-logo {
    max-height: 120px; /* Tamanho equilibrado */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.header-logo:hover {
    transform: scale(1.05);
}

/* Modais */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 5, 15, 0.92); /* Fundo mais escuro */
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    backdrop-filter: blur(8px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #0d1f36;
    width: 100%;
    max-width: 650px; /* Largura um pouco menor para elegância */
    max-height: 85vh;
    border-radius: 24px; /* Bordas mais arredondadas */
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); /* Efeito elástico suave */
}

.modal-content.glass-effect {
    background: rgba(13, 31, 54, 0.85); /* Translúcido */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0,0,0,0.8), inset 0 0 0 1px rgba(255,255,255,0.05);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: rgba(255,255,255,0.3);
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    transition: all 0.3s;
    background: rgba(0,0,0,0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 4px; /* Ajuste visual */
}

.close-modal:hover {
    color: var(--white);
    background: var(--orange);
    transform: rotate(90deg);
}

.modal-header {
    padding: 40px 30px 10px;
    text-align: center;
    border-bottom: none;
}

.modal-icon-header {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.2));
    animation: float 6s ease-in-out infinite;
}

.modal-icon-header img {
    width: 120px;
    height: auto;
    display: block;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.modal-header h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 5px;
    letter-spacing: -1px;
    background: linear-gradient(to right, #fff, #a5c9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-header .subtitle {
    color: #88aadd;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 5px;
}

.header-line {
    width: 60px;
    height: 4px;
    background: var(--orange);
    margin: 15px auto 0;
    border-radius: 2px;
}

.modal-body {
    padding: 20px 40px 40px;
    overflow-y: auto;
    color: #cbd5e1;
    line-height: 1.8;
    text-align: left;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}

/* Custom Scrollbar for Modal */
.modal-body::-webkit-scrollbar {
    width: 6px;
}
.modal-body::-webkit-scrollbar-track {
    background: transparent;
}
.modal-body::-webkit-scrollbar-thumb {
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
}

/* Estilos Específicos - Quem Somos */
.intro-text {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 500;
}

.highlight-box {
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.1), transparent);
    border-left: 4px solid var(--orange);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 16px 16px 0;
}

.highlight-box p {
    margin: 0;
    font-style: italic;
    color: #ffdcb8;
}

.brand-quote {
    text-align: center;
    font-size: 1.3rem;
    color: var(--white);
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-weight: 700;
    font-family: 'Georgia', serif; /* Serifada para contraste elegante */
}

/* Estilos Específicos - Como Funciona (Timeline) */
.steps-timeline {
    position: relative;
    padding: 10px 0;
    margin-top: 10px;
}

/* Linha Vertical Conectora */
.steps-timeline::before {
    content: '';
    position: absolute;
    left: 25px; /* Centro do círculo de 50px */
    top: 25px;
    bottom: 50px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-blue), #00f2fe 50%, transparent);
    z-index: 0;
    opacity: 0.3;
}

.step-card {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.step-number-glow {
    width: 50px;
    height: 50px;
    background: #001229; /* Fundo escuro para cobrir a linha */
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--white);
    box-shadow: 0 0 20px rgba(0, 86, 179, 0.3);
    flex-shrink: 0;
    transition: all 0.3s;
}

.step-card:hover .step-number-glow {
    background: var(--primary-blue);
    box-shadow: 0 0 25px rgba(0, 86, 179, 0.6);
    transform: scale(1.1);
}

.step-info {
    background: rgba(255,255,255,0.02);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.03);
    flex: 1;
    transition: all 0.3s ease;
}

.step-card:hover .step-info {
    background: rgba(255,255,255,0.05);
    transform: translateX(5px);
    border-color: rgba(255,255,255,0.1);
}

.step-info h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.step-info p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: #a0b0c0;
}

/* Modal Footer Action (Botão Novo) */
.modal-footer-action {
    background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    padding: 30px;
    border-radius: 20px;
    margin-top: 40px;
    text-align: center;
    border: 1px dashed rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.footer-text h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.footer-text p {
    color: #88aadd;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.modal-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #00c6ff, #0072ff); /* Azul moderno */
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0, 114, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.2);
}

.modal-action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 114, 255, 0.5);
    background: linear-gradient(90deg, #0072ff, #00c6ff);
}

.modal-action-btn:active {
    transform: translateY(-2px);
}

/* Responsivo para Header e Modais */
@media (max-width: 768px) {
    .header {
        padding: 5px 0; /* Reduzido padding geral */
        height: auto; 
    }

    .header-container {
        flex-direction: column;
        gap: 0; /* Removido gap entre flex items */
        padding-top: 0; /* Removido padding top extra */
    }
    
    .logo-container {
        position: static; 
        margin-bottom: -15px; /* Margem negativa para puxar o menu pra cima */
        margin-top: -10px; /* Puxar logo um pouco pra cima */
        text-align: center;
        display: flex;
        justify-content: center;
        width: 100%;
        z-index: 1002; /* Garantir que fique acima se sobrepor */
    }

    .header-logo {
        max-height: 120px; /* Levemente reduzido para ajudar no espaço */
    }

    .header-nav {
        width: 100%;
        justify-content: center;
        margin: 0;
        padding: 0 0 5px 0; /* Pequeno padding inferior */
        gap: 10px; /* Reduzido gap entre botões */
    }

    .nav-link {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .modal-content {
        max-height: 90vh; /* Mais altura no mobile */
        border-radius: 20px 20px 0 0; /* Arredondado só em cima tipo bottom sheet (opcional, mantendo padrão) */
        border-radius: 20px;
    }

    .modal-header {
        padding: 30px 20px 10px;
    }

    .modal-header h2 {
        font-size: 1.6rem;
    }

    .modal-body {
        padding: 20px 25px 40px;
    }

    /* Timeline Mobile */
    .steps-timeline::before {
        left: 20px; /* Ajuste se o círculo diminuir */
    }
    
    .step-number-glow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-card {
        gap: 15px;
    }
    
    .modal-action-btn {
        width: 100%;
        padding: 16px;
        font-size: 0.9rem;
    }
}

/* Progress Bar */
.progress-container {
    width: 100%;
    height: 4px;
    background: transparent;
    position: fixed;
    top: 0;
    z-index: 1001;
}

.progress-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), #00f2fe);
    width: 0%;
}

/* Particles Canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Scroll Reveal Classes */
.reveal, 
.reveal-up, 
.reveal-left, 
.reveal-right, 
.reveal-scale {
    opacity: 0;
    transition: all 1s ease-out;
}

.reveal.active,
.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

.reveal-scale {
    transform: scale(0.8);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-card.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Hero Section */
.hero-section {
    padding: 120px 0 60px;
    background: radial-gradient(circle at center, #002a5c 0%, #001229 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.2;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto 40px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.video-placeholder {
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
}

.play-icon {
    font-size: 60px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

/* CTA Button */
.cta-button {
    background: linear-gradient(90deg, #ff8c00 0%, #ff4500 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.3);
    border: 2px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 69, 0, 0.4);
}

.cta-button.full-width {
    width: 100%;
    max-width: 400px;
}

.vsl-first-visit-overlay {
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vsl-first-visit-overlay__inner {
    width: min(980px, 92vw);
}

.vsl-first-visit-overlay__inner video {
    width: 100%;
    height: auto;
    max-height: 90vh;
    display: block;
}

.vsl-skip-btn {
    position: fixed;
    top: clamp(10px, 3vw, 18px);
    right: clamp(10px, 3vw, 18px);
    z-index: 5001;
    padding: clamp(8px, 2.2vw, 12px) clamp(14px, 4.2vw, 22px);
    font-size: clamp(0.85rem, 3.4vw, 1rem);
    border: none;
    display: none;
}

.vsl-skip-btn.is-visible {
    display: inline-block;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 107, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

.security-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
    color: #aaa;
}

/* Marquee Tilted */
.marquee-wrapper-tilted {
    position: relative;
    height: 250px;
    background: var(--deep-dark-blue);
    overflow: hidden;
    margin: 40px 0;
    z-index: 10;
    width: 100%; /* Garantir largura do container */
    max-width: 100vw;
}

.marquee-container {
    position: absolute;
    width: 120%; /* Pode causar overflow se não clipado */
    left: -10%;
    padding: 15px 0;
    white-space: nowrap;
    overflow: hidden;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .marquee-container {
        width: 150%; /* Aumentar largura relativa para garantir rotação sem buracos */
        left: -25%; /* Centralizar */
    }
}

.marquee-container.orange-bg {
    background: var(--primary-blue);
    color: white;
    top: 50%;
    transform: translateY(-50%) rotate(-6deg);
    z-index: 2;
}

.marquee-container.red-bg {
    background: var(--white);
    color: var(--primary-blue);
    top: 50%;
    transform: translateY(-50%) rotate(6deg);
    z-index: 1;
}

.marquee-content {
    animation: marquee 20s linear infinite;
    display: inline-block;
}

.marquee-content.reverse {
    animation: marquee-reverse 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Benefits Section Dark */
.benefits-section-dark {
    padding: 80px 0;
    background-color: var(--deep-dark-blue);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 60px;
    line-height: 1.2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.benefit-card {
    background: #0d1f36;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #1a3a5e;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
}

.benefit-card h3 {
    color: var(--orange);
    font-size: 1.5rem;
    margin: 20px 0 15px;
    text-transform: uppercase;
}

.benefit-card p {
    color: #ccc;
    line-height: 1.6;
}

.benefit-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
}

/* Features Split Section */
.features-split-section {
    padding: 80px 0;
    background: #001830;
}

.plan-normal-section {
    padding: 80px 0;
    background: #001830;
}

.plan-subtitle {
    max-width: 760px;
    margin: -35px auto 50px;
    color: #bcd3f5;
    font-size: 1.05rem;
    line-height: 1.65;
}

@media (max-width: 768px) {
    .plan-subtitle {
        margin: -30px auto 40px;
        font-size: 1rem;
    }
}

.split-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    text-align: left;
}

.image-col {
    flex: 1;
    min-width: 300px;
}

.text-col {
    flex: 1;
    min-width: 300px;
}

.image-placeholder-tall {
    width: 100%;
    height: 600px;
    background: #0a1929;
    border: 2px dashed #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: block;
}

.image-placeholder-tall span {
    padding: 20px;
    text-align: center;
    color: #555;
}

.text-col h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-list {
    list-style: none;
    margin: 40px 0;
}

.feature-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-list .feature-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 50%; /* Opcional: se o ícone for quadrado e quiser redondo */
}

.feature-list strong {
    display: block;
    font-size: 1.2rem;
    color: var(--orange);
    margin-bottom: 5px;
}

.feature-list p {
    color: #bbb;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--deep-dark-blue);
    background-image: radial-gradient(#002a5c 1px, transparent 1px);
    background-size: 40px 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-placeholder {
    background: rgba(13, 31, 54, 0.9);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: 15px;
    color: #888;
    font-size: 0.9rem;
    padding: 20px;
    text-align: center;
}

/* Results Section */
.results-section {
    padding: 80px 0;
    background: var(--deep-dark-blue);
}

.results-carousel-container {
    position: relative;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.results-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    width: 100%;
}

.carousel-btn {
    display: none; /* Escondido no desktop */
    background: var(--orange);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.carousel-btn.prev { left: -15px; }
.carousel-btn.next { right: -15px; }

.result-card {
    background: #fff;
    padding: 10px; /* Mais compacto */
    border-radius: 12px;
    color: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 1px solid rgba(0,0,0,0.05);
}

.result-card .image-placeholder {
    height: 300px;
    background: #eee;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    border-radius: 5px;
}

.result-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
    display: block;
}

.result-card p {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #444;
}

/* Mobile Carousel Logic */
@media (max-width: 768px) {
    .results-track {
        display: flex;
        overflow-x: hidden; /* JS vai controlar o scroll/transform */
        scroll-behavior: smooth;
        gap: 0; /* Sem gap, vamos usar padding/width */
    }

    .result-card {
        min-width: 100%;
        box-sizing: border-box;
        padding: 10px;
        /* Pequeno espaçamento lateral para não colar nas bordas se quiser */
    }
    
    .carousel-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Offer Section */
.offer-section {
    padding: 60px 0 100px;
    background: var(--deep-dark-blue);
}

.offer-card {
    max-width: 500px;
    margin: 0 auto;
    background: #002a5c;
    border: 1px solid #004494;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 42, 92, 0.4);
    position: relative;
    min-height: 550px; /* Padronizar altura */
    display: flex;
    flex-direction: column;
}

.offer-card--animated {
    animation: offerCardGlow 5.5s ease-in-out infinite;
}

@keyframes offerCardGlow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(0, 42, 92, 0.4);
        border-color: #004494;
    }
    50% {
        box-shadow: 0 10px 40px rgba(0, 42, 92, 0.35), 0 16px 60px rgba(0, 242, 254, 0.18);
        border-color: rgba(0, 242, 254, 0.35);
    }
}

@media (prefers-reduced-motion: reduce) {
    .offer-card--animated {
        animation: none;
    }
}

.offer-body {
    padding: 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
}

.offer-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-header h3 {
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin: 0;
}

/* Estilo duplicado removido */

.offer-title {
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.offer-list {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.offer-list li {
    margin-bottom: 8px;
    color: #e3f2fd;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-box {
    margin: 20px 0;
}

.old-price {
    display: block;
    color: #88aadd;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.price-highlight {
    color: var(--white);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.price-highlight .installments {
    font-size: 1.5rem;
}

.price-highlight .value {
    font-size: 3.5rem;
    line-height: 1;
}

.cash-price {
    display: block;
    color: #fff;
    margin-top: 10px;
    font-weight: bold;
}

.security-seals {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 15px auto 0;
    object-fit: contain;
}

/* Footer */
.footer {
    background: #000;
    padding: 60px 0;
    border-top: 1px solid #222;
}

.footer-links {
    margin-top: 30px;
}

.footer-links a {
    color: #777;
    text-decoration: none;
    margin: 0 15px;
}

.footer-links a:hover {
    color: var(--white);
}

/* Ajustes Responsividade Mobile - Hero Section */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 190px;
    }

    .hero-section .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-section h1 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .video-wrapper {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 100%;
    }

    .cta-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .cta-button {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 350px; /* Evita que fique muito largo em tablets */
        margin: 0 auto;
        font-size: 1rem;
        padding: 15px 20px;
    }

    .security-seals {
        margin: 15px auto 0;
        display: block;
        max-width: 80%;
    }
}

/* Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-section {
        padding-top: 160px;
    }
}
    /* Forçar overflow hidden em seções problemáticas */
    section, .hero-section, .footer {
        overflow-x: hidden;
    }

/* Stack Cards Logic */
.cards-stack-wrapper {
    position: relative;
    width: 100%;
    /* max-width controlado inline ou via media query */
    height: 750px; 
    margin: 0 auto;
    perspective: 1500px;
    z-index: 10;
    transition: all 0.5s ease;
}

.stack-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-origin: center center;
    background-color: #002a5c;
    backface-visibility: hidden;
    border-radius: 20px; /* Garantir borda arredondada aqui */
}

/* --- Estado Inicial (Assimétrico / Preview) --- */
/* Quando o wrapper NÃO tem a classe .focused */

/* Card Ativo (Pré-selecionado): Deslocado para direita, mas visível */
.cards-stack-wrapper:not(.focused) .stack-card.active {
    z-index: 20;
    opacity: 1;
    /* Joga para direita e reduz levemente para dar contexto */
    transform: translateX(110px) scale(0.95) translateZ(0); /* Aumentado para expor mais o fundo */
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid #00f2fe;
    cursor: pointer; /* Indica clicável para expandir */
}

/* Card Inativo (Fundo): Deslocado para esquerda, visível atrás */
.cards-stack-wrapper:not(.focused) .stack-card.inactive {
    z-index: 5;
    opacity: 0.8; /* Bem visível */
    /* Joga para esquerda */
    transform: translateX(-110px) scale(0.9) translateZ(-50px); /* Aumentado para expor mais */
    filter: brightness(0.6); /* Mais escuro */
    cursor: pointer;
}

/* Hover no estado inicial removido conforme solicitado */
/* .cards-stack-wrapper:not(.focused) .stack-card:hover {
    filter: brightness(1);
    transform: translateX(var(--tx, 0)) scale(0.98) translateZ(10px);
} */

/* --- Estado Focado (Selecionado / Full) --- */
/* Quando o wrapper TEM a classe .focused */

/* Card Ativo Focado: Ocupa tudo, centralizado */
.cards-stack-wrapper.focused .stack-card.active {
    z-index: 30;
    opacity: 1;
    transform: translateX(0) scale(1) translateZ(0);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 2px solid #00f2fe;
    width: 100%;
    left: 0;
}

/* Card Inativo Focado: Some completamente para dar foco total ao ativo */
.cards-stack-wrapper.focused .stack-card.inactive {
    opacity: 0;
    pointer-events: none;
    transform: translateX(0) scale(0.8);
    z-index: -1;
}

/* --- Compactação Interna dos Cards (Stack) --- */
.stack-card .offer-body {
    padding: 15px 20px; /* Reduzido o espaçamento interno para caber os selos */
    justify-content: flex-start !important;
    gap: 8px; /* Reduzido o gap entre elementos */
}
.stack-card .offer-title {
    font-size: 1.6rem; /* Levemente reduzido */
    margin-bottom: 5px; /* Reduzido */
    line-height: 1.2;
}
.stack-card .offer-list {
    margin-bottom: 10px; /* Reduzido */
}
.stack-card .offer-list li {
    margin-bottom: 6px; /* Reduzido para compactar */
    font-size: 0.95rem; /* Levemente reduzido */
    line-height: 1.3;
}
.stack-card .price-box {
    margin: 5px 0; /* Reduzido */
}
.stack-card .price-highlight .value {
    font-size: 2.8rem; /* Reduzido levemente */
}
.stack-card .security-seals {
    margin-top: 8px; /* Reduzido */
    max-width: 70%; /* Ajustado */
}

/* --- Ajuste Específico para o Card "Oferta Padrão" (#card-kit) --- */
/* Como este card tem o bloco de preço, precisamos compactar um pouco para caber tudo */
#card-kit .offer-body {
    padding: 20px 25px; /* Reduz levemente o padding vertical */
    gap: 10px; /* Reduz o gap entre elementos */
}
#card-kit .offer-list {
    margin-bottom: 5px;
}
#card-kit .offer-list li {
    margin-bottom: 5px; /* Mais compacto na lista */
    font-size: 1rem;
}
#card-kit .price-box {
    margin: 5px 0; /* Menos margem ao redor do preço */
}
#card-kit .security-seals {
    margin-top: 10px; /* Menos margem acima dos selos */
}

/* --- Efeitos Premium Exclusivos para #card-mounjaro --- */
#card-mounjaro {
    background: linear-gradient(135deg, #001229 0%, #002a5c 100%);
    border: 1px solid rgba(0, 242, 254, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 86, 179, 0.4);
}

/* Efeito de brilho rotativo na borda (opcional, mas sofisticado) */
#card-mounjaro::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    transform: rotate(30deg);
    animation: rotateGlow 10s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Faixa de luz (Shimmer Effect) */
#card-mounjaro .offer-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-20deg);
    animation: shimmer 3s infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes shimmer {
    0% { left: -150%; }
    50% { left: 150%; }
    100% { left: 150%; }
}

/* Refinamento dos textos no card Premium */
#card-mounjaro .offer-title {
    background: linear-gradient(90deg, #fff, #e3f2fd, #fff);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 3s linear infinite;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

@keyframes textShine {
    to { background-position: 200% center; }
}

#card-mounjaro .offer-list li {
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
    position: relative;
    z-index: 3;
}

/* Botão mais chamativo no Premium */
#card-mounjaro .cta-button {
    background: linear-gradient(90deg, #ff6b00, #ff8c00, #ff6b00);
    background-size: 200% auto;
    animation: pulse-animation 2s infinite, gradientMove 3s linear infinite;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 3;
    position: relative;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Header mais impactante */
#card-mounjaro .offer-header {
    background: linear-gradient(90deg, #003366, #0056b3, #00c6ff);
    position: relative;
    overflow: hidden;
}

#card-mounjaro .offer-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.4) 50%, transparent 60%);
    animation: headerShine 4s infinite;
}

@keyframes headerShine {
    0% { transform: translateX(-100%); }
    20% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

/* --- Estilos Gerais Mantidos --- */

/* Ajuste dos botões de ação dentro dos cards (Menores) */
.stack-card .cta-button {
    padding: 15px 25px; /* Aumentado */
    font-size: 1rem; /* Aumentado */
    max-width: 90%;
    margin: 0 auto;
}

.stack-card.active::before {
    background: linear-gradient(90deg, #00f2fe, #4facfe);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.5);
}

.stack-card.active .cta-button {
    pointer-events: auto;
}

/* Novo Botão de Alternância */
.stack-nav-container {
    text-align: center;
    margin-top: 20px;
    position: relative;
    z-index: 30;
}

.stack-toggle-btn {
    background: transparent;
    border: 1px solid #00f2fe; /* Borda mais fina */
    color: #fff;
    padding: 10px 25px; /* Botão menor */
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.1);
}

.stack-toggle-btn:hover {
    background: #00f2fe;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
    transform: translateY(-2px);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .cards-stack-wrapper {
        perspective: 1000px;
        overflow: visible;
        /* Altura ajustada via JS ou style inline */
    }

    /* Ajuste do deslocamento no mobile */
    .cards-stack-wrapper:not(.focused) .stack-card.active {
        transform: translateX(60px) scale(0.95);
    }
    
    .cards-stack-wrapper:not(.focused) .stack-card.inactive {
        transform: translateX(-60px) scale(0.9) translateZ(-50px);
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--deep-dark-blue);
    position: relative;
    z-index: 5;
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --- Nested Category Styles --- */
.faq-category {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
}

.faq-category-header {
    width: 100%;
    padding: 25px 30px;
    background: linear-gradient(90deg, #001f44, #002a5c);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-category-header:hover {
    background: linear-gradient(90deg, #002a5c, #003a75);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.faq-category-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
}

.faq-category-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: var(--primary-blue);
}

/* Category Active State */
.faq-category.is-open .faq-category-header {
    border-radius: 12px 12px 0 0; /* Flat bottom when open */
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(90deg, #002a5c, #003a75);
}

.faq-category.is-open .faq-category-icon {
    transform: rotate(180deg);
}

/* Category Body (Hidden by default) */
.faq-category-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 12px 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: none;
    padding: 0 20px; /* Padding lateral */
}

.faq-category.is-open .faq-category-body {
    /* Max height is set via JS for dynamic content, but here we can set a safe large value or handle via JS */
    /* JS will handle exact height or we use a large value */
    max-height: 2000px; 
    padding: 20px; /* Padding vertical ao abrir */
}

/* --- Inner FAQ Item Styles --- */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 15px; /* Spacing between questions */
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.is-open {
    background: rgba(0, 86, 179, 0.15);
    border-color: var(--primary-blue);
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    outline: none;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
    font-weight: 300;
    margin-left: 15px;
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.is-open .faq-answer {
    max-height: 300px;
    transition: max-height 0.3s ease-in-out;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
    text-align: left;
}
