@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
    --brown:      #5D3A1A;
    --brown-dark: #3D2510;
    --brown-mid:  #7A4E2D;
    --honey:      #D4A843;
    --honey-dark: #B8922F;
    --cream:      #FFF9F0;
    --cream-dark: #F5EDE0;
    --white:      #FFFFFF;
    --text:       #3D2510;
    --muted:      #8A7560;
    --border:     #E8D8C0;
    --green-ok:   #22C55E;
    --red-x:      #EF4444;
    --font: 'Nunito', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    user-select: none;
    -webkit-user-select: none;
}

img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

h1, h2, h3 { font-weight: 800; line-height: 1.2; }
p { margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-honey  { color: var(--honey); }
.text-muted-light { color: #A08878; font-size: 1.05rem; }
.mt-30 { margin-top: 30px; }

/* ======================== SECTIONS ======================== */
.section-white  { padding: 55px 0; background: var(--white); }
.section-cream  { padding: 55px 0; background: var(--cream); }
.section-dark   { padding: 55px 0; background: var(--brown-dark); }
.section-offer  { padding: 55px 0; background: var(--brown); }

.section-title {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 28px;
    color: var(--brown-dark);
}

.section-dark .section-title,
.section-offer .section-title { color: var(--white); }

/* ======================== TOP BAR ======================== */
.top-bar {
    background: var(--brown-dark);
    color: var(--honey);
    text-align: center;
    padding: 10px;
    font-size: .85rem;
    font-weight: 700;
}
.top-bar p { margin: 0; }
#countdown { color: var(--honey); font-size: 1.1rem; letter-spacing: 1px; }

/* ======================== HERO ======================== */
.hero { background: var(--brown-dark); }

.hero-img-wrap {
    position: relative;
    width: 100%;
    max-height: 420px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-text h1 {
    font-size: 2.6rem;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-sub {
    font-size: .9rem;
    font-weight: 900;
    color: var(--honey);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    background: rgba(0,0,0,0.35);
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
}

/* Badge row under hero image */
.badge-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--honey);
    flex-wrap: wrap;
}

.badge-pill {
    background: var(--brown-dark);
    color: var(--white);
    font-size: .82rem;
    font-weight: 900;
    padding: 6px 16px;
    border-radius: 50px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero CTA block */
.hero-cta-block {
    padding: 30px 20px 40px;
    text-align: center;
}

.hero-hook {
    font-size: 1.15rem;
    color: var(--cream);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.5;
}

.hero-hook strong {
    color: var(--honey);
}

.hero-trust {
    margin-top: 12px;
    font-size: .82rem;
    color: #A08878;
    font-weight: 700;
    margin-bottom: 0;
}

.hero-trust i { color: var(--green-ok); }

/* ======================== BUTTONS ======================== */
.btn-cta {
    display: block;
    width: 100%;
    background: var(--honey);
    color: var(--brown-dark) !important;
    padding: 18px 20px;
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 0 var(--honey-dark);
    position: relative;
    top: 0;
    transition: all .2s;
}

.btn-cta:active { top: 6px; box-shadow: 0 0 0 var(--honey-dark); }
.btn-cta:hover  { background: #E0B850; }

.btn-outline-dark {
    display: block;
    width: 100%;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    padding: 16px 20px;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: all .2s;
}

.btn-outline-dark:hover { border-color: var(--honey); color: var(--honey); }

.pulse-btn { animation: pulse 2.2s infinite; }
@keyframes pulse {
    0%, 100% { transform: scale(1) }
    50% { transform: scale(1.025) }
}

/* ======================== RECIPE GRID ======================== */
.recipe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.recipe-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 16px rgba(61,37,16,0.15);
}

.recipe-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.recipe-card span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(30,10,0,0.85));
    color: var(--white);
    font-size: .78rem;
    font-weight: 800;
    padding: 20px 8px 8px;
    text-align: center;
    line-height: 1.3;
}

.recipe-note {
    text-align: center;
    font-size: 1rem;
    color: var(--muted);
    font-weight: 600;
    margin: 0;
}

.recipe-note strong {
    color: var(--brown);
}

/* ======================== INCLUDE LIST ======================== */
.include-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.include-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,255,255,0.06);
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
}

