:root {
    /* Color Palette — Verde Oliva */
    --primary-color: #5A6B35;
    /* Verde Oliva */
    --primary-dark: #475628;
    --background-color: #F5F0E6;
    /* Bege Creme Quente */
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --accent-color: #C4A55A;
    /* Dourado Terroso */
    --success-color: #2CAC43;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1.25rem;
    /* Reduced from 1.5rem */
    --spacing-lg: 2rem;
    /* Reduced from 2.5rem */
    --spacing-xl: 2.5rem;
    /* Reduced from 3.5rem */

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: pulseScale 2s infinite ease-in-out;
}

.btn-primary {
    background-color: #2CAC43;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(44, 172, 67, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: #24953A;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 172, 67, 0.6);
}

.btn-large {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    width: 100%;
    max-width: 400px;
}

@keyframes pulseBtn {
    0% {
        box-shadow: 0 0 0 0 rgba(90, 107, 53, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(90, 107, 53, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(90, 107, 53, 0);
    }
}

/* Base Pulse Animation */
@keyframes pulseScale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* ... existing styles ... */

.btn-success {
    background-color: #2CAC43;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(44, 172, 67, 0.4);
}

.btn-success:hover {
    background-color: #24953A;
}

@keyframes pulseSuccess {
    0% {
        box-shadow: 0 0 0 0 rgba(44, 172, 67, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(44, 172, 67, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(44, 172, 67, 0);
    }
}

/* Sections General */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--spacing-xl);
    background: #5A6B35;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    animation: pulseBackground 10s infinite alternate;
}

@keyframes pulseBackground {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: var(--spacing-md);
    letter-spacing: -1px;
    color: var(--white);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
}

.hero h1 .text-primary {
    color: #D4E8C0;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 0.25rem;
    font-weight: 300;
}

/* Green alternating sections */
.section-green {
    background-color: #5A6B35 !important;
    color: var(--white);
}

.section-green h2,
.section-green h3,
.section-green h4,
.section-green p,
.section-green span {
    color: var(--white);
}

.section-green .text-primary {
    color: #D4E8C0;
}

.section-green .feature-item {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.section-green .feature-icon {
    color: #D4E8C0;
}

/* Reset text color inside white cards within green sections */
.section-green .profile-section h2,
.section-green .profile-section h3,
.section-green .profile-section p,
.section-green .profile-section span,
.section-green .profile-section .credential-item span {
    color: var(--text-color) !important;
}

.section-green .profile-section .text-primary {
    color: var(--primary-color);
}

/* Reset text color inside white cards within green sections */
.section-green .pricing-card {
    background: #5A6B35;
    border-color: rgba(255, 255, 255, 0.3);
}

.section-green .pricing-card h2,
.section-green .pricing-card h3,
.section-green .pricing-card h4,
.section-green .pricing-card p,
.section-green .pricing-card li {
    color: var(--white);
}

.section-green .pricing-card .price-old {
    color: rgba(255, 255, 255, 0.6);
}

.section-green .pricing-card .price-installments {
    color: rgba(255, 255, 255, 0.8);
}

.section-green .pricing-card .price-unified,
.section-green .pricing-card .price-installments-large,
.section-green .pricing-card .price-value-large {
    color: #2CAC43 !important;
}

.section-green .pricing-card .pricing-features-list i {
    color: #2CAC43;
}

.section-green .pricing-card .price-per-recipe {
    color: #FFD700;
}

.section-green .pricing-card .guarantee-text-below {
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Carousel */
.hero-carousel {
    max-width: 600px;
    margin: 0 auto var(--spacing-xs);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    border-radius: var(--radius-md);
}

.heroSwiper .swiper-slide {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.heroSwiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 500px;
    border-radius: var(--radius-md);
}

.heroSwiper .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.4;
}

.heroSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

@media (max-width: 767px) {
    .hero-carousel {
        max-width: 100%;
    }

    .heroSwiper .swiper-slide img {
        max-height: 400px;
    }
}

/* Swiper Customization */
.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 500px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile check */
@media (max-width: 767px) {
    .swiper-slide {
        width: 250px;
        height: 400px;
    }
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
    background: rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Features List */
.features-list {
    display: grid;
    gap: var(--spacing-sm);
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Recipe Grid */
.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.recipe-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    top: 0;
}

.recipe-card:hover {
    top: -10px;
    box-shadow: var(--shadow-lg);
}

.recipe-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #eee;
}

.recipe-content {
    padding: var(--spacing-md);
    text-align: center;
}

.recipe-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.recipe-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Recipe Badges */
.recipe-badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-time {
    background: rgba(90, 107, 53, 0.1);
    color: var(--primary-dark);
}

.badge-cal {
    background: rgba(255, 107, 107, 0.1);
    color: #d9534f;
}

/* Nutritionist Profile */
.profile-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.profile-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    filter: blur(80px);
    opacity: 0.1;
    border-radius: 50%;
    pointer-events: none;
}

.profile-content {
    padding: var(--spacing-lg);
    padding-top: var(--spacing-md);
}

.profile-img {
    width: 100%;
    height: 400px;
    border-radius: 0;
    object-fit: cover;
    border: none;
    box-shadow: none;
    background-color: #e0e0e0;
}

@media (max-width: 767px) {
    .profile-img {
        height: 300px;
    }
}

/* Nutri Credentials */
.nutri-credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    text-align: left;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(90, 107, 53, 0.06);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary-color);
}

