:root {
    --primary-bg: #5a5f3a;
    --accent-color: #2ecc71;
    --accent-hover: #27ae60;
    --text-white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --card-bg: #ffffff;
    --transition: all 0.3s ease;
    --max-width: 1100px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f9f9f9;
    overflow-x: hidden;
    padding-top: 0;
    /* Ensure no gap at the top */
}

.top-promo-banner {
    background-color: #cc0000;
    /* Strong solid red */
    color: #ffffff;
    text-align: center;
    padding: 10px 20px;
    width: 100%;
    z-index: 9999;
}

.top-promo-banner p {
    margin: 0;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    /* Chamativa / Grossa */
    text-transform: uppercase;
    /* Caixa Alta */
}

.top-promo-banner .line1 {
    font-size: 1.1rem;
    display: block;
}

.top-promo-banner .line2 {
    font-size: 0.85rem;
    font-weight: 700;
    display: block;
    margin-top: 2px;
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO SECTION */
.hero {
    background-color: var(--primary-bg);
    color: var(--text-white);
    padding: 100px 0 80px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* RECIPE VITRINE */
.recipe-vitrine {
    padding: 60px 0;
    background-color: var(--primary-bg);
    margin-bottom: 0;
}

.vitrine-headline {
    color: white;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 900;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.recipe-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.recipe-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.recipe-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

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

.recipe-item:hover img {
    transform: scale(1.1);
}

/* CTA BUTTONS */
.cta-container {
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    padding: 20px 60px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(46, 204, 113, 0.4);
}

/* BENEFITS */
.benefits {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.benefit-card {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    background: #fbfbfb;
    transition: var(--transition);
}

.benefit-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* TESTIMONIALS */
.testimonials {
    padding: 100px 0;
    background-color: #f4f4f4;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* INSTAGRAM TESTIMONIALS STYLE */
.instagram-testimonials-list {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 10px;
}

.instagram-comment {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.comment-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.comment-content {
    flex: 1;
}

.comment-header {
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-username {
    font-weight: 700;
    font-size: 0.95rem;
    color: #262626;
}

.comment-time {
    color: #8e8e8e;
    font-size: 0.85rem;
}

.comment-text {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #262626;
    margin-bottom: 8px;
}


/* GUARANTEE */
.guarantee {
    padding: 80px 0;
    background-color: #ffffff;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    background: #fffdf0;
    padding: 40px;
    border-radius: 20px;
    border: 2px dashed #D4AF37;
    margin: 0 auto;
}

.guarantee-text h3 {
    font-size: 1.5rem;
    color: #b8860b;
    margin-bottom: 10px;
}

/* FINAL CTA */
.final-cta {
    padding: 100px 0;
    text-align: center;
    background-color: var(--primary-bg);
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.secure-checkout {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* DETAILS LIST SECTION */
.details-list {
    padding: 100px 0;
    background-color: #f6f1e7;
}

.dark-green {
    color: #2d301d;
    /* Dark Olive Green */
    margin-bottom: 40px;
}

.list-wrapper {
    max-width: 650px;
    margin: 0 auto 50px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

.feature-list li:last-child {
    border-bottom: none;
}

.list-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* LEARNING SECTION */
.learning-section {
    padding: 100px 0;
    background-color: var(--primary-bg);
    text-align: center;
}

.learning-title {
    color: white;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.learning-title span {
    font-weight: 900;
    font-size: 3rem;
}

.learning-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.recipe-card {
    background-color: #f6f1e7;
    width: 100%;
    max-width: 800px;
    border-radius: 0;
    /* Straight borders as requested */
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.recipe-card img {
    width: 100%;
    height: 480px;
    /* Increased to occupy approx 60% of the card height */
    object-fit: cover;
    display: block;
    border-bottom: 3px solid #e0dbd0;
    /* Subtle divider */
}

.recipe-card-content {
    padding: 30px 20px 40px;
    height: auto;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recipe-card h3 {
    color: #2d301d;
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.recipe-card p {
    color: #666;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
}

/* NUTRITIONIST SECTION */
.nutritionist-section {
    padding: 100px 0;
    background-color: var(--primary-bg);
    text-align: center;
    color: white;
}

.nutri-main-title {
    font-size: 3rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 900;
}

.nutri-image-wrapper {
    margin: 60px auto;
    max-width: 1000px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.nutri-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.nutri-profile {
    max-width: 700px;
    margin: 0 auto;
}

.nutri-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.nutri-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #f6f1e7;
    font-weight: 300;
}

/* PROBLEM SECTION */
.problem-section {
    padding: 100px 0;
    background-color: var(--primary-bg);
    color: white;
}

.problem-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.problem-left {
    flex: 1;
}

.problem-main-title {
    font-size: 3.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 900;
}

.problem-right {
    flex: 1.2;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.problem-list li:last-child {
    margin-bottom: 0;
}

.icon-x {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
}

.problem-list p {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .problem-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .problem-main-title {
        font-size: 2.5rem;
    }

    .problem-list li {
        justify-content: center;
        text-align: left;
    }
}

/* ADVANTAGES SECTION */
.advantages-section {
    padding: 100px 0;
    background-color: #f6f1e7;
    text-align: center;
}

.advantages-title {
    color: #5a5f3a;
    /* Lighter olive */
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 400;
}

.advantages-title strong {
    font-weight: 900;
    color: #2d301d;
    /* Darker olive */
}

/* ADVANTAGES SECTION V2 - NEW (MODERN VERTICAL) */
.advantages-v2 {
    padding: 100px 0;
    background-color: #f6f1e7;
    width: 100%;
}

.container-v2 {
    max-width: 600px;
    /* Thinner container for vertical look */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.v2-title {
    color: #5a5f3a;
    font-size: 2.2rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 400;
    text-align: center;
}

.v2-title strong {
    font-weight: 900;
    color: #2d301d;
}

.v2-list {
    list-style: none;
    margin-bottom: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center the list as a block */
}

.v2-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    width: 100%;
    max-width: 450px;
    /* Inner width to keep text left-aligned to icon */
}

.v2-icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}

.v2-list p {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
    margin: 0;
}

.v2-cta-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (max-width: 600px) {
    .v2-title {
        font-size: 1.8rem;
    }

    .v2-list {
        padding: 0 20px;
    }

    .v2-list p {
        font-size: 1.1rem;
    }
}

.advantages-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 50px;
    text-align: left;
}

.advantages-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.icon-check {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.advantages-list p {
    font-size: 1.25rem;
    color: var(--dark-olive);
    font-weight: 500;
}

@media (max-width: 600px) {
    .advantages-title {
        font-size: 2rem;
    }

    .advantages-list {
        padding: 0 20px;
    }
}

/* BONUS SECTION */
.bonus-section {
    padding: 80px 0;
    background-color: #f6f1e7;
    text-align: center;
}

.bonus-main-title {
    color: var(--dark-olive);
    font-size: 1.8rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.1;
}

.bonus-main-title span {
    font-weight: 900;
    font-size: 2.2rem;
    display: block;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.bonus-card {
    background-color: var(--primary-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    padding: 15px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.bonus-image {
    height: 190px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.bonus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-content {
    color: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bonus-label {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.bonus-content h3 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1.2;
    min-height: 2.4em;
}

.price-box {
    text-align: center;
    margin-top: auto;
    padding-bottom: 10px;
}

.price-old-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: -5px;
}

.price-old-text s {
    opacity: 0.8;
}

.price-free-text {
    color: #2ecc71;
    font-weight: 900;
    font-size: 1.8rem;
    margin: 0;
    letter-spacing: 1px;
}

.bonus-cta {
    padding: 15px 40px;
    font-size: 1rem;
    border-radius: 6px;
    width: fit-content;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .bonus-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ANIMATIONS */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* FOOTER */
.main-footer {
    padding: 40px 0;
    text-align: center;
    background-color: #222;
    color: #888;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .recipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-testimonials-list {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .recipe-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-button {
        padding: 15px 30px;
        font-size: 1.3rem;
        width: 100%;
    }

    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
}

/* FAQ SECTION */
.faq-section {
    padding: 80px 0;
    background-color: #f6f1e7;
    width: 100%;
}

.faq-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.faq-icon {
    width: 40px;
    height: 40px;
    color: #5a5f3a;
}

.faq-title {
    font-size: 2.22rem;
    color: #2d301d;
    text-transform: uppercase;
    font-weight: 900;
}

.faq-cards-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background-color: #ff4500;
    /* Strong Orange */
    padding: 20px 25px;
    font-weight: 800;
    /* Bold */
    color: #ffffff;
    /* White */
    font-size: 1.15rem;
}

.faq-answer {
    padding: 25px;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .faq-title {
        font-size: 1.8rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 1rem;
    }
}

/* DELIVERY SECTION */
.delivery-section {
    padding: 80px 0;
    background-color: #fbfbfb;
    /* Soft white/bege */
    width: 100%;
    text-align: center;
}

.delivery-title {
    font-size: 3rem;
    color: #2d301d;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 900;
}

.delivery-card {
    background-color: white;
    max-width: 600px;
    margin: 0 auto;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.delivery-main-text {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.delivery-instant {
    color: #ff4500;
    /* Strong Orange */
    font-weight: 900;
}

.delivery-sub-text {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.4;
}

.delivery-whatsapp {
    color: #2ecc71;
    /* Vibrant Green */
    font-weight: 700;
}

.delivery-footer-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: #2d301d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .delivery-title {
        font-size: 2.2rem;
    }

    .delivery-main-text {
        font-size: 1.8rem;
    }

    .delivery-sub-text {
        font-size: 1.1rem;
    }

    .delivery-footer-text {
        font-size: 1.5rem;
    }
}



/* EXTENDED GUARANTEE SECTION */
.extended-guarantee {
    padding: 100px 0;
    background-color: #f6f1e7;
    /* Light beige */
    width: 100%;
    text-align: center;
}

.guarantee-main-title {
    font-size: 2.8rem;
    color: #2d301d;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 400;
}

.guarantee-main-title strong {
    font-weight: 900;
    color: #ff4500;
    /* Strong Orange */
}

.guarantee-subtitle {
    font-size: 1.4rem;
    color: #5a5f3a;
    margin-bottom: 50px;
    font-weight: 500;
}

.guarantee-card-final {
    background-color: white;
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.guarantee-shield {
    width: 200px;
    height: 200px;
    margin-bottom: 0px;
}

.guarantee-card-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #333;
}

.guarantee-card-text h4 {
    font-size: 1.6rem;
    color: #2d301d;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.bonus-refund {
    font-size: 1.4rem;
    color: #2ecc71;
    /* Vibrant Green */
    font-weight: 900;
    margin: 20px 0;
    padding: 15px;
    background-color: rgba(46, 204, 113, 0.1);
    border-radius: 10px;
    display: inline-block;
}

.guarantee-no-questions {
    font-size: 1.1rem;
    color: #666;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .guarantee-main-title {
        font-size: 2rem;
    }

    .guarantee-subtitle {
        font-size: 1.1rem;
    }

    .guarantee-card-final {
        padding: 40px 20px;
    }

    .guarantee-shield {
        width: 150px;
        height: 150px;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(46, 204, 113, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.botao-pulsante {
    animation: pulse 1.8s infinite;
}

/* SOCIAL PROOF POPUP */
.social-proof-popup {
    position: fixed;
    top: 25px;
    right: 25px;
    background-color: #ffffff;
    color: #333333;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    border-left: 5px solid #2ecc71;
    max-width: 320px;
    display: none;
}

.social-proof-popup.visible {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 600px) {
    .social-proof-popup {
        top: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
        transform: translateY(-20px);
    }

    .social-proof-popup.visible {
        transform: translateY(0);
    }
}

.result-badge-container {
    text-align: center;
    margin-bottom: 20px;
}

@keyframes soft-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(255, 122, 0, 0.2);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 15px rgba(255, 122, 0, 0.3);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(255, 122, 0, 0.2);
    }
}

.carousel-result-badge {
    display: inline-block;
    background-color: #FF7A00;
    /* Laranja sólido */
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255, 122, 0, 0.2);
    /* Sombra suave estática */
    text-shadow: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    animation: soft-pulse 3s infinite ease-in-out;
    /* Pulse lento e sutil */
}

/* RECIPE CAROUSEL */
.recipe-carousel-section {
    padding: 60px 0;
    background-color: #fbfbfb;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 50px;
}

.carousel-track-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    flex: 0 0 50%;
    /* 2 images on desktop */
    padding: 10px;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* Restaurado conforme original */
    display: block;
}


.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a5f3a;
    transition: all 0.2s ease;
    opacity: 0.6;
}

.carousel-button:hover {
    background: #f8f8f8;
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.carousel-button svg {
    width: 24px;
    height: 24px;
}

.carousel-button--left {
    left: 5px;
}

.carousel-button--right {
    right: 5px;
}

.is-hidden {
    display: none;
}

@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 100%;
        /* 1 image on mobile */
    }

    .carousel-container {
        padding: 0 15px;
    }

    .carousel-button {
        display: none;
        /* Hide arrows on mobile as per requirement */
    }

    .carousel-slide img {
        height: 300px;
    }
}