/* CONFIGURAÇÕES BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    line-height: 1.6;
    background-color: #0f0204;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* ALTERNÂNCIA DE CORES E ATUALIZAÇÃO DE FUNDO CLARO */
.bg-wine {
    background-color: #2a080c; 
    color: #ffffff;
}

.bg-light {
    background: linear-gradient(135deg, #fff1f1, #ffffff); /* MAIOR GANHO */
    color: #1a0507; 
}

/* BARRA SUPERIOR */
.top-bar {
    background-color: #d90429;
    color: #ffffff;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* TÍTULOS */
h2 {
    font-size: 2.6rem;
    text-align: center;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #e6b8be;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 20px auto;
}

.section-subtitle-dark {
    text-align: center;
    color: #594245;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 20px auto;
}

/* CTA - VERMELHO PRIMÁRIO DE ALTA CONVERSÃO */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #e53935, #b71c1c); /* Mudança para vermelho primário */
    color: #ffffff;
    padding: 18px 45px;
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 6px;
    border-bottom: 4px solid #8e1010;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
    transition: all 0.2s;
    text-align: center;
    margin-top: 10px; /* Ajuste de Espaçamento */
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.6);
    background: linear-gradient(135deg, #f44336, #c62828);
}

/* GRIDS */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* HERO SECTION */
.hero {
    padding: 60px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    background-color: rgba(217, 4, 41, 0.15);
    color: #ff4d6d;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(217, 4, 41, 0.3);
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Ajuste de Espaçamento das tags p na hero */
.hero p {
    margin-bottom: 20px;
}

.hero .subtitle {
    font-size: 1.15rem;
    color: #f2d6d9;
}

/* Micro-benefícios - Espaçamento customizado */
.micro-benefits {
    margin: 20px 0;
    line-height: 1.8;
}

.micro-benefits p {
    font-weight: 600;
    color: #ffd166;
    font-size: 1.05rem;
    margin-bottom: 8px !important; /* Sobrescreve a regra geral .hero p */
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-cta-wrapper {
    margin-top: 25px;
}

.hero-microcopy {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #b38c91;
    font-weight: 600;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* BENEFÍCIOS EXCLUSIVOS */
.card-benefit {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 1px solid #e1dbdc;
    text-align: left;
}

.card-img-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-benefit h3 {
    padding: 20px 20px 10px 20px;
    font-size: 1.3rem;
    color: #1a0507;
}

.card-benefit p {
    padding: 0 20px 20px 20px;
    color: #554446;
    font-size: 0.95rem;
}

/* RECEITAS */
.recipe-item {
    background-color: #3d1116;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #521b22;
}

.recipe-item h3 {
    color: #ffffff;
    margin-bottom: 12px;
}

.recipe-item p {
    color: #e6b8be;
}

/* DEPOIMENTOS */
.testimonial-images .screenshot {
    display: flex;
    justify-content: center;
}

.testimonial-images img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* BÔNUS DESIGN PREMIUM DOURADO */
.bonus-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.premium-bonus-card {
    background: linear-gradient(145deg, #3d1116 0%, #200508 100%);
    border: 2px solid #dfb15b; 
    padding: 40px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 8px 25px rgba(223, 177, 91, 0.1);
}

.gold-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(90deg, #dfb15b 0%, #b38628 100%);
    color: #000000;
    padding: 5px 15px;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.premium-bonus-card h3 {
    margin-top: 10px;
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.premium-bonus-card p {
    color: #e6b8be;
    font-size: 1rem;
    margin-bottom: 25px;
}

.price-strikethrough {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-strikethrough .before {
    text-decoration: line-through;
    color: #b38c91;
    font-weight: 600;
}

.price-strikethrough .now {
    color: #dfb15b; 
    font-weight: 800;
    font-size: 1.2rem;
}

/* FAQ ACCORDION */
.faq-wrapper {
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.faq-item {
    background-color: #ffffff;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #e1dbdc;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a0507;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #554446;
    background-color: #faf9f9;
}

.faq-item.active .faq-answer {
    padding: 20px;
}

/* CAIXA DE CHECKOUT FINAL (CTA) */
.checkout-box {
    background-color: #ffffff;
    color: #1a0507;
    max-width: 550px;
    margin: 0 auto;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    text-align: center;
    border: 3px solid #e53935; /* Borda acompanhando a cor do botão */
}

.checkout-box h2 {
    font-size: 2rem;
    color: #1a0507;
}

.checkout-details {
    font-size: 1rem;
    color: #554446;
    margin-bottom: 20px;
}

.price-box {
    background-color: #f7f5f5;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #997379;
    font-size: 1.1rem;
    font-weight: 600;
}

.current-price {
    display: block;
    font-size: 2.3rem;
    font-weight: 800;
    color: #e53935; /* Mudança para vermelho */
}

.discount-notice {
    font-size: 0.85rem;
    color: #776164;
    margin-top: 15px;
    font-weight: 600;
}

/* SESSÃO GARANTIA */
.guarantee-box {
    max-width: 650px;
    margin: 50px auto 0 auto;
    display: flex;
    align-items: center;
    gap: 25px;
    text-align: left;
    border-top: 1px solid #401015;
    padding-top: 30px;
}

.guarantee-badge {
    background: linear-gradient(135deg, #dfb15b 0%, #b38628 100%);
    color: #000000;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.guarantee-text h3 {
    font-size: 1.15rem;
    color: #dfb15b;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.guarantee-text p {
    color: #e6b8be;
    font-size: 0.95rem;
}

/* CONFIGURAÇÕES DAS ANIMAÇÕES */
.animate-fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    animation: fadeInLeft 1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeInRight 1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInLeft {
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    to { opacity: 1; transform: translateX(0); }
}

/* Animação do botão vermelho */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4); }
    50% { transform: scale(1.04); box-shadow: 0 8px 25px rgba(229, 57, 53, 0.7); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4); }
}
.pulse {
    animation: pulse 2s infinite ease-in-out;
}

.animate-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVO MOBILE */
@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-badge { margin: 0 auto 20px auto; display: table; }
    .micro-benefits { display: inline-block; text-align: left; }
    .bonus-wrapper { grid-template-columns: 1fr; }
    .guarantee-box { flex-direction: column; text-align: center; }
    h2 { font-size: 2rem; }
    .btn-primary { width: 100%; padding: 15px; font-size: 1.1rem; }
}