:root {
    --primary-color: #ff3366; 
    --primary-hover: #e62e5c;
    --text-dark: #2b2d42;
    --text-light: #6c757d;
    --bg-color: #fdfafb;
    --card-bg: rgba(255, 255, 255, 0.95);
    --check-color: #10b981; 
    --scarcity-bg: #ffeef2;
    --scarcity-text: #ff1a4f;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    background-image: radial-gradient(circle at 50% 0%, #ffe6ee 0%, #fdfafb 60%);
    min-height: 100vh;
}

/* Faixa de Escassez */
.scarcity-banner {
    background-color: var(--scarcity-bg);
    color: var(--scarcity-text);
    text-align: center;
    padding: 10px;
    font-size: 0.95rem;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 51, 102, 0.2);
}

.scarcity-banner strong {
    font-weight: 800;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.header {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeInDown 0.8s ease;
}

.header h1 {
    font-size: 2.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
}

.header .highlight {
    color: var(--primary-color);
}

.header .subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.creative-section {
    margin-bottom: 2rem;
    animation: fadeIn 1s ease;
}

.video-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
}

/* Esconder conteúdo até o momento do VSL */
.hidden-content {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.5s ease;
    max-height: 0;
    overflow: hidden;
}

/* Quando a classe show-content é adicionada via JS */
.hidden-content.show-content {
    opacity: 1;
    pointer-events: auto;
    max-height: 5000px; /* Um valor bem alto para não cortar o conteúdo */
}

.offer-section {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.offer-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,51,102,0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    max-width: 550px;
    width: 100%;
}

.offer-card h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.offer-card h2 .price {
    color: var(--primary-color);
    font-size: 3.2rem;
    display: block;
    margin-top: 0.5rem;
    font-weight: 800;
}

.benefits-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
    background: #fff9fa;
    padding: 1.5rem;
    border-radius: 12px;
}

.benefits-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    font-weight: 400;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.benefits-list li::first-letter {
    color: var(--check-color);
    font-weight: 800;
    margin-right: 2px;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--primary-color), #ff6b95);
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 51, 102, 0.4);
    background: linear-gradient(135deg, var(--primary-hover), #ff3366);
}

.security-badges {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.security-badges p {
    margin-bottom: 0.3rem;
}

.guarantee {
    font-weight: 600;
    color: #10b981;
    margin-bottom: 0.8rem !important;
}

/* Seção de Depoimentos */
.testimonials-section {
    margin-top: 4rem;
    text-align: center;
    overflow: hidden;
}

.testimonials-section h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1rem 0;
}

.marquee-content {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll-left 45s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.75rem)); }
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    text-align: left;
    border-left: 4px solid var(--primary-color);
    width: 320px;
    flex-shrink: 0;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* Responsividade */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    .offer-card {
        padding: 2rem 1.5rem;
    }
    .offer-card h2 .price {
        font-size: 2.8rem;
    }
    .cta-button {
        font-size: 1.1rem;
        padding: 1rem;
    }
    /* Removemos a responsividade do grid antigo */
}

/* --- NOVAS ADIÇÕES (CRO) --- */

/* Aviso de Som */
.sound-warning {
    background-color: var(--card-bg);
    color: var(--primary-color);
    text-align: center;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 auto 1rem auto;
    width: fit-content;
    box-shadow: 0 4px 10px rgba(255, 51, 102, 0.1);
    animation: pulse 2s infinite;
}

/* FAQ */
.faq-section {
    margin-top: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-section h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    cursor: pointer;
}

.faq-item summary {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    list-style: none; /* Hide default arrow in some browsers */
    outline: none;
    position: relative;
    padding-right: 20px;
}

.faq-item summary::-webkit-details-marker {
    display: none; /* Hide default arrow in webkit */
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

footer p {
    margin-bottom: 0.5rem;
}

.footer-links {
    margin-top: 1rem;
}
