/* =====================================================================
   SABOR DE CASA — ESTILOS
   Design system com tema claro e escuro, responsivo (mobile-first).
   Cores extraídas da logo: laranja + azul royal.
   ===================================================================== */

/* ----------------------------- TOKENS ----------------------------- */
:root {
  /* Marca (iguais nos dois temas) */
  --laranja: #E85D1A;
  --laranja-2: #FF7A33;
  --laranja-escuro: #C7480E;
  --azul: #1F3BAA;
  --azul-2: #3A57D6;

  /* Tipografia */
  --f-titulo: 'Poppins', system-ui, sans-serif;
  --f-corpo: 'Inter', system-ui, sans-serif;
  --f-script: 'Yellowtail', cursive;

  /* Métrica */
  --container: 1180px;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 26px;
  --t: .25s ease;
}

/* Tema CLARO */
:root,
:root[data-tema="claro"] {
  --bg: #FFF8F0;
  --bg-alt: #FBEEE0;
  --superficie: #FFFFFF;
  --superficie-2: #FFFFFF;
  --texto: #241C16;
  --texto-suave: #6E6056;
  --borda: rgba(36, 28, 22, .12);
  --borda-forte: rgba(36, 28, 22, .22);
  --sombra: rgba(80, 50, 20, .10);
  --sombra-forte: rgba(80, 50, 20, .16);
  --header-bg: rgba(255, 248, 240, .82);
  --chip-bg: #FFFFFF;
  --hero-glow: rgba(232, 93, 26, .16);
  --tag-bg: rgba(232, 93, 26, .12);
}

/* Tema ESCURO */
:root[data-tema="escuro"] {
  --bg: #131011;
  --bg-alt: #1B1715;
  --superficie: #201B18;
  --superficie-2: #262019;
  --texto: #F6ECE2;
  --texto-suave: #B6A89B;
  --borda: rgba(255, 255, 255, .10);
  --borda-forte: rgba(255, 255, 255, .20);
  --sombra: rgba(0, 0, 0, .45);
  --sombra-forte: rgba(0, 0, 0, .6);
  --header-bg: rgba(19, 16, 17, .78);
  --chip-bg: #201B18;
  --hero-glow: rgba(232, 93, 26, .22);
  --tag-bg: rgba(255, 122, 51, .16);
}

/* ----------------------------- BASE ------------------------------- */
* { box-sizing: border-box; }

/* [hidden] sempre esconde, mesmo quando a classe define um display (login, lightbox, cart...) */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  font-family: var(--f-corpo);
  background: var(--bg);
  color: var(--texto);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background-color .35s ease, color .35s ease;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: var(--f-titulo); line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.02em; }