.credential-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1.4;
}

.credential-item span:last-child {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* Credential items inside green section profile card stay dark */
.section-green .profile-section .credential-item {
    background: rgba(90, 107, 53, 0.06);
    border-left-color: var(--primary-color);
}

/* Bonuses */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.bonus-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.bonus-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: var(--spacing-sm);
    border-radius: var(--radius-sm);
    background-color: #eee;
}

.free-tag {
    color: var(--success-color);
    font-weight: 700;
    margin-top: var(--spacing-xs);
}

/* Pain Points */
.pain-points-list .feature-item {
    border-left: 4px solid #ff6b6b;
}

.pain-points-list .feature-icon {
    color: #ff6b6b;
}

/* Advantages */
.advantages-list .feature-item {
    border-left: 4px solid var(--success-color);
}

.advantages-list .feature-icon {
    color: var(--success-color);
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #d9534f, #c9302c);
    color: var(--white);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 1rem;
    margin: calc(-1 * var(--spacing-lg)) calc(-1 * var(--spacing-lg)) var(--spacing-md);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    text-align: center;
    animation: pulseScale 2s infinite ease-in-out;
}

/* Pricing */
.pricing-card {
    background: var(--white);
    color: var(--text-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

/* ... existing styles ... */

.price-value-large {
    font-size: 50px;
    font-weight: 700;
}

.pricing-header h2 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    text-shadow: none;
}

.pricing-features-list {
    margin: 1rem auto;
    display: inline-block;
    color: var(--text-color);
    font-weight: 600;
}

.pricing-features-list i {
    color: var(--success-color);
    margin-right: 5px;
}

.price-label {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.1rem;
}

.price-unified {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 0.9;
    margin-bottom: 1rem;
    color: #2CAC43;
}

.price-installments-large {
    font-size: 42px;
    font-weight: 900;
    text-transform: lowercase;
    color: #2CAC43;
}

.price-value-large {
    font-size: 60px;
    font-weight: 900;
}

.price-installments {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-success {
    background-color: #2CAC43;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(44, 172, 67, 0.4);
}

.btn-success:hover {
    background-color: #24953A;
}

@keyframes pulseSuccess {
    0% {
        box-shadow: 0 0 0 0 rgba(44, 172, 67, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(44, 172, 67, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(44, 172, 67, 0);
    }
}

/* Urgency Tags (Bonuses) */
.urgency-tag {
    color: #d9534f;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: var(--spacing-xs);
    letter-spacing: 0.5px;
    animation: pulseScale 2s infinite ease-in-out;
}

/* Social Proof Carousel */
.social-carousel {
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.socialSwiper {
    width: 100%;
    border-radius: var(--radius-md);
    padding-top: 0;
    padding-bottom: 40px;
}

.socialSwiper .swiper-slide {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: none;
}

.socialSwiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    display: block;
}

.socialSwiper .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.4;
}

.socialSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

@media (max-width: 767px) {
    .social-carousel {
        max-width: 100%;
    }
}

/* Price Per Recipe Callout */
.price-per-recipe {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: var(--spacing-sm);
    margin-bottom: 0;
}

/* Guarantee Text Below Button */
.guarantee-text-below {
    font-size: 0.9rem;
    color: var(--success-color);
    font-weight: 600;
    margin-top: 1rem;
}

/* Countdown Timer */
.countdown-container {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, #fff5f5, #fff0f0);
    border-radius: var(--radius-md);
    border: 2px solid #d9534f;
}

.countdown-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #d9534f;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.countdown-timer {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin: 0 auto;
}

.countdown-block {
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
}

.countdown-digit {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #d9534f;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 0.3rem 0.8rem;
    min-width: 65px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(217, 83, 79, 0.15);
}

.countdown-unit {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    margin-top: 4px;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: #d9534f;
    padding-bottom: 1.2rem;
    display: inline-block !important;
}

.countdown-subtext {
    font-size: 0.9rem;
    font-weight: 700;
    color: #d9534f;
    margin-top: var(--spacing-sm);
    animation: pulseScale 2s infinite ease-in-out;
}

@media (max-width: 767px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .countdown-digit {
        font-size: 2rem;
        min-width: 55px;
        padding: 0.2rem 0.6rem;
    }
}

/* FAQ / Toggles */
.faq-item {
    background: var(--white);
    margin-bottom: var(--spacing-sm);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: var(--spacing-sm) var(--spacing-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    background: rgba(90, 107, 53, 0.05);
}

.faq-answer {
    padding: 0 var(--spacing-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: var(--spacing-sm) var(--spacing-md);
    max-height: 200px;
}

/* Format Section */
.format-mockup {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: var(--spacing-md) 0;
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* FontAwesome shim for icons if needed, using unicode in pseudo-elements or just SVGs in HTML */

@media (max-width: 767px) {
    .container {
        width: 96%;
        padding: 0 0.5rem;
    }

    .pricing-card {
        max-width: 100%;
        border-width: 2px;
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .btn-large {
        width: 100%;
        max-width: 100%;
        font-size: 1.1rem;
        padding: 1rem;
    }

    .price-value-large {
        font-size: 50px;
    }
}

/* Guarantee Seal */
.guarantee-seal {
    max-width: 150px;
    margin: 0 auto;
    display: block;
}

@media (max-width: 767px) {
    .guarantee-seal {
        max-width: 120px;
    }
}