/* ===================================================
   MUZZA ARGENTINA — STYLE
   Pinza-inspired. Bebas Neue + Inter.
   =================================================== */

/* === RESET + BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: #0A0A0A;
    color: #F5F0E8;
    overflow-x: hidden;
}

/* === TOKENS === */
:root {
    --gold:       #AC9040;
    --gold-light: #F7E797;
    --mint:       #9CD3CA;
    --dark:       #0A0A0A;
    --dark2:      #111111;
    --white:      #F5F0E8;
    --font-d:     'Bebas Neue', sans-serif;
    --font-b:     'Inter', sans-serif;
    --nav-h:      72px;
    --bar-h:      36px;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { background: none; border: none; cursor: pointer; }

/* === CONTAINER === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* === SCROLL MARGIN === */
section[id], div[id] {
    scroll-margin-top: calc(var(--nav-h) + var(--bar-h) + 12px);
}

/* ===================================================
   HEADER / NAV
   =================================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
}

.nav-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: var(--nav-h);
    padding: 0 36px;
    background: linear-gradient(to bottom, rgba(10,10,10,.85) 0%, rgba(10,10,10,0) 100%);
    transition: background .35s, border-color .35s;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled .nav-main {
    background: rgba(10,10,10,.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: rgba(172,144,64,.18);
}

/* Left links */
.nav-left {
    display: flex;
    gap: 28px;
    align-items: center;
}
.nav-left a {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--white);
    opacity: .65;
    transition: opacity .2s;
}
.nav-left a:hover { opacity: 1; }

/* Center logo */
.nav-logo {
    display: block;
    width: 140px;
    justify-self: center;
}
.nav-logo img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Right side */
.nav-right {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: flex-end;
}
.nav-tel {
    font-size: .72rem;
    font-weight: 500;
    color: var(--white);
    opacity: .6;
    transition: opacity .2s;
}
.nav-tel:hover { opacity: 1; }

.nav-cta {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--dark);
    background: var(--gold);
    padding: 8px 18px;
    border-radius: 3px;
    transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Hamburger */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    margin-left: 8px;
}
.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: transform .3s, opacity .3s;
    transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.nav-overlay.open { display: flex; }

.nav-overlay-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}
.nav-overlay-links a {
    font-family: var(--font-d);
    font-size: clamp(2.4rem, 8vw, 4rem);
    color: var(--white);
    transition: color .2s;
}
.nav-overlay-links a:hover { color: var(--gold); }

/* === STICKY BAR === */
.sticky-bar {
    position: fixed;
    left: 0; right: 0;
    top: var(--nav-h);
    z-index: 99;
    background: var(--mint);
    color: var(--dark);
    text-align: center;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    height: var(--bar-h);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.sticky-bar a { color: inherit; text-decoration: underline; }

/* ===================================================
   HERO 50/50
   =================================================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: var(--dark);
    overflow: hidden;
}

/* Sol orbital decorativo de fundo */
.hero-sol-bg {
    position: absolute;
    z-index: 0;
    top: 50%;
    right: -220px;
    width: 720px;
    height: auto;
    transform: translateY(-50%);
    opacity: .06;
    animation: solRotate 90s linear infinite;
    pointer-events: none;
    user-select: none;
}

/* Grid 50/50 */
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 100vh;
    padding-top: calc(var(--nav-h) + var(--bar-h));
}

.hero-content {
    padding: 24px 40px 24px 64px;
    max-width: 640px;
    justify-self: end;
    width: 100%;
}

.hero-eyebrow {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    opacity: .85;
}

.hero-h1 {
    font-family: var(--font-d);
    font-size: clamp(3.5rem, 7.2vw, 7.5rem);
    line-height: .92;
    margin-bottom: 24px;
}
.h1-white { color: var(--white); }
.h1-gold  { color: var(--gold); }

.hero-dots {
    width: 44px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 18px;
    border-radius: 2px;
}

.hero-sidenote {
    font-size: .82rem;
    color: rgba(245,240,232,.5);
    line-height: 1.65;
    margin-bottom: 28px;
}
.hero-sidenote em { color: var(--gold-light); font-style: italic; }