h1 { font-size: clamp(2.05rem, 1.3rem + 3.4vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1rem; }
a { color: inherit; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--alt { background: var(--bg-alt); }

.eyebrow {
  font-family: var(--f-titulo); font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; font-size: .76rem; color: var(--laranja);
  display: inline-block; margin-bottom: .7rem;
}

.section__cabecalho { max-width: 640px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section__cabecalho p { color: var(--texto-suave); font-size: 1.05rem; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--laranja); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 var(--r-sm) 0;
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--azul-2); outline-offset: 2px; border-radius: 4px; }

/* ---------------------------- BOTÕES ------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--f-titulo); font-weight: 700; font-size: .95rem; line-height: 1;
  padding: .8rem 1.25rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: var(--t); white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn--whats { background: linear-gradient(135deg, var(--laranja-2), var(--laranja)); color: #fff; box-shadow: 0 8px 22px -8px var(--laranja); }
.btn--whats:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -10px var(--laranja); filter: brightness(1.04); }
.btn--contorno { background: transparent; color: var(--texto); border-color: var(--borda-forte); }
.btn--contorno:hover { border-color: var(--laranja); color: var(--laranja); transform: translateY(-2px); }
.btn--claro { background: #fff; color: var(--laranja-escuro); }
.btn--claro:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(0,0,0,.5); }
.btn--grande { padding: 1rem 1.7rem; font-size: 1.05rem; }
.btn--bloco { width: 100%; }
.icone-whats { fill: currentColor; }

/* ---------------------------- TOPBAR ------------------------------ */
.topbar { background: var(--azul); color: #fff; font-size: .82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: .6rem; padding: .5rem 0; flex-wrap: wrap; }
.topbar__sep { opacity: .5; }
.topbar__status { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #9aa3b2; box-shadow: 0 0 0 0 rgba(255,255,255,.5); }
.status-dot.aberto { background: #2fd07a; animation: pulse 2s infinite; }
.status-dot.fechado { background: #ff6b6b; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(47,208,122,.6);} 70%{ box-shadow: 0 0 0 7px rgba(47,208,122,0);} 100%{box-shadow:0 0 0 0 rgba(47,208,122,0);} }

/* ---------------------------- HEADER ------------------------------ */
.header { position: sticky; top: 0; z-index: 100; background: var(--header-bg); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--borda); }
.header__inner { display: flex; align-items: center; gap: 1rem; min-height: 72px; }
.nav { display: flex; gap: .3rem; margin-left: auto; }
.nav a { font-family: var(--f-titulo); font-weight: 600; font-size: .95rem; text-decoration: none; color: var(--texto); padding: .5rem .85rem; border-radius: 999px; transition: var(--t); position: relative; }
.nav a:hover { color: var(--laranja); }
.nav a.ativo { color: var(--laranja); }
.nav a.ativo::after { content: ""; position: absolute; left: 50%; bottom: 4px; width: 18px; height: 3px; border-radius: 3px; background: var(--laranja); transform: translateX(-50%); }
.header__acoes { display: flex; align-items: center; gap: .55rem; margin-left: 1rem; }

/* Logo recriada */
.logo { display: inline-flex; align-items: center; gap: .35rem; text-decoration: none; color: var(--texto); }
.logo__col { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.logo__prefixo { font-family: var(--f-titulo); font-weight: 700; font-size: .7rem; letter-spacing: .02em; margin: 0 0 2px 3px; color: var(--texto); }
.logo__caixa { background: var(--laranja); border-radius: 7px; padding: .08em .5em .16em; box-shadow: 0 4px 12px -4px rgba(232,93,26,.6); }
.logo__script { font-family: var(--f-script); color: #fff; font-size: 1.55rem; line-height: 1; white-space: nowrap; }
.logo__talher { width: 26px; height: 26px; fill: var(--texto); margin-left: -2px; }
.logo--rodape .logo__prefixo, .logo--rodape .logo__script { }

/* Botão de tema */
.btn-tema { position: relative; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--borda); background: var(--superficie); color: var(--texto); cursor: pointer; display: grid; place-items: center; transition: var(--t); }
.btn-tema:hover { border-color: var(--laranja); color: var(--laranja); }
.btn-tema svg { width: 20px; height: 20px; fill: currentColor; position: absolute; transition: transform .4s ease, opacity .3s ease; }
.icone-lua { opacity: 0; transform: rotate(-90deg) scale(.5); }
.icone-sol { opacity: 1; transform: rotate(0) scale(1); }
:root[data-tema="escuro"] .icone-sol { opacity: 0; transform: rotate(90deg) scale(.5); }
:root[data-tema="escuro"] .icone-lua { opacity: 1; transform: rotate(0) scale(1); }

/* Hambúrguer */
.btn-menu { display: none; width: 42px; height: 42px; border: 1px solid var(--borda); border-radius: 12px; background: var(--superficie); cursor: pointer; padding: 0; flex-direction: column; gap: 4px; align-items: center; justify-content: center; }
.btn-menu span { width: 20px; height: 2px; background: var(--texto); border-radius: 2px; transition: var(--t); }
.btn-menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.btn-menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.btn-menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ----------------------------- HERO ------------------------------- */
.hero { position: relative; overflow: hidden; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5.5rem); }
.hero__bg { position: absolute; inset: 0; z-index: 0; background:
    radial-gradient(60% 60% at 80% 0%, var(--hero-glow), transparent 70%),
    radial-gradient(50% 50% at 0% 100%, rgba(31,59,170,.10), transparent 70%); }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__texto h1 { margin-bottom: .4em; }
.hero__texto > p { font-size: 1.12rem; color: var(--texto-suave); max-width: 36ch; margin-bottom: 1.6rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.8rem; }
.hero__selos { list-style: none; display: flex; flex-wrap: wrap; gap: 1.3rem; padding: 0; margin: 0; }
.hero__selos li { font-size: .9rem; color: var(--texto-suave); }
.hero__selos strong { display: block; font-family: var(--f-titulo); font-size: 1.25rem; color: var(--texto); }

.hero__figura { position: relative; }
.hero__figura img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--r-lg); box-shadow: 0 30px 60px -25px var(--sombra-forte); }
.hero__figura::after { content: ""; position: absolute; inset: 0; border-radius: var(--r-lg); box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); pointer-events: none; }
.hero__selo-flutua { position: absolute; left: -14px; bottom: 26px; background: var(--superficie); border: 1px solid var(--borda); border-radius: var(--r); padding: .7rem 1rem; display: flex; align-items: center; gap: .7rem; box-shadow: 0 16px 30px -14px var(--sombra-forte); }
.hero__selo-emoji { font-size: 1.7rem; }
.hero__selo-flutua strong { display: block; font-family: var(--f-titulo); font-size: .95rem; }
.hero__selo-flutua small { color: var(--texto-suave); font-size: .8rem; }

/* ------------------------- DIFERENCIAIS --------------------------- */
.diferenciais { padding: clamp(2rem, 4vw, 3rem) 0 0; }
.diferenciais__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.dif { background: var(--superficie); border: 1px solid var(--borda); border-radius: var(--r); padding: 1.5rem 1.3rem; box-shadow: 0 10px 30px -20px var(--sombra-forte); transition: var(--t); }
.dif:hover { transform: translateY(-4px); border-color: var(--laranja); }
.dif__ic { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, var(--laranja-2), var(--laranja)); display: grid; place-items: center; margin-bottom: 1rem; }
.dif__ic svg { width: 26px; height: 26px; fill: #fff; }
.dif h3 { margin-bottom: .35rem; }
.dif p { margin: 0; color: var(--texto-suave); font-size: .92rem; }

/* --------------------------- CARDÁPIO ----------------------------- */
.cardapio__filtros { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; margin-bottom: 2.2rem; }
.chip { font-family: var(--f-titulo); font-weight: 600; font-size: .9rem; padding: .55rem 1.1rem; border-radius: 999px; border: 1px solid var(--borda); background: var(--chip-bg); color: var(--texto); cursor: pointer; transition: var(--t); }
.chip:hover { border-color: var(--laranja); color: var(--laranja); }
.chip.ativo { background: var(--laranja); border-color: var(--laranja); color: #fff; }

.cardapio__lista { display: grid; grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)); gap: 1.4rem; }

