/* ===== VARIÁVEIS CSS ===== */
:root {
    /* Paleta Limpa, Fresca e Moderna */
    --color-bg: #FFFFFF;
    --color-bg-beige: #F9F6EE;
    /* Bege suave */
    --color-primary-green: #3CA650;
    /* Verde fresco (vegetais) */
    --color-secondary-green: #297B39;
    /* Verde mais escuro */
    --color-accent-lime: #A5D631;
    /* Verde limão suave para detalhes */
    --color-text-main: #2C3E2E;
    /* Cinza esverdeado escuro */
    --color-text-light: #5B6D5E;
    /* Texto secundário */
    --color-red-alert: #E53935;

    /* Fontes */
    --font-main: 'Outfit', sans-serif;

    /* Espaçamento */
    --space-sm: 0.8rem;
    --space-md: 1.5rem;
    --space-lg: 3rem;
    --space-xl: 4rem;

    /* Bordas e Sombras */
    --radius-md: 12px;
    --radius-lg: 24px;
    --shadow-soft: 0 10px 30px rgba(44, 62, 46, 0.08);
    --shadow-hover: 0 15px 40px rgba(60, 166, 80, 0.2);

    /* Transições */
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.max-w-small {
    max-width: 800px;
}

.bg-beige {
    background-color: var(--color-bg-beige);
}

.text-green {
    color: var(--color-primary-green);
}

.text-center {
    text-align: center;
}

.mt-small {
    margin-top: var(--space-sm);
}

.mt-main {
    margin-top: var(--space-md);
}

.mt-xl {
    margin-top: var(--space-lg);
}

.mb-main {
    margin-bottom: var(--space-md);
}

.py-main {
    padding: var(--space-md) 0;
}

.pb-xl {
    padding-bottom: var(--space-lg);
}

.w-full {
    width: 100%;
    display: block;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ===== BOTÕES CTA ===== */
.cta-button {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.cta-mobile {
    display: none;
}

.primary-btn {
    background: linear-gradient(135deg, var(--color-primary-green), var(--color-secondary-green));
    color: #FFF;
    box-shadow: 0 8px 20px rgba(60, 166, 80, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.orange-btn {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: #FFF;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.orange-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
}

.secondary-btn {
    background-color: transparent;
    color: var(--color-primary-green);
    border: 2px solid var(--color-primary-green);
}

.secondary-btn:hover {
    background-color: var(--color-primary-green);
    color: #FFF;
}

.pulse-anim {
    animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(60, 166, 80, 0.5);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(60, 166, 80, 0);
    }
}

/* ===== TIPOGRAFIA ===== */
h1,
h2,
h3 {
    line-height: 1.2;
    font-weight: 800;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
}

.title-large {
    font-size: 3rem;
    margin: var(--space-md) 0;
}

/* ===== SECTIONS ===== */
section {
    padding: var(--space-xl) 0;
}

/* LAYOUT GRIDS */
.grid {
    display: grid;
    gap: 30px;
}

/* --- HERO --- */
.hero {
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-title {
    font-size: 4rem;
    color: var(--color-text-main);
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.text-highlight {
    color: var(--color-primary-green);
    position: relative;
    display: inline-block;
    z-index: 1;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: -2px;
    width: 104%;
    height: 12px;
    background-color: var(--color-accent-lime);
    opacity: 0.35;
    z-index: -1;
    transform: rotate(-1.5deg);
    border-radius: 4px;
}

.hero-cta-text {
    font-size: 1.35rem;
    color: var(--color-text-light);
    margin-bottom: 35px;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    width: 100%;
    max-height: 550px;
    object-fit: cover;
}

/* --- FEATURES --- */
.container-features {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.feature-list {
    display: grid;
    gap: 15px;
}

.feature-list li {
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    background: #FFF;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.feature-list .icon {
    font-size: 1.5rem;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(165, 214, 49, 0.3);
    /* Light version of var(--color-accent-lime) */
    border-radius: 50%;
}

.features-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* --- SAUCES GRID --- */
.sauces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.sauces-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* --- SHOWCASE --- */
.showcase-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.recipe-card {
    background: #FFF;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background-color: #fcfcfc;
}

.recipe-content {
    padding: 25px;
}

.recipe-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-text-main);
}

.recipe-content ul {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.col-span-full {
    grid-column: 1 / -1;
    max-width: 400px;
}

/* --- VIDEO --- */
.video-placeholder {
    width: 100%;
    max-width: 800px;
    height: 450px;
    margin: 0 auto;
    background: url('https://images.unsplash.com/photo-1543362906-acfc16c67564?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.video-placeholder:hover::before {
    background: rgba(0, 0, 0, 0.1);
}

.play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 2;
    transition: var(--transition);
}

.video-placeholder:hover .play-btn {
    transform: scale(1.1);
}

/* --- BONUS --- */
.bonus-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.bonus-card {
    background: #cdd2b6;
    border-radius: var(--radius-lg);
    text-align: left;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.bonus-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 20px;
}

.bonus-content {
    padding: 0 25px 30px;
}

.bonus-label {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text-main);
    margin-bottom: 10px;
}

.bonus-card h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.4;
    color: var(--color-text-main);
}

.price-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.price-strikethrough {
    text-decoration: line-through;
    color: var(--color-text-main);
    font-size: 1.2rem;
}

.price-free {
    color: var(--color-text-main);
    font-weight: 500;
    font-size: 1.2rem;
}

/* --- PAIN & OFFER --- */
.pain-offer {
    background-color: #FFF;
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.pain-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.pain-list .icon {
    margin-right: 15px;
}

.rounded-img {
    border-radius: var(--radius-lg);
}

.offer-box {
    margin-top: var(--space-xl);
    background: var(--color-bg-beige);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--color-primary-green);
}

.offer-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--color-text-main);
}

.offer-includes {
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.offer-includes li {
    font-size: 1.2rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
}

.offer-includes .custom-check {
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #3bb566;
    /* Matching the green from the screenshot */
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-container {
    text-align: center;
    margin-bottom: 30px;
}

.old-price {
    font-size: 1.2rem;
    color: var(--color-text-light);
}

.old-price span {
    text-decoration: line-through;
}

.main-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 10px 0;
    color: var(--color-text-main);
}

.main-price span {
    font-size: 4rem;
    color: var(--color-primary-green);
    line-height: 1;
}

.cash-price {
    font-size: 1.1rem;
    font-weight: 500;
}

.urgency-text {
    text-align: center;
    color: var(--color-red-alert);
    font-weight: 800;
    margin-top: 15px;
}

/* --- TESTIMONIALS SLIDER --- */
.slider-container {
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding-bottom: 30px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-img {
    width: 100%;
    flex-shrink: 0;
    height: 500px;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.slider-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: var(--color-primary-green);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--color-primary-green);
    color: #FFF;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--color-primary-green);
}

/* --- FAQ --- */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.acc-item {
    background: #FFF;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.acc-header {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-main);
    color: var(--color-text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.acc-header:hover {
    color: var(--color-primary-green);
}

.acc-header .plus {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-primary-green);
    transition: transform 0.3s ease;
}

.acc-header.active .plus {
    transform: rotate(45deg);
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.acc-body p {
    padding: 0 25px 20px 25px;
    color: var(--color-text-light);
}

/* --- FOOTER --- */
footer {
    background: var(--color-text-main);
    color: #FFF;
    padding: 60px 0 40px 0;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a,
.social-links a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 10px;
    transition: var(--transition);
}

.footer-links a:hover,
.social-links a:hover {
    color: var(--color-accent-lime);
}

/* ===== ANIMATIONS & UTILS ===== */
.shadow-mild {
    box-shadow: var(--shadow-soft);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.load-in-up {
    animation: loadInUp 0.8s ease forwards;
    opacity: 0;
}

@keyframes loadInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

.delay-7 {
    transition-delay: 0.7s;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 900px) {

    .hero-content,
    .container-features,
    .pain-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title,
    .section-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .title-large {
        font-size: 2.2rem;
    }

    .feature-list li,
    .pain-list li {
        text-align: left;
    }

    .hero {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }

    .hero-image img {
        max-height: 400px;
    }

    .cta-desktop {
        display: none !important;
    }

    .cta-mobile {
        display: block !important;
        margin-top: 15px;
    }

    .offer-box {
        padding: 30px 15px;
    }
}