.include-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.include-item p {
    color: #E8D8C0;
    font-size: .95rem;
    margin: 0;
    font-weight: 600;
}

.include-item strong {
    color: var(--honey);
}

/* ======================== CAROUSEL ======================== */
.carousel-wrap { margin-top: 30px; }

.carousel-label {
    text-align: center;
    color: #A08878;
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.carousel-track-outer {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carousel-track-outer::before,
.carousel-track-outer::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
}

.carousel-track-outer::before {
    left: 0;
    background: linear-gradient(to right, var(--brown-dark), transparent);
}

.carousel-track-outer::after {
    right: 0;
    background: linear-gradient(to left, var(--brown-dark), transparent);
}

.carousel-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: scrollTrack 22s linear infinite;
}

@keyframes scrollTrack {
    0%   { transform: translateX(0) }
    100% { transform: translateX(-50%) }
}

.carousel-slide {
    flex-shrink: 0;
    width: 180px;
    background: #5D3A1A;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.carousel-slide img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

/* ======================== BONUS ======================== */
.bonus-simple-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bonus-simple-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
}

.bonus-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--honey);
    flex-shrink: 0;
    line-height: 1;
    width: 36px;
}

.bonus-info h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--brown-dark);
}

.bonus-info p {
    font-size: .88rem;
    color: var(--muted);
    margin: 0;
}

/* ======================== TESTIMONIALS ======================== */
.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card.light {
    background: var(--cream);
    border-radius: 14px;
    padding: 20px;
    border: 1px solid var(--border);
}

.stars { font-size: 1rem; margin-bottom: 10px; }

.testimonial-text {
    font-size: .95rem;
    color: var(--brown);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.client-photo { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--honey); flex-shrink: 0; }
.author-meta strong { display: block; color: var(--brown-dark); font-size: .9rem; }
.author-meta span   { font-size: .78rem; color: var(--muted); }

/* ======================== PRICING ======================== */
.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.pricing-card {
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    position: relative;
    color: var(--white);
}

.pricing-card.premium {
    border-color: var(--honey);
    background: rgba(212,168,67,0.08);
}

.pricing-card h3 { font-size: 1.3rem; margin-bottom: 5px; color: var(--white); }
.pricing-desc { color: rgba(255,255,255,0.6); font-size: .9rem; margin-bottom: 15px; }

.rec-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--honey);
    color: var(--brown-dark);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 900;
    white-space: nowrap;
}

.price-block { margin: 15px 0; }

.old-price {
    display: block;
    color: rgba(255,255,255,0.45);
    text-decoration: line-through;
    font-size: .95rem;
    font-weight: 700;
}

.price-main {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.save-tag {
    display: inline-block;
    background: var(--green-ok);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 800;
    margin-top: 6px;
}

.pricing-features {
    text-align: left;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px;
    margin: 18px 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: .93rem;
    color: rgba(255,255,255,0.9);
}

.pricing-features li:last-child { margin-bottom: 0; }
.pricing-features i { color: var(--green-ok); font-size: 1rem; }

.micro-text { font-size: .78rem; color: rgba(255,255,255,0.45); margin-top: 10px; }

.upgrade-nudge {
    background: rgba(0,0,0,0.25);
    border-radius: 10px;
    padding: 12px;
    margin-top: 14px;
    border: 1px solid rgba(212,168,67,0.25);
}

.upgrade-nudge p {
    font-size: .82rem;
    color: rgba(255,255,255,0.6);
    font-weight: 700;
    margin: 0;
}

/* ======================== GUARANTEE ======================== */
.guarantee-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(34,197,94,0.3);
    border-radius: 14px;
    padding: 20px;
    margin-top: 25px;
}