.item { display: flex; flex-direction: column; background: var(--superficie); border: 1px solid var(--borda); border-radius: var(--r); overflow: hidden; box-shadow: 0 12px 34px -24px var(--sombra-forte); transition: var(--t); }
.item:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -24px var(--sombra-forte); border-color: var(--borda-forte); }
.item__img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--bg-alt); }
.item__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.item__img.sem-foto { display: grid; place-items: center; background: linear-gradient(135deg, var(--bg-alt), var(--superficie-2)); }
.item__img.sem-foto::after { content: "🍽"; font-size: 2.2rem; opacity: .45; }
.item:hover .item__img img { transform: scale(1.06); }
.item__tag { position: absolute; top: .7rem; left: .7rem; background: var(--laranja); color: #fff; font-family: var(--f-titulo); font-size: .72rem; font-weight: 700; padding: .25rem .6rem; border-radius: 999px; box-shadow: 0 4px 10px -3px rgba(0,0,0,.3); }
.item__corpo { padding: 1.1rem 1.1rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.item--sem-img .item__corpo { padding-top: 1.2rem; }
.item--sem-img { border-left: 4px solid var(--laranja); align-self: start; }
.item__topo { display: flex; justify-content: space-between; align-items: baseline; gap: .6rem; }
.item__nome { font-family: var(--f-titulo); font-weight: 700; font-size: 1.05rem; }
.item__preco { font-family: var(--f-titulo); font-weight: 800; color: var(--laranja); white-space: nowrap; }
.item__preco small { font-weight: 600; font-size: .7em; color: var(--texto-suave); }
.item__desc { color: var(--texto-suave); font-size: .9rem; margin: .4rem 0 1rem; flex: 1; }
.item__tag-inline { display: inline-block; background: var(--tag-bg); color: var(--laranja); font-family: var(--f-titulo); font-size: .7rem; font-weight: 700; padding: .15rem .55rem; border-radius: 999px; margin-bottom: .5rem; align-self: flex-start; }
.item__add { display: inline-flex; align-items: center; justify-content: center; gap: .4rem; font-family: var(--f-titulo); font-weight: 700; font-size: .9rem; padding: .6rem 1rem; border-radius: 999px; border: 2px solid var(--laranja); background: transparent; color: var(--laranja); cursor: pointer; transition: var(--t); align-self: flex-start; }
.item__add:hover { background: var(--laranja); color: #fff; }
.item__add.add-bump { animation: bump .35s ease; }
@keyframes bump { 50% { transform: scale(1.12); } }

/* ----------------------------- SEMANA ----------------------------- */
.semana__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.dia-card { background: var(--superficie); border: 1px solid var(--borda); border-radius: var(--r); padding: 1.2rem 1rem; text-align: center; box-shadow: 0 10px 30px -22px var(--sombra-forte); transition: var(--t); }
.dia-card:hover { transform: translateY(-4px); }
.dia-card__dia { font-family: var(--f-titulo); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--laranja); margin-bottom: .5rem; }
.dia-card__prato { font-size: .9rem; color: var(--texto-suave); }
.dia-card.hoje { background: linear-gradient(160deg, var(--laranja-2), var(--laranja)); border-color: transparent; }
.dia-card.hoje .dia-card__dia, .dia-card.hoje .dia-card__prato { color: #fff; }
.dia-card.hoje .dia-card__dia::after { content: " • hoje"; }

/* ----------------------------- SOBRE ------------------------------ */
.sobre__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.sobre__figura img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; border-radius: var(--r-lg); box-shadow: 0 30px 60px -28px var(--sombra-forte); }
.sobre__texto p { color: var(--texto-suave); }
.sobre__numeros { list-style: none; padding: 0; margin: 1.6rem 0 0; display: flex; flex-wrap: wrap; gap: 1.8rem; }
.sobre__numeros strong { display: block; font-family: var(--f-titulo); font-weight: 800; font-size: 1.9rem; color: var(--texto); line-height: 1; }
.sobre__numeros span { font-size: .85rem; color: var(--texto-suave); }
.sobre__numeros li { border-left: 3px solid var(--laranja); padding-left: .9rem; }

/* ---------------------------- GALERIA ----------------------------- */
.galeria__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 1rem; }
.galeria__item { overflow: hidden; border-radius: var(--r); cursor: pointer; position: relative; border: 1px solid var(--borda); }
.galeria__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.galeria__item:hover img { transform: scale(1.08); }
.galeria__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.galeria__item:nth-child(6) { grid-column: span 2; }
.galeria__item::after { content: "🔍"; position: absolute; inset: 0; display: grid; place-items: center; background: rgba(20,15,12,.35); opacity: 0; transition: var(--t); font-size: 1.4rem; }
.galeria__item:hover::after { opacity: 1; }

.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(10,8,6,.92); display: grid; place-items: center; padding: 2rem; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--r); box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox__fechar { position: absolute; top: 1.2rem; right: 1.5rem; width: 46px; height: 46px; border-radius: 50%; border: none; background: rgba(255,255,255,.12); color: #fff; font-size: 1.6rem; cursor: pointer; line-height: 1; }
.lightbox__fechar:hover { background: var(--laranja); }

/* -------------------------- DEPOIMENTOS --------------------------- */
.depoimentos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.depo { background: var(--superficie); border: 1px solid var(--borda); border-radius: var(--r); padding: 1.7rem 1.5rem; box-shadow: 0 12px 34px -26px var(--sombra-forte); position: relative; }
.depo__estrelas { color: #f5a623; letter-spacing: 2px; margin-bottom: .7rem; }
.depo__texto { font-size: 1rem; margin-bottom: 1.2rem; }
.depo__autor { display: flex; align-items: center; gap: .7rem; }
.depo__avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--azul-2), var(--azul)); color: #fff; display: grid; place-items: center; font-family: var(--f-titulo); font-weight: 700; }
.depo__nome { font-family: var(--f-titulo); font-weight: 700; font-size: .95rem; }
.depo__local { font-size: .8rem; color: var(--texto-suave); }

