/* --- VARIÁVEIS DE CORES E RESET --- */
:root {
    /* Paleta Emocional e Suave */
    --bg-hero: #F9F7F2; /* Bege muito claro / Off-white quente */
    --bg-white: #FFFFFF;
    --bg-light-alt: #FAFAFA; /* Cinza quase imperceptível para seções alternadas */
    --bg-soft-blue: #F0F4F8; /* Azul muito pálido para destaque suave */
    
    --text-dark: #2C3E50; /* Cinza escuro, não preto puro */
    --text-body: #4A5568; /* Cinza médio leitura */
    --text-light: #718096;
    
    /* CTA - Cor Quente e Emocional (Laranja Terra Suave) */
    --cta-color: #E08E6D; 
    --cta-hover: #CD7B5A;
    --cta-text: #FFFFFF;

    /* Tipografia */
    --font-title: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --spacing-section: 4rem; /* Respiro vertical */
    --container-width: 600px; /* Foco em leitura centralizada */
}

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

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.6;
    background-color: var(--bg-white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* --- BARRA DE DESCONTO --- */
.discount-bar {
    background: #DC143C;
    color: #FFFFFF;
    text-align: center;
    padding: 0.75rem 1rem;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.discount-bar span {
    font-family: var(--font-title);
}

#current-date {
    color: #00FF00;
    font-weight: 700;
}

/* --- TIPOGRAFIA GERAL --- */
h1, h2, h3 {
    font-family: var(--font-title);
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem; /* Mobile first */
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-weight: 300;
}

/* --- ELEMENTOS DE UI --- */
.container {
    width: 90%;
    max-width: var(--container-width); /* Mantém o layout estreito e focado */
    margin: 0 auto;
}

.btn {
    display: inline-block;
    background-color: var(--cta-color);
    color: var(--cta-text);
    padding: 1rem 1.5rem;
    border-radius: 50px; /* Arredondado suave */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    width: 100%;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 14px rgba(224, 142, 109, 0.4);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--cta-hover);
    transform: translateY(-2px);
}

.section-padding {
    padding: var(--spacing-section) 0;
}

/* --- 1. HERO SECTION --- */
.hero {
    background-color: var(--bg-hero); /* Apenas uma cor sólida */
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero h2 {
    font-family: var(--font-body); /* Subtítulo com fonte simples */
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-body);
    margin-bottom: 2rem;
}

.vsl-container {
    position: relative;
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 9/16;
    background-color: #000;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: block;
    object-fit: cover;
}

.custom-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(224, 142, 109, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.custom-play-button:hover {
    background-color: rgba(205, 123, 90, 0.95);
    transform: translate(-50%, -50%) scale(1.1);
}

.custom-play-button i {
    color: white;
    font-size: 2rem;
    margin-left: 5px;
}

.custom-play-button.hidden {
    opacity: 0;
    pointer-events: none;
}

/* --- 2. SEÇÃO DE DOR --- */
.pain-section {
    background-color: var(--bg-white);
    text-align: left;
}

.pain-list {
    list-style: none;
    margin-top: 1.5rem;
}

.pain-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.pain-list li::before {
    content: '\f00d'; /* Ícone X ou Ponto */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #D67878; /* Vermelho suave, não agressivo */
    font-size: 1rem;
    top: 4px;
}

.pain-footer {
    margin-top: 2rem;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
}

/* --- 3. SEÇÃO SOLUÇÃO --- */
.solution-section {
    background-color: var(--bg-soft-blue); /* Fundo muito leve */
    text-align: center;
}

.solution-mockup {
    max-width: 400px;
    width: 100%;
    margin: 2rem auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.solution-list {
    list-style: none;
    text-align: left;
    display: block;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.solution-list li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 1.2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.solution-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.solution-list .emoji {
    font-size: 2rem;
    flex-shrink: 0;
}

.solution-list li div {
    flex: 1;
}

.solution-list li strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-family: var(--font-title);
}

.solution-list li p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.4;
}

/* --- 4. COMO FUNCIONA --- */
.how-works-section {
    background-color: var(--bg-white);
    text-align: center;
}

.steps-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cta-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step-title {
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-light);
}

.impact-phrase {
    margin-top: 3rem;
    font-family: var(--font-title);
    font-size: 1.25rem;
    color: var(--cta-color);
    font-style: italic;
}

/* --- 5. PLANOS (OFERTA) --- */
.pricing-section {
    background-color: var(--bg-light-alt);
    text-align: center;
}

.pricing-cards {
    display: flex;
    flex-direction: column; /* Mobile first: coluna */
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    background: #FFF;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    border: 1px solid #EEE;
    position: relative;
}

