/* ====================================================== */
/* 1. FONTES E VARIÁVEIS GLOBAIS                          */
/* ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Montserrat:wght@400;700&display=swap');

:root {
    --dark-blue: #030712;
    --dark-blue-light: #0a101f;
    --gold: #E6C383;
    --gold-hover: #f7d497;
    --white: #F0F0F0;

    --font-display: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}


/* ====================================================== */
/* 2. RESET E ESTILOS GLOBAIS (MOBILE FIRST)              */
/* ====================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-image: radial-gradient(circle, var(--dark-blue-light) 0%, var(--dark-blue) 100%);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

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

section {
    padding: 70px 0;
    position: relative;
    border-bottom: 1px solid rgba(230, 195, 131, 0.1);
}

section:last-of-type {
    border-bottom: none;
}

/* Divisor de Seção Estilizado */
.section-divider::before {
    content: '◇';
    display: block;
    text-align: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 70px;
    opacity: 0.5;
}


/* ====================================================== */
/* 3. TÍTULOS E BOTÕES (CTA)                              */
/* ====================================================== */
.section-title,
.hero-title {
    font-family: var(--font-display);
    line-height: 1.3;
    text-align: center;
    background: linear-gradient(135deg, var(--gold-hover) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.section-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin-bottom: 50px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-hover) 0%, var(--gold) 100%);
    color: var(--dark-blue);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 30px rgba(230, 195, 131, 0.25);
}


/* ====================================================== */
/* 4. HERO SECTION (MOBILE OPTIMIZED)                     */
/* ====================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 80px 0 60px;
    border-bottom: none;
}

.hero-title {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    margin-bottom: 20px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-image,
.final-offer-image {
    width: 65%;
    max-width: 260px;
    margin: 30px auto;
    animation: float 5s ease-in-out infinite;
}

.hero-image img,
.final-offer-image img {
    border-radius: 8px;
    border: 3px solid var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.1rem);
    margin-bottom: 30px;
    opacity: 0.9;
}

.benefits-preview ul {
    list-style: none;
    margin-bottom: 40px;
}

.benefits-preview li {
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.micro-promise,
.trust-badge {
    margin-top: 25px;
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}


/* ====================================================== */
/* 5. SEÇÕES DE CONTEÚDO                                  */
/* ====================================================== */

/* PILARES, DEPOIMENTOS E FAQ */
.benefits-grid,
.testimonials-grid,
.faq-grid {
    display: grid;
    gap: 25px;
}

.benefit-card,
.testimonial-card,
.faq-item {
    background-color: var(--dark-blue-light);
    border: 1px solid rgba(230, 195, 131, 0.15);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-card:hover,
.testimonial-card:hover,
.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(230, 195, 131, 0.15);
    border-color: rgba(230, 195, 131, 0.4);
}

.benefit-card h3 {
    font-family: var(--font-display);
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.testimonial-card {
    border-left: 4px solid var(--gold);
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-card cite {
    font-weight: 700;
    color: var(--gold);
}

/* FAQ SECTION */
.faq-item {
    border-left: 4px solid var(--gold);
}

.faq-question {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--gold-hover);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.faq-answer {
    opacity: 0.9;
}

/* TABELA DE CARTÕES */
.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th,
td {
    padding: 15px;
    border-bottom: 1px solid rgba(230, 195, 131, 0.2);
}

th {
    color: var(--gold);
}

.highlight-row {
    background-color: rgba(230, 195, 131, 0.05);
}

.recommended-badge {
    background-color: var(--gold);
    color: var(--dark-blue);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: 8px;
}

.table-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* SEÇÃO DE GARANTIA */
.guarantee-wrapper {
    display: flex;
    flex-direction: column;
    /* Mobile First */
    align-items: center;
    text-align: center;
    gap: 30px;
}

.guarantee-seal {
    max-width: 150px;
    flex-shrink: 0;
}

.guarantee-seal img {
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.guarantee-text .section-title {
    margin-bottom: 20px;
}

/* URGÊNCIA */
.urgency-section {
    background: var(--dark-blue-light);
    text-align: center;
}

.urgency-section h2 {
    font-family: var(--font-body);
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    color: var(--gold);
    max-width: 600px;
    margin: 0 auto 30px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.timer-unit {
    background: rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
}

.timer-unit span:first-child {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 10vw, 2.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--gold-hover);
}

.timer-unit span:last-child {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* ====================================================== */
/* 6. OFERTA FINAL E SEÇÃO DO AUTOR                       */
/* ====================================================== */
.final-offer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.final-offer-summary ul {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 40px;
}

.final-offer-summary li {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.final-offer-summary li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    margin-right: 15px;
}

/* SEÇÃO DO AUTOR */
.author-wrapper {
    display: flex;
    flex-direction: column;
    /* Mobile First */
    align-items: center;
    text-align: center;
    gap: 30px;
    background-color: var(--dark-blue-light);
    padding: 30px;
    border-radius: 12px;
}

.author-image {
    max-width: 120px;
    flex-shrink: 0;
}

.author-image img {
    border-radius: 50%;
    border: 3px solid var(--gold);
}

.author-text h3 {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* ====================================================== */
/* 7. RODAPÉ                                              */
/* ====================================================== */
.footer-section {
    text-align: center;
    padding: 40px 20px;
    border-bottom: none;
}

.footer-section::before {
    display: none;
}


/* ====================================================== */
/* 8. MEDIA QUERIES (Layout para telas maiores)           */
/* ====================================================== */
@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-button {
        width: auto;
    }

    .guarantee-wrapper {
        flex-direction: row;
        text-align: left;
        gap: 50px;
    }

    .author-wrapper {
        flex-direction: row;
        text-align: left;
        gap: 40px;
    }
}

@media (min-width: 992px) {
    .hero-section {
        text-align: left;
    }

    .hero-content-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .hero-text {
        flex: 1.2;
    }

    .hero-image {
        flex: 0.8;
        margin: 0;
    }

    .final-offer-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .final-offer-image {
        flex: 0.8;
    }

    .final-offer-text {
        flex: 1.2;
        text-align: left;
    }
}

@media (min-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}