/* -------------------------- LOCALIZAÇÃO --------------------------- */
.local__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: stretch; }
.local__lista { list-style: none; padding: 0; margin: 1.4rem 0 1.8rem; display: grid; gap: 1.1rem; }
.local__lista li { display: flex; gap: .9rem; }
.local__ic { font-size: 1.3rem; flex: none; line-height: 1.4; }
.local__horarios { border-collapse: collapse; margin-top: .35rem; font-size: .92rem; color: var(--texto-suave); }
.local__horarios td { padding: .15rem 0; }
.local__horarios td:first-child { padding-right: 1.2rem; font-weight: 600; color: var(--texto); }
.local__botoes { display: flex; flex-wrap: wrap; gap: .7rem; }
.local__mapa { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--borda); min-height: 360px; box-shadow: 0 24px 50px -30px var(--sombra-forte); }
.local__mapa iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; filter: saturate(1.05); }

/* ---------------------------- CTA FINAL --------------------------- */
.cta-final { background: linear-gradient(135deg, var(--laranja-2), var(--laranja-escuro)); color: #fff; padding: clamp(3rem, 6vw, 4.5rem) 0; text-align: center; }
.cta-final__inner { max-width: 620px; margin: 0 auto; }
.cta-final h2 { color: #fff; }
.cta-final p { color: rgba(255,255,255,.9); font-size: 1.1rem; margin-bottom: 1.6rem; }

/* ----------------------------- FOOTER ----------------------------- */
.footer { background: var(--bg-alt); border-top: 1px solid var(--borda); padding-top: clamp(2.5rem, 5vw, 4rem); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1.3fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer__sobre { color: var(--texto-suave); font-size: .92rem; margin: 1rem 0 1.2rem; max-width: 34ch; }
.footer__col h3 { margin-bottom: 1rem; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--texto-suave); }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer__col a { text-decoration: none; color: var(--texto); transition: var(--t); }
.footer__col a:hover { color: var(--laranja); }
.footer__contato li { color: var(--texto-suave); font-size: .92rem; }
.footer__redes { display: flex; gap: .6rem; }
.footer__redes a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--borda); display: grid; place-items: center; color: var(--texto); transition: var(--t); }
.footer__redes a:hover { background: var(--laranja); border-color: var(--laranja); color: #fff; transform: translateY(-3px); }
.footer__redes svg { width: 20px; height: 20px; fill: currentColor; }
.footer__base { border-top: 1px solid var(--borda); padding: 1.2rem 0; }
.footer__base .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: .85rem; color: var(--texto-suave); }
.topo-link { background: none; border: none; color: var(--texto-suave); cursor: pointer; font-family: var(--f-corpo); font-size: .85rem; }
.topo-link:hover { color: var(--laranja); }