.card.recommended {
    border: 2px solid var(--cta-color);
    background-color: #FFF;
}

.rec-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--cta-color);
    color: #FFF;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 1rem 0;
    font-family: var(--font-title);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.card ul li {
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.card ul li i {
    color: #81C784; /* Verde suave para check */
    margin-top: 4px;
}

/* --- 6. DEPOIMENTOS --- */
.testimonials-section {
    background-color: var(--bg-white);
    text-align: center;
}

.testimonial-card {
    background: var(--bg-hero);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: left;
}

.stars {
    color: #F6AD55; /* Cor estrela */
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.t-text {
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.t-name {
    font-weight: 600;
    font-size: 0.85rem;
}

/* --- 7. GARANTIA --- */
.guarantee-section {
    background-color: #FFF;
    text-align: center;
    border-top: 1px solid #F0F0F0;
}

.guarantee-seal {
    max-width: 150px;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
    mix-blend-mode: multiply;
    background: transparent;
}

.guarantee-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.guarantee-details {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 1.2rem;
    background: var(--bg-hero);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.guarantee-emoji {
    font-size: 2rem;
    flex-shrink: 0;
}

.guarantee-item div {
    flex: 1;
}

.guarantee-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-family: var(--font-title);
}

.guarantee-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.4;
}

.guarantee-footer {
    font-style: italic;
    color: var(--text-light);
    margin-top: 2rem;
    font-size: 0.95rem;
}

/* --- 8. FAQ --- */
.faq-section {
    background-color: var(--bg-light-alt);
}

.faq-item {
    background: #FFF;
    margin-bottom: 0.8rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.faq-question {
    padding: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--cta-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.2rem;
    font-size: 0.95rem;
    color: var(--text-body);
}

.faq-answer p {
    padding-bottom: 1.2rem;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Altura suficiente para texto */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* --- 9. CTA FINAL --- */
.final-cta {
    background-color: var(--bg-hero);
    text-align: center;
    padding-bottom: 6rem; /* Espaço extra no final mobile */
}

/* --- RESPONSIVIDADE (TABLET/DESKTOP) --- */
@media (min-width: 768px) {
    .pricing-cards {
        flex-direction: row;
        justify-content: center;
        align-items: flex-end; /* Alinha pela base */
    }

    .card {
        width: 45%;
        max-width: 350px;
    }

    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2.5rem; }
    
    .container {
        max-width: 800px; /* Um pouco mais largo no desktop, mas ainda focado */
    }
}

/* --- ANIMAÇÕES DE SCROLL --- */
.section-padding {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-padding:nth-of-type(1) {
    animation-delay: 0.1s;
}

.section-padding:nth-of-type(2) {
    animation-delay: 0.2s;
}

.section-padding:nth-of-type(3) {
    animation-delay: 0.3s;
}

.solution-list li {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease forwards;
}

.solution-list li:nth-child(1) { animation-delay: 0.1s; }
.solution-list li:nth-child(2) { animation-delay: 0.2s; }
.solution-list li:nth-child(3) { animation-delay: 0.3s; }
.solution-list li:nth-child(4) { animation-delay: 0.4s; }
.solution-list li:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.card {
    opacity: 0;
    transform: scale(0.95);
    animation: scaleIn 0.6s ease forwards;
}

.card:nth-of-type(1) { animation-delay: 0.1s; }
.card:nth-of-type(2) { animation-delay: 0.3s; }

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- POP-UP OFERTA ESPECIAL --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFE082 100%);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    max-width: 380px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: popIn 0.4s ease;
    border: 3px solid #FFD700;
    font-family: var(--font-title);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes popIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #D97706;
    line-height: 1;
    transition: transform 0.2s;
}

.popup-close:hover {
    transform: scale(1.2);
}

.popup-title {
    color: #D97706;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-family: var(--font-title);
    font-weight: 700;
}

.popup-price {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.old-price {
    color: #DC2626;
    text-decoration: line-through;
    font-size: 1rem;
    font-weight: 700;
}

.new-price {
    color: #15803D;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-title);
}

.popup-text {
    color: #92400E;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-weight: 700;
}

.popup-btn {
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 20px rgba(224, 142, 109, 0.5);
    animation: pulse 2s infinite;
    font-family: var(--font-title);
    font-weight: 700;
}

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

.keep-basic {
    display: inline-block;
    color: #78716C;
    font-size: 0.8rem;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
    font-weight: 700;
}

.keep-basic:hover {
    color: #57534E;
}
