/* ==========================================================================
   PALETA DE CORES E VARIÁVEIS PRINCIPAIS (Editorial Aesthetic)
   ========================================================================== */
:root {
    /* Cores de Fundo */
    --bg-main: #FAF7F2;          /* Fundo principal da página (Cream/Off-White) */
    --bg-card: #FFFFFF;          /* Fundo de blocos e cards (Branco) */
    --bg-card-hover: #F0EDE9;    /* Fundo de cards ao passar o mouse */
    
    /* Cores de Texto */
    --text-primary: #1A1A1A;     /* Texto principal (Quase Preto) */
    --text-secondary: #555555;   /* Texto descritivo (Cinza Médio) */
    
    /* Cores de Destaque */
    --accent-red: #B22222;       /* Vermelho Estratégico (Editorial) */
    --accent-red-hover: #8B0000; /* Vermelho mais escuro para hover do botão */
    --accent-gold: #D4AF37;      /* Dourado para detalhes (Opcional) */
    --accent-nude: #C0B7B1;      /* Tom neutro para labels/tags */
    
    /* Bordas e Detalhes */
    --border-color: #E5E1DA;     /* Cor para divisórias e bordas */
    --border-radius-sm: 4px;
    --border-radius-md: 12px;    
    --border-radius-lg: 24px;    /* Arredondamento suave de cartões */

    /* Tipografia */
    --font-heading: 'Georgia', serif; /* Fonte elegante para títulos */
    --font-body: 'Helvetica Neue', Arial, sans-serif; /* Fonte limpa e editorial */
}

/* ==========================================================================
   RESET BÁSICO
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

/* ==========================================================================
   ESTRUTURA PRINCIPAL E COMPONENTES GLOBAIS
   ========================================================================== */
.urgency-bar {
    background-color: var(--accent-red);
    color: #FFFFFF;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-body);
    width: 100%;
}

.page-wrapper {
    max-width: 800px; /* Largura um pouco maior para revistas/editorial */
    margin: 0 auto;
    padding: 0 20px;
    background-color: var(--bg-main);
}

section {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); /* Separador elegante */
}

/* Criando blocos sutis e profundidade */
.section-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid var(--border-color);
    border-bottom: none; /* remove separator for enclosed cards */
}

section:last-child {
    border-bottom: none;
}

/* ==========================================================================
   TIPOGRAFIA E PADRÕES
   ========================================================================== */
h1 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 2.0rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    font-weight: 400;
    font-style: normal;     /* Estilo editorial de título principal */
}

h1 .nude-highlight {
    display: block;
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 2.0rem;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin-top: 8px;
}

h2, h3 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 400;
    font-style: italic;
}

h2 { font-size: 2rem; text-align: center; }

p {
    margin-bottom: 0.3rem;
    color: var(--text-secondary);
    font-size: 1.1rem; /* Um pouco maior e agradável de ler */
}

.text-highlight {
    color: var(--text-primary);
    font-weight: 600;
}

.text-highlight2 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ==========================================================================
   BOTÕES (CTA)
   ========================================================================== */
.cta-button {
    display: inline-block;
    width: 100%;
    background-color: var(--accent-red);
    color: #ffffff;
    text-align: center;
    padding: 22px 24px;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: var(--font-body);
    border-radius: var(--border-radius-md);
    letter-spacing: 1px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    margin: 1rem 0 0.4rem 0;
}


/* Variante Secundária (Tags Editoriais) */
.title-button {
    background-color: #1A1A1A;
    color: #FFF;
    padding: 6px 12px;
    border-radius: 2px;
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    margin: 0 auto 2rem auto;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.text-center { text-align: center; }

/* ==========================================================================
   HERO SECTION E PROVA SOCIAL
   ========================================================================== */
.hero {
    text-align: center;
    padding-top: 1.0rem;
    padding-bottom: 0rem;
    border-bottom: none;
}

.hero .product-image {
    max-width: 280px;
    margin: 0 auto 1.0rem auto;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1)); /* Sombra mais sutil e realista */
    border-radius: 16px !important;
}

.hero p {
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto 0.8rem auto;
}