/* --------------------------- CARRINHO ----------------------------- */
.cart-fab { position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 120; display: inline-flex; align-items: center; gap: .6rem; padding: .9rem 1.3rem; border: none; border-radius: 999px; background: linear-gradient(135deg, var(--laranja-2), var(--laranja)); color: #fff; font-family: var(--f-titulo); font-weight: 700; font-size: .98rem; cursor: pointer; box-shadow: 0 16px 34px -10px var(--laranja); transition: var(--t); }
.cart-fab:hover { transform: translateY(-3px); }
.cart-fab svg { width: 22px; height: 22px; fill: #fff; }
.cart-fab[hidden] { display: none; }

.cart { position: fixed; inset: 0; z-index: 150; }
.cart[hidden] { display: none; }
.cart__overlay { position: absolute; inset: 0; background: rgba(10,8,6,.5); backdrop-filter: blur(2px); animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; } }
.cart__painel { position: absolute; top: 0; right: 0; height: 100%; width: min(420px, 92vw); background: var(--bg); border-left: 1px solid var(--borda); display: flex; flex-direction: column; box-shadow: -20px 0 60px -20px rgba(0,0,0,.4); animation: slideIn .3s ease; }
@keyframes slideIn { from { transform: translateX(100%); } }
.cart__topo { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.4rem; border-bottom: 1px solid var(--borda); }
.cart__topo h2 { margin: 0; font-size: 1.25rem; }
.cart__fechar { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--borda); background: var(--superficie); color: var(--texto); font-size: 1.4rem; line-height: 1; cursor: pointer; }
.cart__fechar:hover { color: var(--laranja); border-color: var(--laranja); }
.cart__itens { flex: 1; overflow-y: auto; padding: 1rem 1.4rem; display: flex; flex-direction: column; gap: .9rem; }
.cart-item { display: flex; gap: .8rem; align-items: center; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__nome { font-family: var(--f-titulo); font-weight: 600; font-size: .95rem; }
.cart-item__preco { font-size: .82rem; color: var(--texto-suave); }
.cart-item__qtd { display: flex; align-items: center; gap: .5rem; }
.cart-item__qtd button { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--borda); background: var(--superficie); color: var(--texto); cursor: pointer; font-size: 1rem; line-height: 1; display: grid; place-items: center; }
.cart-item__qtd button:hover { border-color: var(--laranja); color: var(--laranja); }
.cart-item__qtd span { min-width: 18px; text-align: center; font-weight: 600; }
.cart__vazio { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .8rem; color: var(--texto-suave); text-align: center; padding: 2rem; }
.cart__vazio span { font-size: 2.6rem; }
.cart__rodape { border-top: 1px solid var(--borda); padding: 1.2rem 1.4rem calc(1.2rem + env(safe-area-inset-bottom)); }
.cart__total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .3rem; }
.cart__total strong { font-family: var(--f-titulo); font-size: 1.5rem; color: var(--laranja); }
.cart__obs { font-size: .78rem; color: var(--texto-suave); margin: 0 0 .9rem; }