/* Linha CTA + texto "Sem iFood?" */
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-no-ifood {
    flex: 1;
    max-width: 260px;
    font-family: var(--font-d);
    font-size: 1.4rem;
    line-height: 1.05;
    letter-spacing: .03em;
    color: var(--gold-light);
}
.hero-no-ifood span {
    display: block;
    margin-top: 8px;
    font-family: var(--font-b);
    font-size: .76rem;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0;
    color: rgba(245,240,232,.5);
    text-transform: none;
}

/* CTA Circle base */
.cta-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-d);
    font-size: 1.15rem;
    line-height: 1.15;
    letter-spacing: .05em;
    transition: background .2s, transform .2s, box-shadow .2s;
    flex-shrink: 0;
}
.cta-circle:hover {
    background: var(--gold-light);
    transform: scale(1.07);
    box-shadow: 0 8px 32px rgba(172,144,64,.35);
}

/* CTA hero — inline, ancorado, 130×130 */
.cta-circle--hero {
    width: 130px;
    height: 130px;
    font-size: 1.18rem;
    box-shadow: 0 8px 28px rgba(172,144,64,.25);
}

.cta-circle--dark {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}
.cta-circle--dark:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 8px 32px rgba(172,144,64,.35);
}

/* Carrossel direita */
.hero-carousel-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    width: 360px;
    height: 70%;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,.7);
}

/* Custom Swiper nav buttons */
.swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(172,144,64,.4);
    background: rgba(10,10,10,.65);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, background .2s;
    cursor: pointer;
}
.swiper-btn:hover { border-color: var(--gold); background: rgba(172,144,64,.18); }
.swiper-btn::after {
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
}
.swiper-btn--prev { left: 16px; }
.swiper-btn--prev::after { transform: rotate(-135deg) translate(2px, -2px); }
.swiper-btn--next { right: 16px; }
.swiper-btn--next::after { transform: rotate(45deg) translate(-2px, 2px); }

/* ===================================================
   PROMO STRIP
   =================================================== */
.promo-strip {
    background: var(--dark2);
    padding: 52px 36px 36px;
    border-top: 1px solid rgba(172,144,64,.12);
}

.promo-strip-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.strip-divider {
    width: 1px;
    background: rgba(172,144,64,.18);
    flex-shrink: 0;
    margin: 8px 0;
}

.strip-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    gap: 10px;
    transition: background .2s;
    border-radius: 4px;
}
.strip-card:hover { background: rgba(172,144,64,.06); }

.strip-card--featured { background: rgba(172,144,64,.1); }
.strip-card--featured:hover { background: rgba(172,144,64,.16); }

.strip-day {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
}

.strip-card strong {
    font-family: var(--font-d);
    font-size: 1.65rem;
    line-height: 1.1;
    color: var(--white);
}

.strip-price {
    font-family: var(--font-d);
    font-size: 2.2rem;
    color: var(--gold);
    line-height: 1;
}

.strip-meta {
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .08em;
    color: rgba(245,240,232,.45);
    text-transform: uppercase;
}

.strip-obs {
    text-align: center;
    margin-top: 28px;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(245,240,232,.3);
}

/* ===================================================
   MARQUEE BARS
   =================================================== */
.marquee-bar { overflow: hidden; user-select: none; }
.marquee-bar--mint { background: var(--mint); color: var(--dark); }
.marquee-bar--gold { background: var(--gold); color: var(--dark); }

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}
.marquee-track--rtl { animation: marquee-rtl 15s linear infinite; }

.marquee-inner {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 13px 0;
}

.marquee-inner span {
    font-family: var(--font-d);
    font-size: 1.05rem;
    letter-spacing: .07em;
    padding: 0 22px;
}

.marquee-bar--gold .marquee-inner span {
    font-size: 1.5rem;
    padding: 0 32px;
}

