/* ============================================
   LANDING PAGE — 200 CAFÉS DA MANHÃ SAUDÁVEIS
   Mobile-First · Premium Design
   ============================================ */

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --green-900: #1a4d2e;
    --green-800: #1e5e35;
    --green-700: #22703d;
    --green-600: #2a8c4a;
    --green-500: #34a853;
    --green-400: #4cba6a;
    --green-300: #7dd39b;
    --green-200: #b8e6c8;
    --green-100: #e0f5e7;
    --green-50: #f0faf3;

    /* Warm Neutrals */
    --cream-900: #3d3527;
    --cream-700: #6b5d4d;
    --cream-500: #a89279;
    --cream-300: #d4c5b0;
    --cream-200: #e8ddd0;
    --cream-100: #f5f0e8;
    --cream-50: #faf8f4;

    /* Base */
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-100: #f7f7f7;
    --gray-200: #efefef;
    --gray-300: #d4d4d4;
    --gray-500: #737373;
    --gray-700: #404040;

    /* Functional */
    --cta-green: #2ebd59;
    --cta-green-hover: #26a34d;
    --cta-green-glow: rgba(46, 189, 89, 0.4);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.14);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 100px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--black);
    background: var(--cream-50);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-tag {
    display: inline-block;
    background: var(--green-100);
    color: var(--green-700);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--green-900);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.highlight {
    color: var(--green-500);
    position: relative;
}

.highlight-white {
    color: var(--green-200);
}

/* ===== CTA BUTTON ===== */
.btn-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--cta-green) 0%, var(--green-600) 100%);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px var(--cta-green-glow);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: ctaPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Shimmer light sweep */
.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 80%
    );
    animation: ctaShimmer 2.5s ease-in-out infinite;
}

/* Expanding ring glow */
.btn-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 0 0 rgba(46, 189, 89, 0.5);
    animation: ctaRing 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    pointer-events: none;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px var(--cta-green-glow), 0 0 20px rgba(46, 189, 89, 0.25);
    animation: none;
}

.btn-cta:hover::after {
    animation: none;
}

.btn-cta:active {
    transform: translateY(0) scale(0.97);
}

.btn-cta__icon {
    font-size: 1.2rem;
}

.btn-cta__sub {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.02em;
}

/* Pulse: scale + glow */
@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 16px var(--cta-green-glow);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 28px var(--cta-green-glow), 0 0 48px rgba(46, 189, 89, 0.2);
    }
}

/* Shimmer sweep across button */
@keyframes ctaShimmer {
    0% {
        left: -100%;
    }
    60% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

/* Expanding ring that fades out */
@keyframes ctaRing {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 189, 89, 0.45);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(46, 189, 89, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 189, 89, 0);
    }
}

/* ===== FLOATING CTA ===== */
.floating-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 16px;
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-cta.visible {
    bottom: 0;
}

.btn-cta--floating {
    padding: 14px 20px;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    background: linear-gradient(180deg, var(--green-50) 0%, var(--cream-50) 60%, var(--white) 100%);
    padding: 48px 0 40px;
    overflow: hidden;
}