.guarantee-box i { font-size: 2.2rem; color: var(--green-ok); flex-shrink: 0; }
.guarantee-box h3 { font-size: 1rem; margin-bottom: 4px; color: var(--white); }
.guarantee-box p  { margin: 0; font-size: .88rem; color: rgba(255,255,255,0.6); }

/* ======================== FAQ ======================== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-btn {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    background: none;
    border: none;
    font-family: var(--font);
    font-weight: 700;
    font-size: .95rem;
    color: var(--brown-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-btn i { color: var(--honey); transition: transform .3s; }

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 20px;
    color: var(--muted);
    font-size: .93rem;
}

.faq-card.active .faq-content { max-height: 300px; padding: 0 20px 16px; }
.faq-card.active .faq-btn i   { transform: rotate(180deg); }

.faq-support {
    margin-top: 30px;
    text-align: center;
    background: var(--cream-dark);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.faq-support p { color: var(--brown-dark); font-weight: 700; margin-bottom: 12px; }

.btn-whatsapp-support {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 900;
    font-size: .95rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

.btn-whatsapp-support:hover { background: #128C7E; transform: translateY(-2px); }

/* ======================== FOOTER ======================== */
footer {
    background: #1E130A;
    color: #6B5A4A;
    text-align: center;
    padding: 30px 20px;
    font-size: .85rem;
}

.disclaimer { margin-top: 8px; font-size: .75rem; }