.proof-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 2.5rem;
    padding: 10px;
}

.proof-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.proof-text {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-secondary);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(178, 34, 34, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(178, 34, 34, 0); }
    100% { box-shadow: 0 0 0 0 rgba(178, 34, 34, 0); }
}

/* ==========================================================================
   BENEFÍCIOS (Cards)
   ========================================================================== */


.benefits {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;

}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.benefit-card {
    background-color: var(--bg-main); /* Contraste com fundo branco da section-card */
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    display: block;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.015);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
    background-color: var(--bg-main); 
    border-color: var(--border-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.03);
}

.benefit-number {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: bold;
    background-color: var(--accent-red);
    color: #ffffff;
    border: 1.5px solid var(--accent-red);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 0;
    margin-right: 8px;
}

.benefit-card p {
    margin-bottom: 0;
    font-size: 1rem;
    color: #333;
    display: inline;
}

/* ==========================================================================
   GALLERY / CARROSSEL
   ========================================================================== */
.gallery {
    text-align: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Sombra difusa e elegante */
    background-color: var(--bg-card);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.dot.active { background-color: var(--accent-red); }

.context {
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: none;
}


/* ==========================================================================
   CONTEÚDO DO KIT (Checklist)
   ========================================================================== */
.deliverables {
       padding-top: 0rem;
       padding-bottom: 0rem;
       border-bottom: none;
}

.check-list {
    list-style: none;
    margin-top: 2rem;
}

.check-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--accent-red);
    border: 1.5px solid var(--accent-red);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 10px;
    font-family: var(--font-body);
}

/* ==========================================================================
   PÚBLICO ALVO
   ========================================================================== */
.target-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.target-list li {
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--accent-red);
    background-color: var(--bg-main); /* Mudado para contrastar com white do section-card */
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm) var(--border-radius-md) var(--border-radius-md) var(--border-radius-sm);
    font-size: 1rem;
    color: var(--text-primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02); /* Leve profundidade */
}

/* ==========================================================================
   OFERTA E PREÇO
   ========================================================================== */

.lifestyle {
       padding-top: 1rem;
       padding-bottom: 0rem;
}

.offer {
       padding-top: 0rem;
       padding-bottom: 0rem;  
}

.offer-box {
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    border: 2px solid var(--accent-red);
    border-radius: var(--border-radius-lg);
    padding: 4rem 2.5rem;
    text-align: center;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;

    box-shadow:
        0 0 40px rgba(178, 34, 34, 0.25),
        0 15px 50px rgba(0,0,0,0.2);
}

/* brilho interno sutil */
.offer-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(178,34,34,0.3), transparent 60%);
    pointer-events: none;
}

.offer-header {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-red);
    margin-bottom: 1rem;
    display: block;
    font-weight: 700;
}

.offer-title {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 800;
    line-height: 1.2;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: transparent;
    border: none;
    padding: 1.5rem 0 1rem 0;
    width: 100%;
    margin: 0 auto;
}

.currency {
    font-size: 1.4rem;
    color: var(--accent-red);
    font-weight: 600;
}

.price {
    font-size: 4.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 0 15px rgba(255,255,255,0.1);
}

/* botão dentro da oferta */
.offer-box .cta-button {
    background: var(--accent-red);
    color: #ffffff;
    border: none;
    margin-top: 2rem;
    padding: 22px 24px;
    font-size: 1.15rem;

    box-shadow:
        0 0 20px rgba(178, 34, 34, 0.4),
        0 8px 20px rgba(0,0,0,0.2);
}

.offer-box .cta-button:hover {
    background: var(--accent-red-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow:
        0 0 30px rgba(178, 34, 34, 0.6),
        0 12px 25px rgba(0,0,0,0.3);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-container {
    margin-top: 3rem;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-body);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-family: var(--font-body);
    color: var(--accent-red);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-bottom 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    margin-bottom: 1.5rem;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
footer {
    text-align: center;
    padding: 3rem 0;
    font-size: 0.85rem;
    color: #999;
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */
@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h1 .nude-highlight { font-size: 3rem; }
    
    .benefits-list {
        gap: 1.5rem;
    }
}