/* ---------------------------- REVEAL ------------------------------ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.vis { opacity: 1; transform: none; }

/* ----------------------- O QUE TEM HOJE --------------------------- */
.hoje-aviso { background: linear-gradient(135deg, var(--laranja-2), var(--laranja)); color: #fff; padding: 1rem 1.3rem; border-radius: var(--r); font-family: var(--f-titulo); font-weight: 700; font-size: 1.05rem; text-align: center; margin-bottom: 1.6rem; box-shadow: 0 14px 30px -14px var(--laranja); }
.hoje-grupo-pub { margin-bottom: 1.7rem; }
.hoje-grupo-pub h3 { font-family: var(--f-titulo); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; color: var(--laranja); margin: 0 0 .9rem; }
.hoje-grade-pub { display: grid; grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); gap: 1rem; }
.hoje-card { background: var(--superficie); border: 1px solid var(--borda); border-radius: var(--r); overflow: hidden; box-shadow: 0 12px 30px -24px var(--sombra-forte); transition: var(--t); }
.hoje-card:hover { transform: translateY(-4px); border-color: var(--borda-forte); }
.hoje-card__img { aspect-ratio: 4/3; overflow: hidden; background: linear-gradient(135deg, var(--bg-alt), var(--superficie-2)); display: grid; place-items: center; }
.hoje-card__img img { width: 100%; height: 100%; object-fit: cover; }
.hoje-card__img.sem::after { content: attr(data-emoji); font-size: 2.6rem; }
.hoje-card__nome { padding: .7rem .6rem; font-family: var(--f-titulo); font-weight: 600; font-size: .92rem; text-align: center; }
.hoje-atualizado { text-align: center; color: var(--texto-suave); font-size: .85rem; margin-top: 1.4rem; }
.hoje-cta { margin-top: 1.8rem; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap; background: linear-gradient(135deg, var(--laranja-2), var(--laranja-escuro)); color: #fff; border-radius: var(--r-lg); padding: 1.4rem 1.7rem; box-shadow: 0 18px 40px -18px var(--laranja); }
.hoje-cta strong { font-family: var(--f-titulo); font-size: clamp(1.25rem, 3vw, 1.55rem); display: block; }
.hoje-cta span { color: rgba(255, 255, 255, .92); font-size: .95rem; }
@media (max-width: 560px) { .hoje-cta { justify-content: center; text-align: center; } .hoje-cta .btn { width: 100%; } }

/* --------------------------- RESPONSIVO --------------------------- */
@media (max-width: 1024px) {
  .diferenciais__grid { grid-template-columns: repeat(2, 1fr); }
  .semana__grid { grid-template-columns: repeat(3, 1fr); }
  .galeria__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 880px) {
  .nav { position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0; background: var(--bg); border-bottom: 1px solid var(--borda); padding: .6rem clamp(1rem,4vw,2rem) 1.2rem; transform: translateY(-130%); transition: transform .32s ease; box-shadow: 0 20px 40px -20px var(--sombra-forte); margin: 0; }
  .nav.aberto { transform: translateY(0); }
  .nav a { padding: .85rem .4rem; border-radius: 0; border-bottom: 1px solid var(--borda); }
  .nav a.ativo::after { display: none; }
  .btn-menu { display: inline-flex; }
  .header__cta span { display: none; }
  .header__cta { padding: .7rem; }
  .header__cta svg { margin: 0; }
  .header__acoes { margin-left: auto; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__figura { order: -1; }
  .hero__texto > p { max-width: none; }
  .sobre__inner { grid-template-columns: 1fr; }
  .sobre__figura { order: -1; }
  .local__inner { grid-template-columns: 1fr; }
  .depoimentos__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  html { scroll-padding-top: 80px; }
  .diferenciais__grid { grid-template-columns: 1fr; }
  .semana__grid { grid-template-columns: repeat(2, 1fr); }
  .galeria__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .galeria__item:nth-child(1) { grid-column: span 2; }
  .galeria__item:nth-child(6) { grid-column: auto; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__ctas .btn { flex: 1; }
  .topbar { font-size: .74rem; }
  .cart-fab span { font-size: .9rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