.hero__bg-overlay {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 30%, rgba(46, 189, 89, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating food emojis */
.floating-food {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: floatFood 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.floating-food--1 {
    top: 8%;
    left: 5%;
    animation-delay: 0s;
    font-size: 1.8rem;
}

.floating-food--2 {
    top: 15%;
    right: 8%;
    animation-delay: 1s;
    font-size: 1.5rem;
}

.floating-food--3 {
    top: 40%;
    left: 2%;
    animation-delay: 2s;
    font-size: 1.3rem;
}

.floating-food--4 {
    top: 55%;
    right: 5%;
    animation-delay: 0.5s;
    font-size: 1.6rem;
}

.floating-food--5 {
    top: 75%;
    left: 10%;
    animation-delay: 3s;
    font-size: 1.4rem;
}

@keyframes floatFood {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-12px) rotate(5deg);
    }

    50% {
        transform: translateY(-6px) rotate(-3deg);
    }

    75% {
        transform: translateY(-15px) rotate(3deg);
    }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    color: var(--green-700);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out;
}

.hero__badge-icon {
    font-size: 1rem;
}

.hero__title {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--green-900);
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero__subtitle {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* HERO MOSAIC */
.hero__mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.mosaic-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 1;
    transform: perspective(600px) rotateY(0deg) translateZ(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: mosaicAppear 0.5s ease-out calc(var(--delay) + 0.3s) forwards;
}

.mosaic-item--large {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
}

.mosaic-item:hover {
    transform: perspective(600px) rotateY(2deg) translateZ(10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mosaic-item:hover img {
    transform: scale(1.08);
}

.mosaic-item__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 12px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

@keyframes mosaicAppear {
    from {
        opacity: 0;
        transform: perspective(600px) rotateY(-5deg) translateZ(-20px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: perspective(600px) rotateY(0) translateZ(0) scale(1);
    }
}

/* Hero CTA */
.btn-cta--hero {
    animation: fadeInUp 0.6s ease-out 0.5s both, ctaPulse 2s cubic-bezier(0.4, 0, 0.6, 1) 1.2s infinite;
    margin-bottom: 20px;
}

/* Hero Trust */
.hero__trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
}

.trust-icon {
    font-size: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RECIPE CAROUSEL ===== */
.recipes {
    padding: 56px 0;
    background: var(--white);
}

.recipe-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0 -20px;
    padding: 0 20px;
}

.recipe-carousel::-webkit-scrollbar {
    display: none;
}

.recipe-carousel__track {
    display: flex;
    gap: 16px;
    padding: 8px 0 16px;
}

.recipe-card {
    flex-shrink: 0;
    width: 260px;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    scroll-snap-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: perspective(800px) rotateY(0);
}

.recipe-card:hover {
    transform: perspective(800px) rotateY(-2deg) translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.recipe-card__image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.recipe-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-card__image img {
    transform: scale(1.08);
}

.recipe-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--green-800);
    box-shadow: var(--shadow-sm);
}

.recipe-card__content {
    padding: 16px;
}

.recipe-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-900);
    margin-bottom: 8px;
    line-height: 1.3;
}

.recipe-card__meta {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--green-500);
    width: 24px;
    border-radius: var(--radius-full);
}

/* ===== BENEFITS ===== */
.benefits {
    padding: 56px 0;
    background: var(--green-50);
}

.benefits__grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    border-left: 4px solid var(--green-400);
}

.benefit-card.animate-in {
    opacity: 1;
    transform: translateX(0);
    transition-delay: calc(var(--i) * 0.08s);
}

.benefit-card__icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-100);
    border-radius: var(--radius-md);
}

.benefit-card__text h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--green-900);
    margin-bottom: 2px;
}

.benefit-card__text p {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.4;
}

/* ===== CTA MID ===== */
.cta-mid {
    padding: 40px 0;
    background: var(--white);
}

.cta-mid__box {
    background: linear-gradient(135deg, var(--green-100), var(--cream-100));
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    text-align: center;
    border: 1px solid var(--green-200);
}

.cta-mid__text {
    font-size: 1rem;
    color: var(--green-900);
    margin-bottom: 16px;
    line-height: 1.5;
}

.btn-cta--mid {
    font-size: 0.95rem;
}

/* ===== AUTHORITY ===== */
.authority {
    padding: 56px 0;
    background: var(--cream-50);
}

.authority__card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.authority__image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.authority__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.authority__badge-pro {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--green-700);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 6px;
}

.authority__content {
    padding: 24px;
}

.authority__title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--green-900);
    margin-bottom: 12px;
    line-height: 1.3;
}

.authority__text {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 12px;
}

.authority__stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--green-600);
    line-height: 1.2;
}

.stat__label {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* ===== PROBLEMS ===== */
.problems {
    padding: 56px 0;
    background: var(--white);
}

.problems__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--cream-50);
    padding: 16px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--cream-200);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.problem-item.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--i) * 0.1s);
}

.problem-item__icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.problem-item p {
    font-size: 0.95rem;
    color: var(--cream-900);
    font-weight: 500;
    line-height: 1.4;
}

.problems__conclusion {
    text-align: center;
    font-size: 0.95rem;
    color: var(--green-700);
    background: var(--green-50);
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px dashed var(--green-300);
}

/* ===== BONUSES ===== */
.bonuses {
    padding: 56px 0;
    background: linear-gradient(180deg, var(--green-50) 0%, var(--cream-50) 100%);
}

.bonuses__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bonus-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    position: relative;
    opacity: 0;
    transform: translateY(20px) perspective(500px) rotateX(2deg);
    transition: all 0.5s ease;
}

.bonus-card.animate-in {
    opacity: 1;
    transform: translateY(0) perspective(500px) rotateX(0);
    transition-delay: calc(var(--i) * 0.15s);
}