.mdot { opacity: .35; }

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes marquee-rtl {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* ===================================================
   LA CARTA
   =================================================== */
.carta-section {
    position: relative;
    background: var(--mint);
    color: var(--dark);
    overflow: hidden;
    padding-bottom: 88px;
}

/* Running title */
.carta-running-h2 {
    overflow: hidden;
    margin-bottom: 64px;
    border-bottom: 1px solid rgba(10,10,10,.1);
    pointer-events: none;
}

.running-track {
    display: flex;
    width: max-content;
    animation: marquee 22s linear infinite;
}

.running-track span {
    display: block;
    font-family: var(--font-d);
    font-size: clamp(4rem, 8vw, 7rem);
    color: rgba(10,10,10,.09);
    white-space: nowrap;
    padding: 20px 48px 20px 0;
    line-height: 1;
    letter-spacing: .04em;
}

/* Body */
.carta-body {
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 0 56px;
    max-width: 1200px;
    margin: 0 auto;
}

.carta-cats {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.carta-cat {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 20px;
    row-gap: 6px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(10,10,10,.12);
    align-items: start;
}
.carta-cat:last-child { border-bottom: none; }

.cat-n {
    font-family: var(--font-d);
    font-size: 2.8rem;
    line-height: 1;
    color: rgba(10,10,10,.18);
    grid-row: span 2;
    align-self: center;
}

.carta-cat h3 {
    font-family: var(--font-d);
    font-size: 2rem;
    line-height: 1;
    color: var(--dark);
}

.carta-cat p {
    font-size: .78rem;
    color: rgba(10,10,10,.55);
    line-height: 1.65;
}

/* Decorative sol */
.carta-sol {
    position: absolute;
    right: -80px;
    bottom: -60px;
    width: 340px;
    opacity: .13;
    pointer-events: none;
    animation: solRotate 45s linear infinite;
}

/* ===================================================
   BRAND STORY
   =================================================== */
.story-section {
    background: var(--dark);
    color: var(--white);
    padding: 110px 0;
    overflow: hidden;
}

.story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px;
}

.story-label {
    display: block;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.story-h2 {
    font-family: var(--font-d);
    font-size: clamp(3rem, 6.5vw, 6rem);
    line-height: .9;
    color: var(--white);
    margin-bottom: 28px;
}

.story-text p {
    font-size: .88rem;
    line-height: 1.85;
    color: rgba(245,240,232,.6);
    margin-bottom: 24px;
    max-width: 440px;
}

.story-quote {
    border-left: 3px solid var(--gold);
    padding: 10px 20px;
    margin-bottom: 36px;
    font-size: .82rem;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.75;
}

.story-visual img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
}

/* ===================================================
   COMO PEDIR
   =================================================== */
.pedir-section {
    background: var(--dark2);
    padding: 100px 0;
    border-top: 1px solid rgba(172,144,64,.08);
}

.section-label {
    display: block;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-h2 {
    font-family: var(--font-d);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    color: var(--white);
    margin-bottom: 52px;
    line-height: 1;
}

.pedir-modos {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
}

.modo-or {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-style: italic;
    color: rgba(245,240,232,.3);
    padding: 0 36px;
    padding-top: 64px;
}

.modo {
    padding: 36px;
    border: 1px solid rgba(172,144,64,.13);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}

.modo-header { margin-bottom: 24px; }

.modo-tag {
    display: inline-block;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--mint);
    background: rgba(156,211,202,.1);
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.modo h3 {
    font-family: var(--font-d);
    font-size: 2.1rem;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1;
}

.modo-info {
    font-size: .75rem;
    color: rgba(245,240,232,.38);
}

.modo-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.modo-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.modo-step span {
    font-family: var(--font-d);
    font-size: 1.4rem;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
    width: 30px;
}

.modo-step p {
    font-size: .8rem;
    color: rgba(245,240,232,.65);
    line-height: 1.55;
    padding-top: 2px;
}

.btn-outline {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .05em;
    color: var(--white);
    border: 1px solid rgba(245,240,232,.28);
    padding: 11px 22px;
    border-radius: 3px;
    transition: border-color .2s, background .2s;
    margin-top: auto;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(172,144,64,.1); }

.btn-gold {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: var(--dark);
    background: var(--gold);
    padding: 11px 22px;
    border-radius: 3px;
    transition: background .2s, transform .15s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ===================================================
   NUESTRAS CASAS
   =================================================== */
.lojas-section {
    background: var(--dark);
    padding: 100px 0;
    border-top: 1px solid rgba(172,144,64,.08);
}

.lojas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.loja {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(172,144,64,.12);
    border-radius: 6px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.loja-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.loja-badge {
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    background: rgba(172,144,64,.14);
    color: var(--gold);
    padding: 3px 9px;
    border-radius: 2px;
}

.loja-badge--filial {
    background: rgba(156,211,202,.1);
    color: var(--mint);
}

.loja-modo {
    font-size: .68rem;
    color: rgba(245,240,232,.38);
    letter-spacing: .06em;
}

.loja-delivery-badge {
    display: inline-block;
    background: var(--mint);
    color: var(--dark);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 2px;
    align-self: flex-start;
}

.loja h3 {
    font-family: var(--font-d);
    font-size: 2rem;
    color: var(--white);
    line-height: 1;
}

.loja-end {
    font-size: .8rem;
    color: rgba(245,240,232,.5);
    line-height: 1.65;
}

.loja-info {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.loja-info li {
    font-size: .78rem;
    color: rgba(245,240,232,.5);
    line-height: 1.5;
}

.loja-info strong {
    color: var(--white);
    margin-right: 6px;
}

.loja-contatos {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.loja-contatos a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .76rem;
    color: rgba(245,240,232,.65);
    transition: color .2s;
}
.loja-contatos a:hover { color: var(--mint); }
.loja-contatos svg { width: 15px; height: 15px; flex-shrink: 0; }

.loja-mapa {
    border-radius: 4px;
    overflow: hidden;
    margin-top: 6px;
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
    background: #0D0D0D;
    color: var(--white);
    border-top: 1px solid rgba(172,144,64,.1);
    padding-top: 64px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 52px;
}

.footer-logo {
    width: 110px;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
    opacity: .75;
}

.footer-tagline {
    font-family: var(--font-d);
    font-size: 1.05rem;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: .07em;
}

.footer-amor {
    font-size: .75rem;
    color: rgba(245,240,232,.35);
    line-height: 1.75;
}

.footer-col h4 {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    font-size: .78rem;
    color: rgba(245,240,232,.5);
    transition: color .2s;
}
.footer-col ul a:hover { color: var(--white); }

.footer-col p {
    font-size: .78rem;
    color: rgba(245,240,232,.5);
    line-height: 1.85;
    margin-bottom: 16px;
}
.footer-col p:last-child { margin-bottom: 0; }
.footer-col p strong { color: var(--white); }
.footer-col p a { color: var(--mint); transition: color .2s; }
.footer-col p a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(172,144,64,.08);
    padding: 20px 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: .67rem;
    color: rgba(245,240,232,.25);
    letter-spacing: .06em;
}

/* ===================================================
   AVALIAÇÕES
   =================================================== */
.reviews-section {
    background: var(--dark2);
    padding: 100px 0;
    border-top: 1px solid rgba(172,144,64,.08);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.review-card {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(172,144,64,.14);
    border-radius: 6px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color .25s, transform .25s, background .25s;
}
.review-card:hover {
    border-color: rgba(172,144,64,.4);
    background: rgba(255,255,255,.04);
    transform: translateY(-4px);
}

.review-card--featured {
    background: rgba(172,144,64,.08);
    border-color: rgba(172,144,64,.3);
}

.review-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: .15em;
    line-height: 1;
}

.review-card blockquote {
    font-size: .82rem;
    line-height: 1.65;
    color: rgba(245,240,232,.78);
    font-style: normal;
    flex: 1;
}
.review-card blockquote em {
    color: var(--gold-light);
    font-style: italic;
}

.review-card footer {
    font-size: .72rem;
    color: rgba(245,240,232,.45);
    letter-spacing: .04em;
    border-top: 1px solid rgba(172,144,64,.1);
    padding-top: 14px;
}
.review-card footer strong {
    display: block;
    color: var(--gold);
    font-family: var(--font-d);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: .06em;
    margin-bottom: 2px;
}

/* ===================================================
   FLOATING ELEMENTS
   =================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.32);
    transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.48); }
.whatsapp-float svg { width: 26px; height: 26px; }

.cta-float-delivery {
    position: fixed;
    bottom: 88px;
    right: 16px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--dark);
    font-size: .75rem;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(172,144,64,.28);
    transition: transform .35s, opacity .35s;
}
.cta-float-delivery.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
}
.cta-float-delivery svg { width: 15px; height: 15px; }

/* ===================================================
   SCROLL FADE IN
   =================================================== */
.js-fadein {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}
.js-fadein.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================================
   ANIMATIONS
   =================================================== */
@keyframes solRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ===================================================
   RESPONSIVE — TABLET (≤ 960px)
   =================================================== */
@media (max-width: 960px) {
    .nav-left, .nav-tel, .nav-cta { display: none; }
    .nav-burger { display: flex; }
    .nav-main { grid-template-columns: 1fr auto; }
    .nav-right { justify-content: flex-end; }

    /* Hero empilha: texto em cima, carrossel embaixo */
    .hero-grid { grid-template-columns: 1fr; min-height: auto; }
    .hero-content { padding: 28px 28px 12px; max-width: 100%; justify-self: stretch; }
    .hero-carousel-wrap { height: 60vh; min-height: 460px; }
    .hero-swiper .swiper-slide { width: 280px; height: 80%; }
    .hero-sol-bg { right: -300px; width: 600px; opacity: .04; }
    .cta-circle--hero { width: 110px; height: 110px; font-size: 1.05rem; }
    .hero-no-ifood { font-size: 1.15rem; max-width: 220px; }

    .story-inner { grid-template-columns: 1fr; padding: 0 28px; gap: 40px; }
    .story-visual img { height: 360px; }
    .story-h2 { font-size: clamp(2.8rem, 8vw, 5rem); }

    .pedir-modos { grid-template-columns: 1fr; }
    .modo-or { display: block; text-align: center; padding: 14px 0; }

    .lojas-grid { grid-template-columns: 1fr; }

    .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-inner .footer-col:first-child { grid-column: span 2; }

    .carta-body { padding: 0 28px; flex-direction: column; gap: 36px; align-items: flex-start; }
    .carta-body > .cta-circle { align-self: center; }
    .carta-sol { width: 240px; right: -48px; }

    .promo-strip { padding: 36px 20px 28px; }
    .promo-strip-inner { flex-wrap: wrap; }
    .strip-card { flex-basis: 48%; }
    .strip-divider { display: none; }

    /* Reviews 2 colunas */
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .review-card--featured { grid-column: span 2; }

    .story-section { padding: 72px 0; }
    .pedir-section { padding: 72px 0; }
    .lojas-section { padding: 72px 0; }
    .reviews-section { padding: 72px 0; }
    .container { padding: 0 28px; }
}

/* ===================================================
   RESPONSIVE — MOBILE (≤ 600px)
   =================================================== */
@media (max-width: 600px) {
    :root { --nav-h: 60px; --bar-h: 32px; }

    .hero-h1 { font-size: clamp(3rem, 13vw, 5rem); }
    .hero-content { padding: 20px 20px 8px; }
    .cta-circle--hero { width: 100px; height: 100px; font-size: .98rem; }
    .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 18px; }
    .hero-no-ifood { font-size: 1.05rem; max-width: 100%; }
    .hero-carousel-wrap { height: 50vh; min-height: 380px; }
    .hero-swiper .swiper-slide { width: 220px; height: 78%; }

    .strip-card { flex-basis: 100%; }
    .strip-card + .strip-card { border-top: 1px solid rgba(172,144,64,.1); }
    .promo-strip { padding: 28px 16px 20px; }

    .modo { padding: 24px 18px; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-inner .footer-col:first-child { grid-column: auto; }
    .footer-bottom { padding: 18px 20px; }
    .container { padding: 0 20px; }
    .lojas-grid { gap: 16px; }
    .loja { padding: 24px 18px; }

    .story-inner { padding: 0 20px; }
    .story-visual img { height: 260px; }
    .story-quote { font-size: .78rem; }

    .pedir-section, .lojas-section, .story-section, .reviews-section { padding: 60px 0; }

    .running-track span { font-size: clamp(3rem, 10vw, 5rem); }

    /* Reviews 1 coluna */
    .reviews-grid { grid-template-columns: 1fr; }
    .review-card--featured { grid-column: auto; }
}
