:root {
    --primary-color: #2d6a4f;
    --secondary-color: #40916c;
    --accent-color: #ff9f1c;
    --bg-light: #f8f9fa;
    --bg-warm: #fdfaf5;
    --text-dark: #1b4332;
    --text-muted: #52796f;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
/* empurra o conteúdo pra não ficar escondido atrás da barra */
body {
  padding-top: 32px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

/* HERO SECTION */
.hero {
    background-color: var(--bg-warm);
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 4px 15px rgba(64, 145, 108, 0.3);
}

.cta-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* FEATURES */
.features {
    padding: 100px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* RECIPES PREVIEW */
.recipes-preview {
    padding: 100px 0;
    background-color: var(--bg-warm);
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.recipe-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.recipe-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recipe-info {
    padding: 15px;
    text-align: center;
}

.more-text {
    text-align: center;
    margin-top: 30px;
    font-weight: 600;
    color: var(--secondary-color);
}

/* AUTHORITY */
.authority {
    padding: 100px 0;
}

.authority-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.authority-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.authority-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.authority-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* BONUS */
.bonus {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.bonus .section-title {
    color: var(--white);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    text-align: center;
}

.bonus-tag {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* OFFER */
.offer {
    padding: 100px 0;
    background-color: var(--bg-warm);
}

.offer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.offer-mockup img {
    width: 100%;
    border-radius: 15px;
}

.offer-list {
    list-style: none;
    margin: 25px 0;
}

.offer-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.price-container {
    margin-bottom: 30px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    display: block;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.cta-button.large {
    width: 100%;
    text-align: center;
    font-size: 1.3rem;
    padding: 22px;
}

.secure-payment {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

/* SOCIAL PROOF */
.social-proof {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    font-style: italic;
}

.testimonial-card .author {
    display: block;
    margin-top: 15px;
    font-weight: 700;
    font-style: normal;
    color: var(--secondary-color);
}

/* FAQ */
.faq {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

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

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px 20px;
}

/* FOOTER */
footer {
    padding: 50px 0;
    background-color: var(--text-dark);
    color: var(--white);
    text-align: center;
}
}

/* empurra o conteúdo pra não ficar escondido atrás da barra */
body {
  padding-top: 32px;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .hero .container, .authority-wrapper, .offer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        order: -1;
    }

    .section-title {
        font-size: 2rem;
    }

    .offer-wrapper {
        padding: 30px 20px;
    }
}
