:root {
    --primary-color: #A12C2F; /* Vermelho Natalino Escuro */
    --secondary-color: #004d40; /* Verde Escuro */
    --accent-color: #D4AF37; /* Dourado */
    --text-color: #333;
    --light-bg: #fdfaf6;
    --white: #fff;
    --font-headings: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.7;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 800px; /* Reduced max-width for more focused content */
    margin: 0 auto;
}

h2 {
    font-family: var(--font-headings);
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
}

h3 {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    color: var(--secondary-color);
    text-align: center;
    margin: 40px 0 20px 0;
}

.section-intro, .section-outro {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.section-outro {
    font-weight: 700;
    color: var(--secondary-color);
}

.cta-button {
    display: inline-block;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    padding: 18px 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.primary-cta {
    background-color: #2ca52c; /* Verde Chamativo */
    box-shadow: 0px 8px 15px rgba(44, 165, 44, 0.4);
    animation: pulse 1.5s infinite;
}

.primary-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0px 12px 20px rgba(44, 165, 44, 0.5);
}

.secondary-cta {
    background-color: var(--accent-color);
    box-shadow: 0px 8px 15px rgba(212, 175, 55, 0.4);
    margin-top: 20px;
}

.secondary-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0px 12px 20px rgba(212, 175, 55, 0.5);
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/images/jantar-festivo-com-decoracao-de-natal.jpg') no-repeat center center/cover;
    color: var(--white);
    padding: 60px 0;
}

.headline {
    font-family: var(--font-headings);
    font-size: 3rem; 
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    margin-bottom: 15px;
}

.subheadline {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-weight: 400;
}

/* --- Content Sections (Learn & Included) --- */
.learn {
    padding: 80px 0;
    background-color: var(--white);
}

.included {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.learn ul, .included ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 30px auto;
    text-align: left;
    display: inline-block;
}

.learn li, .included li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.learn li::before, .included li::before {
    content: '✅';
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 5px;
}

/* --- Benefits Section --- */
.benefits {
    padding: 60px 0;
    background-color: var(--secondary-color);
    color: var(--white);
}
.benefits h2 {
    color: var(--white);
}

.benefits-list p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

/* --- Testimonials --- */
.testimonials {
    padding: 80px 0;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
}

.card p {
    font-style: italic;
    margin-bottom: 15px;
}

.card span {
    font-weight: 700;
    color: var(--primary-color);
}

/* --- Final CTA --- */
.final-cta {
    padding: 80px 0;
    background-color: #f4f4f4;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.2rem;
}

.final-perks {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.final-perks span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
}

.price-box {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    max-width: 380px;
    margin: 30px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--primary-color);
}

.price-box p {
    margin: 0;
    font-size: 1rem;
}

.final-price {
    font-family: var(--font-headings);
    font-size: 2.8rem;
    color: var(--primary-color);
    margin: 5px 0;
}

.trust-seal {
    max-width: 280px;
    margin: 15px auto 0 auto;
    display: block;
}

/* --- Footer --- */
footer {
    background-color: #222;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
}

/* --- Keyframes for Animations --- */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0px 8px 15px rgba(44, 165, 44, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0px 15px 25px rgba(44, 165, 44, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0px 8px 15px rgba(44, 165, 44, 0.4);
    }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    h2 { font-size: 2rem; }
    .headline { font-size: 2.2rem; }
    .final-cta h2 { font-size: 1.8rem; }
    .learn ul, .included ul {
        text-align: left;
        width: 100%;
    }
}