.bonus-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.bonus-card__image {
    height: 160px;
    overflow: hidden;
}

.bonus-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bonus-card:hover .bonus-card__image img {
    transform: scale(1.06);
}

.bonus-card__content {
    padding: 16px 20px;
}

.bonus-card__content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green-900);
    margin-bottom: 8px;
    line-height: 1.3;
}

.bonus-card__price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-old {
    font-size: 0.85rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

.price-free {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--green-500);
    background: var(--green-100);
    padding: 2px 12px;
    border-radius: var(--radius-full);
}

/* ===== VISUAL PROOF ===== */
.visual-proof {
    padding: 56px 0;
    background: var(--white);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.proof-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 1;
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.4s ease;
}

.proof-item.animate-in {
    opacity: 1;
    transform: scale(1);
}

.proof-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.proof-item:hover img {
    transform: scale(1.1);
}

/* ===== ADVANTAGES ===== */
.advantages {
    padding: 56px 0;
    background: var(--green-50);
}

.advantages__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.advantage-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.advantage-item__check {
    color: var(--green-500);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.advantage-item p {
    font-size: 0.92rem;
    color: var(--gray-700);
    line-height: 1.4;
}

/* ===== OFFER ===== */
.offer {
    padding: 56px 0;
    background: var(--cream-50);
}

.offer__card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 32px 24px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    border: 2px solid var(--green-300);
    position: relative;
    overflow: hidden;
}

.offer__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-400), var(--green-600), var(--green-400));
}

.offer__header {
    margin-bottom: 20px;
}

.offer__tag {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff4444);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    animation: ctaPulse 2s ease-in-out infinite;
}

.offer__title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--green-900);
}

.offer__price-box {
    margin-bottom: 24px;
}

.offer__price-from {
    font-size: 0.9rem;
    color: var(--gray-500);
    display: block;
    margin-bottom: 4px;
}

.offer__price-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    line-height: 1;
}

.offer__currency {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green-600);
    margin-top: 8px;
}

.offer__value {
    font-size: 4rem;
    font-weight: 900;
    color: var(--green-600);
    line-height: 1;
}

.offer__price-installment {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 4px;
    display: block;
}

.offer__includes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    text-align: left;
}

.offer__include-item {
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: 500;
    padding: 8px 12px;
    background: var(--green-50);
    border-radius: var(--radius-sm);
}

.btn-cta--offer {
    margin-bottom: 20px;
    font-size: 1.1rem;
    padding: 20px 24px;
}

.offer__guarantee {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 16px;
    background: var(--cream-50);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.guarantee-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.guarantee-text strong {
    font-size: 0.9rem;
    color: var(--green-800);
    display: block;
    margin-bottom: 2px;
}

.guarantee-text p {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.4;
}

.offer__payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    color: var(--gray-500);
}

.offer__secure {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-500);
}

/* ===== CTA FINAL ===== */
.cta-final {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 50%, #0d3320 100%);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(46, 189, 89, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-final__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-final__title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 16px;
}

.cta-final__text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 28px;
}

.btn-cta--final {
    background: var(--white);
    color: var(--green-800);
    box-shadow: 0 4px 24px rgba(255, 255, 255, 0.2);
}

.btn-cta--final:hover {
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3);
}

.btn-cta--final .btn-cta__sub {
    color: var(--green-600);
    opacity: 1;
}

.cta-final__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    padding: 32px 0;
    background: var(--black);
    text-align: center;
}

.footer__text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.footer__disclaimer {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.5;
    max-width: 320px;
    margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 480px) {
    .container {
        max-width: 560px;
        padding: 0 24px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .recipe-card {
        width: 280px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 32px;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__mosaic {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px;
    }

    .mosaic-item--large {
        grid-column: 1 / 3;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefits__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .bonuses__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .proof-grid {
        gap: 8px;
    }

    .recipe-card {
        width: 300px;
    }

    .floating-cta {
        display: none;
    }

    .authority__card {
        display: grid;
        grid-template-columns: 280px 1fr;
    }

    .authority__image-wrapper {
        height: 100%;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 900px;
        padding: 0 40px;
    }

    .hero__title {
        font-size: 2.8rem;
    }

    .hero__mosaic {
        grid-template-columns: repeat(3, 1fr);
    }

    .bonuses__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .proof-grid {
        gap: 10px;
    }

    .recipe-card {
        width: 320px;
    }
}

/* ===== PERFORMANCE: REDUCE MOTION ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .floating-food {
        display: none;
    }
}