/* ======================== STICKY ======================== */
.sticky-cta {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    background: var(--brown-dark);
    padding: 12px 20px 20px;
    z-index: 100;
    border-top: 1px solid rgba(212,168,67,0.2);
    transform: translateY(100%);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

/* ======================== MODAL ======================== */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(10,5,0,0.92);
    display: flex; align-items: center; justify-content: center;
    z-index: 300;
    opacity: 0; visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    padding: 15px;
    backdrop-filter: blur(8px);
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-box {
    background: #fff;
    border-radius: 24px;
    padding: 0;
    max-width: 520px; width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.6);
    position: relative;
    overflow-y: auto;
    max-height: 95vh;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.modal-overlay.active .modal-box { transform: scale(1); }

.modal-close {
    position: absolute; top: 14px; right: 14px;
    background: rgba(0,0,0,0.06); border: none; font-size: 1.1rem; cursor: pointer;
    width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #64748b; z-index: 10; transition: all 0.2s;
}

.modal-close:hover { background: #fee2e2; color: #ef4444; }

.modal-header-special {
    background: linear-gradient(135deg, #FFF9F0, #F5EDE0);
    padding: 32px 28px 22px;
    border-bottom: 1px solid var(--border);
}

.modal-badge-exclusive {
    display: inline-block; background: var(--honey); color: var(--brown-dark);
    font-size: .7rem; font-weight: 900; padding: 4px 14px; border-radius: 50px;
    margin-bottom: 10px; letter-spacing: 1px;
}

.modal-title { font-size: 1.4rem; color: var(--brown-dark); margin: 0; font-weight: 900; }

.modal-body { padding: 26px; }
.modal-intro { font-size: .93rem; color: #64748b; line-height: 1.5; margin-bottom: 20px; }

.modal-offer-card {
    display: flex; background: #f9f9f7; border: 1px solid #EEE;
    border-radius: 16px; overflow: hidden; margin-bottom: 20px; text-align: left;
}

.offer-left { flex: 1; padding: 18px; }
.offer-label { font-size: .62rem; font-weight: 900; color: var(--muted); display: block; margin-bottom: 4px; text-transform: uppercase; }
.offer-title { font-size: 1rem; color: var(--brown-dark); margin-bottom: 10px; }
.offer-benefits { list-style: none; padding: 0; margin: 0; }
.offer-benefits li { font-size: .83rem; color: #4B5563; display: flex; align-items: center; gap: 7px; margin-bottom: 5px; font-weight: 700; }
.offer-benefits i { color: var(--green-ok); font-size: .85rem; }

.offer-right {
    background: #fff; width: 130px;
    display: flex; align-items: center; justify-content: center;
    border-left: 1px solid #EEE; padding: 16px;
}

.modal-pricing { text-align: center; }
.old-tag { font-size: .73rem; color: var(--muted); text-decoration: line-through; display: block; font-weight: 700; }
.new-price-wrap { color: var(--honey); margin: 2px 0; }
.new-price-wrap .currency { font-size: .78rem; font-weight: 900; }
.new-price-wrap .amount  { font-size: 1.8rem; font-weight: 900; line-height: 1; }
.save-pill { display: block; background: #dcfce7; color: #166534; font-size: .63rem; font-weight: 900; padding: 3px 8px; border-radius: 4px; margin-top: 4px; }

.modal-urgency-bar {
    background: #f1f5f9; height: 32px; border-radius: 50px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; font-size: .78rem; color: #475569; margin-bottom: 16px;
}

.urgency-fill {
    position: absolute; left: 0; top: 0; bottom: 0;
    background: rgba(212,168,67,0.15); transition: width 1s linear;
}

.modal-urgency-bar span { position: relative; z-index: 1; font-weight: 700; }
.modal-urgency-bar strong { color: var(--honey); }

.btn-skip {
    background: none; border: none; color: #64748b;
    font-size: .83rem; font-weight: 700; text-decoration: underline;
    cursor: pointer; margin-top: 16px; padding: 8px;
    display: block; width: 100%; transition: color 0.2s;
}

.btn-skip:hover { color: var(--brown-dark); }

/* ======================== SCROLL INDICATOR ======================== */
.scroll-indicator {
    position: fixed; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    color: #fff; background: rgba(30,10,0,0.8); backdrop-filter: blur(8px);
    padding: 10px 18px; border-radius: 50px; z-index: 10001;
    opacity: 0; visibility: hidden; transition: all 0.5s ease;
    pointer-events: none; box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    border: 1px solid rgba(212,168,67,0.3);
}

.scroll-indicator.visible { opacity: 1; visibility: visible; bottom: 50px; }
.scroll-indicator p { font-size: .68rem; font-weight: 800; margin: 0 !important; text-transform: uppercase; letter-spacing: 1.5px; color: var(--honey); }
.scroll-indicator i { font-size: 1.1rem; color: #fff; animation: bounce-scroll 2s infinite; }

@keyframes bounce-scroll {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40%  { transform: translateY(-8px); }
    60%  { transform: translateY(-4px); }
}

/* ======================== RESPONSIVE ======================== */

/* --- SMALL PHONES (≤ 480px) --- */
@media (max-width: 480px) {

    /* SECTIONS — mais espaçamento vertical */
    .section-white,
    .section-cream,
    .section-dark,
    .section-offer { padding: 44px 0; }

    .section-title { font-size: 1.35rem; margin-bottom: 22px; }

    /* CONTAINER — padding lateral confortável */
    .container-narrow { padding: 0 18px; }

    /* TOP BAR */
    .top-bar { font-size: .8rem; padding: 10px 14px; }

    /* HERO IMAGE — altura menor para dar espaço ao texto */
    .hero-img { height: 260px; }

    .hero-text h1 {
        font-size: 1.9rem;
        letter-spacing: 0;
    }

    .hero-sub {
        font-size: .78rem;
        letter-spacing: 1.2px;
        padding: 5px 12px;
    }

    /* HERO CTA BLOCK */
    .hero-cta-block { padding: 24px 18px 36px; }

    .hero-hook {
        font-size: 1rem;
        line-height: 1.55;
        margin-bottom: 20px;
    }

    .hero-trust { font-size: .78rem; }

    /* BADGE ROW — envolve bem em 1-2 linhas */
    .badge-row {
        gap: 8px 8px;
        padding: 12px 16px;
    }

    .badge-pill {
        font-size: .76rem;
        padding: 5px 12px;
    }

    /* BUTTONS — altura mínima confortável para toque */
    .btn-cta {
        font-size: 1rem;
        padding: 17px 14px;
        min-height: 52px;
    }

    .btn-outline-dark {
        font-size: .95rem;
        padding: 15px 14px;
        min-height: 50px;
    }

    .btn-whatsapp-support {
        font-size: .88rem;
        padding: 12px 20px;
    }

    /* RECIPE GRID — 2 colunas compactas */
    .recipe-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .recipe-card span {
        font-size: .72rem;
        padding: 16px 6px 6px;
    }

    .recipe-note { font-size: .92rem; }

    /* INCLUDE LIST */
    .include-item {
        padding: 12px 14px;
        gap: 10px;
    }

    .include-item p { font-size: .88rem; }

    /* CAROUSEL */
    .carousel-slide { width: 155px; }
    .carousel-slide img { height: 210px; }

    /* BONUS */
    .bonus-simple-item {
        flex-direction: column;
        gap: 10px;
        padding: 16px;
    }

    .bonus-num {
        font-size: 1.3rem;
        width: auto;
    }

    .bonus-info h3 { font-size: .95rem; }
    .bonus-info p  { font-size: .84rem; }

    /* TESTIMONIALS */
    .testimonial-card.light { padding: 16px; }
    .testimonial-text { font-size: .9rem; }
    .author-meta strong { font-size: .88rem; }

    /* PRICING */
    .pricing-card { padding: 24px 16px; }

    .pricing-card.premium { padding-top: 32px; }

    .price-main { font-size: 2.6rem; }

    .pricing-features { padding: 14px; }

    .pricing-features li {
        font-size: .88rem;
        gap: 8px;
        margin-bottom: 9px;
    }

    /* GUARANTEE BOX */
    .guarantee-box {
        flex-direction: column;
        gap: 10px;
        padding: 16px;
    }

    .guarantee-box i { font-size: 1.8rem; }

    /* FAQ — targets grandes para toque fácil */
    .faq-btn {
        padding: 16px 16px;
        font-size: .93rem;
        min-height: 52px;
    }

    .faq-content {
        padding: 0 16px;
        font-size: .88rem;
    }

    .faq-card.active .faq-content { padding: 0 16px 14px; }

    .faq-support { padding: 20px 16px; }
    .faq-support p { font-size: .92rem; }

    /* STICKY CTA — respeita área segura do iPhone */
    .sticky-cta {
        padding: 10px 16px env(safe-area-inset-bottom, 16px);
    }

    /* MODAL */
    .modal-offer-card { flex-direction: column; }
    .offer-right { width: 100%; border-left: none; border-top: 1px solid #EEE; padding: 14px; }
    .modal-title { font-size: 1.2rem; }
    .modal-body  { padding: 16px; }
    .modal-box   { border-radius: 18px; width: 96%; }
    .modal-header-special { padding: 26px 20px 18px; }
}

/* --- VERY SMALL PHONES (≤ 375px) --- */
@media (max-width: 375px) {
    .hero-img    { height: 230px; }
    .hero-text h1 { font-size: 1.7rem; }

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

    .recipe-grid { gap: 8px; }
    .recipe-card span { font-size: .68rem; }

    .price-main { font-size: 2.3rem; }

    .badge-pill { font-size: .72rem; padding: 4px 10px; }

    .btn-cta { font-size: .93rem; }
}

/* --- TABLET (481px – 768px) --- */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-img { height: 360px; }

    .hero-text h1 { font-size: 2.3rem; }

    .recipe-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px;
    }

    .section-white,
    .section-cream,
    .section-dark,
    .section-offer { padding: 50px 0; }

    .bonus-simple-item { padding: 18px 20px; }

    .pricing-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}