/* ==========================================================================
   PONTO.B — Design System
   Cores retiradas do material de marca (Catálogo Parede 2026 + Logotipo)
   ========================================================================== */

:root {
  /* Marca */
  --red:        #CD342E;
  --red-dark:   #A3241F;
  --red-soft:   #E85C56;
  --yellow:     #F9B800;
  --yellow-br:  #FFC933;
  --yellow-dk:  #A87A00;
  --ink:        #17110F;
  --ink-2:      #2B211E;
  --cream:      #FBF6EC;
  --white:      #FFFFFF;
  --grey:       #6E6259;
  --grey-light: #E7DFD3;

  /* Kisekele */
  --kise:       #4A1B22;
  --kise-dark:  #2F0E13;
  --kise-gold:  #CBA46A;
  --kise-cream: #F6EFE6;

  /* Sistema */
  --radius:     18px;
  --radius-lg:  28px;
  --radius-sm:  10px;
  --shadow:     0 10px 30px rgba(23, 17, 15, .12);
  --shadow-lg:  0 22px 55px rgba(23, 17, 15, .22);
  --shadow-sm:  0 4px 14px rgba(23, 17, 15, .10);
  --nav-h:      74px;
  --wrap:       1240px;
  --ease:       cubic-bezier(.22, 1, .36, 1);

  --font:       'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-disp:  'Baloo 2', 'Poppins', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 70px); }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-disp); font-weight: 800; line-height: 1.05; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 6.5vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Ícones ---------- */
.ico {
  width: 1.15em; height: 1.15em; flex-shrink: 0;
  display: inline-block; vertical-align: -.2em;
}
.ico-lg { width: 2rem; height: 2rem; vertical-align: middle; }
.ico-xl { width: 2.4rem; height: 2.4rem; stroke-width: 1.5; vertical-align: middle; }
.ico-cat { width: 2.5rem; height: 2.5rem; stroke-width: 1.5; color: var(--red); }
.cat-card:hover .ico-cat { color: var(--ink); }
.ico-feat {
  width: 2.9rem; height: 2.9rem; stroke-width: 1.5;
  color: var(--red); margin-bottom: .85rem; display: block;
}
.dark .ico-feat, .kise .ico-feat { color: var(--yellow); }
.ico-inline { width: 1.05em; height: 1.05em; }

/* ---------- Elementos comuns ---------- */
.eyebrow {
  display: inline-block; font-weight: 700; font-size: .78rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--red);
  margin-bottom: .8rem;
}
.eyebrow.on-dark { color: var(--yellow); }

.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-head { max-width: 720px; margin-bottom: 2.8rem; }
.section-head.center { margin-inline: auto; }
.section-head p { color: var(--grey); font-size: 1.05rem; margin-top: .8rem; }

/* Botões */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.9rem; border-radius: 999px;
  font-family: var(--font-disp); font-weight: 800; font-size: 1.02rem;
  letter-spacing: .01em; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  border: 2px solid transparent; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--yellow); color: var(--ink); box-shadow: 0 8px 22px rgba(249, 184, 0, .45); }
.btn-primary:hover { background: var(--yellow-br); box-shadow: 0 12px 28px rgba(249, 184, 0, .55); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 8px 22px rgba(205, 52, 46, .35); }
.btn-red:hover { background: var(--red-dark); }
.btn-ghost { border-color: currentColor; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-ghost.on-dark { color: #fff; }
.btn-ghost.on-dark:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 8px 22px rgba(37, 211, 102, .38); }
.btn-wa:hover { background: #1EB855; }
.btn-lg { padding: 1.15rem 2.4rem; font-size: 1.12rem; }
.btn-sm { padding: .6rem 1.15rem; font-size: .88rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  background: var(--ink); color: #fff;
  transition: box-shadow .3s, background .3s;
}
.site-header.scrolled { box-shadow: 0 6px 26px rgba(0, 0, 0, .28); }
.nav {
  height: 100%; display: flex; align-items: center; gap: 1.4rem;
  width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: .35rem; margin-left: auto; }
.nav-links a {
  padding: .55rem .85rem; border-radius: 999px;
  font-weight: 600; font-size: .9rem; letter-spacing: .02em;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: rgba(255, 255, 255, .1); }
.nav-links a.active { color: var(--yellow); }
.nav-actions { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }

.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: .5rem;
  background: var(--yellow); color: var(--ink);
  padding: .6rem 1.15rem; border-radius: 999px;
  font-family: var(--font-disp); font-weight: 800; font-size: .95rem;
  transition: background .2s, transform .2s var(--ease);
}
.cart-btn:hover { background: var(--yellow-br); transform: translateY(-2px); }
.cart-count {
  min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px;
  background: var(--red); color: #fff; font-size: .75rem; font-weight: 800;
  display: grid; place-items: center;
}
.cart-btn.bump { animation: bump .4s var(--ease); }
@keyframes bump { 0%,100% { transform: scale(1); } 40% { transform: scale(1.14); } }

.nav-toggle { display: none; color: #fff; padding: .5rem; font-size: 1.6rem; line-height: 1; }

@media (max-width: 560px) { .hide-sm { display: none; } }

@media (max-width: 1040px) {
  .nav-toggle { display: block; order: 3; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink); padding: .8rem 1.25rem 1.6rem;
    border-bottom: 3px solid var(--yellow);
    transform: translateY(-130%); transition: transform .35s var(--ease);
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: .9rem 1rem; border-radius: var(--radius-sm); font-size: 1.02rem; }
  .nav-actions { margin-left: auto; }
}

/* Barra fixa mobile */
.mobile-bar { display: none; }
@media (max-width: 760px) {
  .mobile-bar {
    display: grid; grid-template-columns: repeat(5, 1fr);
    position: fixed; inset: auto 0 0 0; z-index: 99;
    background: var(--ink); border-top: 2px solid rgba(255,255,255,.08);
    padding: .4rem .25rem calc(.4rem + env(safe-area-inset-bottom));
  }
  .mobile-bar a {
    display: grid; justify-items: center; gap: 3px; padding: .35rem 0;
    color: rgba(255, 255, 255, .62); font-size: .64rem; font-weight: 600;
  }
  .mobile-bar a.active { color: var(--yellow); }
  body { padding-bottom: 66px; }
}

main { padding-top: var(--nav-h); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; min-height: min(88vh, 780px); display: grid; overflow: hidden; background: var(--ink); }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.1s var(--ease), transform 7s linear;
  background-size: cover; background-position: center; transform: scale(1.06);
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(23,17,15,.94) 0%, rgba(23,17,15,.78) 42%, rgba(23,17,15,.25) 100%);
}
.hero-inner {
  position: relative; z-index: 2; align-self: center; color: #fff;
  padding: 4rem 0; max-width: 660px;
}
.hero h1 { color: #fff; text-transform: uppercase; }
.hero h1 em { font-style: normal; color: var(--yellow); display: block; }
.hero-tag {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255, 255, 255, .12); backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: .45rem 1.1rem; border-radius: 999px;
  font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero-sub { font-size: clamp(1rem, 1.7vw, 1.22rem); color: rgba(255,255,255,.85); margin: 1.4rem 0 2.2rem; max-width: 48ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-foot {
  position: relative; z-index: 2; align-self: end;
  padding-bottom: 2.2rem; display: flex; align-items: center; gap: 1.5rem;
  color: rgba(255,255,255,.75); font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; font-size: .74rem;
}
.hero-dots { display: flex; gap: .5rem; margin-left: auto; }
.hero-dots button {
  width: 34px; height: 4px; border-radius: 99px; background: rgba(255,255,255,.28);
  transition: background .3s;
}
.hero-dots button.active { background: var(--yellow); }

/* ==========================================================================
   CATEGORIAS RÁPIDAS
   ========================================================================== */
.quicknav { background: var(--white); padding: clamp(2.5rem, 5vw, 4rem) 0; }
.cat-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
}
.cat-card {
  display: grid; justify-items: center; gap: .5rem; text-align: center;
  padding: 1.6rem 1rem; border-radius: var(--radius);
  background: var(--cream); border: 2px solid transparent;
  transition: transform .3s var(--ease), border-color .25s, box-shadow .3s;
}
.cat-card:hover { transform: translateY(-6px); border-color: var(--yellow); box-shadow: var(--shadow); }
.cat-card .ico { font-size: 2.4rem; line-height: 1; }
.cat-card strong {
  font-family: var(--font-disp); font-size: 1.02rem;
  max-width: 100%; overflow-wrap: anywhere; hyphens: auto;
}
.cat-card small { color: var(--grey); font-size: .78rem; line-height: 1.35; max-width: 100%; overflow-wrap: break-word; }
@media (max-width: 430px) {
  .cat-card { padding: 1.5rem .65rem; }
  .cat-card strong { font-size: .95rem; }
}

/* ==========================================================================
   CARDS DE PRODUTO
   ========================================================================== */
.prod-grid {
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
}
.prod-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease);
}
.prod-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.prod-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--grey-light); }
.prod-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.prod-card:hover .prod-media img { transform: scale(1.07); }
.prod-badge {
  position: absolute; top: .8rem; left: .8rem; z-index: 2;
  background: var(--red); color: #fff; padding: .3rem .8rem; border-radius: 999px;
  font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.prod-badge.novo { background: var(--ink); color: var(--yellow); }
.prod-body { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; flex: 1; gap: .5rem; }
.prod-body h3 { font-size: 1.13rem; }
.prod-body p { color: var(--grey); font-size: .87rem; line-height: 1.45; flex: 1; }
.prod-foot { display: flex; align-items: center; justify-content: space-between; gap: .8rem; margin-top: .4rem; }
.price { font-family: var(--font-disp); font-weight: 800; font-size: 1.28rem; color: var(--red); white-space: nowrap; }
.price small { font-size: .72rem; color: var(--grey); font-weight: 600; display: block; margin-top: -4px; }
.add-btn {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--yellow); color: var(--ink);
  display: grid; place-items: center;
  transition: background .2s, transform .25s var(--ease);
}
.add-btn .ico { width: 1.35rem; height: 1.35rem; stroke-width: 2.4; }
.add-btn:hover { background: var(--ink); color: var(--yellow); transform: rotate(90deg); }

/* Lista simples (bebidas) */
.drink-list { display: grid; gap: .55rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.drink-row {
  display: flex; align-items: center; gap: .9rem;
  background: var(--white); padding: .85rem 1.1rem; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm); transition: transform .22s var(--ease);
}
.drink-row:hover { transform: translateX(4px); }
.drink-row .n { font-weight: 600; flex: 1; }
.drink-row .p { font-family: var(--font-disp); font-weight: 800; color: var(--red); }
.drink-row .add-btn { width: 34px; height: 34px; font-size: 1.2rem; }

/* ==========================================================================
   MENU — navegação interna
   ========================================================================== */
.menu-hero {
  background: var(--red); color: #fff; padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 4.5rem);
  position: relative; overflow: hidden;
}
.menu-hero h1 { color: #fff; }
.menu-hero p { color: rgba(255,255,255,.85); margin-top: .8rem; max-width: 52ch; }

.menu-nav {
  position: sticky; top: var(--nav-h); z-index: 60;
  background: var(--white); box-shadow: 0 4px 18px rgba(23,17,15,.08);
}
.menu-nav-inner {
  display: flex; gap: .4rem; overflow-x: auto; padding: .7rem 0;
  scrollbar-width: none;
}
.menu-nav-inner::-webkit-scrollbar { display: none; }
.menu-nav a {
  display: inline-flex; align-items: center; gap: .4rem; flex-shrink: 0;
  padding: .55rem 1.05rem; border-radius: 999px;
  font-weight: 700; font-size: .9rem; color: var(--grey);
  border: 2px solid var(--grey-light); transition: all .22s;
}
.menu-nav a:hover { border-color: var(--yellow); color: var(--ink); }
.menu-nav a.active { background: var(--red); border-color: var(--red); color: #fff; }

.menu-cat { padding: clamp(2.5rem, 5vw, 4rem) 0 0; }
.menu-cat-head { display: flex; align-items: baseline; gap: .9rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.menu-cat-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.menu-cat-head span { color: var(--grey); font-size: .95rem; }

/* ==========================================================================
   MODAL (customização + carrinho lateral)
   ========================================================================== */
.overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(23, 17, 15, .62);
  backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .3s;
}
.overlay.open { opacity: 1; pointer-events: auto; }

.modal {
  position: fixed; z-index: 201; left: 50%; top: 50%;
  transform: translate(-50%, -46%) scale(.96);
  width: min(100% - 2rem, 620px); max-height: min(88vh, 900px);
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .35s var(--ease);
  box-shadow: var(--shadow-lg);
}
.modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.modal-media { position: relative; aspect-ratio: 16 / 9; background: var(--grey-light); flex-shrink: 0; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }
.modal-close {
  position: absolute; top: .8rem; right: .8rem; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(23,17,15,.6); color: #fff;
  display: grid; place-items: center; backdrop-filter: blur(4px);
}
.modal-close .ico { width: 1.15rem; height: 1.15rem; stroke-width: 2.2; }
.modal-close:hover { background: var(--red); }
.modal-body { padding: 1.5rem; overflow-y: auto; flex: 1; }
.modal-body h2 { font-size: 1.7rem; }
.modal-desc { color: var(--grey); margin: .5rem 0 1.3rem; font-size: .95rem; }

.opt-group { margin-bottom: 1.4rem; }
.opt-group > h4 {
  font-family: var(--font); font-weight: 700; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--grey);
  margin-bottom: .7rem; display: flex; align-items: center; gap: .5rem;
}
.opt-group > h4 .req { color: var(--red); letter-spacing: 0; text-transform: none; font-size: .72rem; }
.opt-list { display: grid; gap: .5rem; }
.opt {
  display: flex; align-items: center; gap: .8rem; cursor: pointer;
  padding: .75rem 1rem; border-radius: var(--radius-sm);
  border: 2px solid var(--grey-light); background: var(--cream);
  transition: border-color .2s, background .2s;
}
.opt:hover { border-color: var(--yellow); }
.opt input { accent-color: var(--red); width: 18px; height: 18px; flex-shrink: 0; cursor: pointer; }
.opt .label { flex: 1; min-width: 0; overflow-wrap: break-word; font-weight: 600; font-size: .93rem; }
.opt .plus { font-weight: 800; color: var(--red); font-size: .88rem; }
.opt:has(input:checked) { border-color: var(--red); background: #FDF2F1; }

.modal-note { width: 100%; border: 2px solid var(--grey-light); border-radius: var(--radius-sm);
  padding: .8rem 1rem; background: var(--cream); font-size: .92rem; resize: vertical; min-height: 74px; }
.modal-note:focus { outline: none; border-color: var(--yellow); }

.modal-foot {
  padding: 1.1rem 1.5rem calc(1.1rem + env(safe-area-inset-bottom));
  border-top: 2px solid var(--grey-light); background: var(--white);
  display: flex; align-items: center; gap: 1rem; flex-shrink: 0;
}
.qty { display: flex; align-items: center; gap: .2rem; background: var(--cream); border-radius: 999px; padding: .25rem; }
.qty button {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; transition: background .2s;
}
.qty button .ico { width: 1.05rem; height: 1.05rem; stroke-width: 2.4; }
.qty button:hover { background: var(--grey-light); }
.qty span { min-width: 30px; text-align: center; font-weight: 800; font-family: var(--font-disp); }

@media (max-width: 620px) {
  .modal {
    top: auto; bottom: 0; left: 0; transform: translateY(100%);
    width: 100%; max-height: 92vh; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .modal.open { transform: translateY(0); }
  .modal-foot { flex-wrap: wrap; }
}

/* ==========================================================================
   CARRINHO LATERAL
   ========================================================================== */
.drawer {
  position: fixed; z-index: 201; inset: 0 0 0 auto;
  width: min(100%, 420px); background: var(--cream);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .38s var(--ease);
  box-shadow: var(--shadow-lg);
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  padding: 1.3rem 1.4rem; background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.drawer-head h3 { font-size: 1.3rem; }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.2rem 1.4rem; }
.drawer-foot {
  padding: 1.2rem 1.4rem calc(1.2rem + env(safe-area-inset-bottom));
  background: var(--white); border-top: 2px solid var(--grey-light);
}

.cart-line { display: flex; gap: .9rem; padding: .9rem 0; border-bottom: 1px solid var(--grey-light); }
.cart-line:last-child { border-bottom: 0; }
.cart-line img { width: 68px; height: 68px; border-radius: 12px; object-fit: cover; flex-shrink: 0; background: var(--grey-light); }
.cart-line .info { flex: 1; min-width: 0; }
.cart-line .info strong { display: block; font-size: .96rem; line-height: 1.3; }
.cart-line .info ul { margin: .25rem 0 .4rem; }
.cart-line .info li { font-size: .78rem; color: var(--grey); line-height: 1.4; }
.cart-line .row { display: flex; align-items: center; justify-content: space-between; gap: .6rem; margin-top: .3rem; }
.cart-line .qty-mini { display: flex; align-items: center; gap: .1rem; background: var(--white); border-radius: 999px; padding: .15rem; box-shadow: var(--shadow-sm); }
.cart-line .qty-mini button { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; }
.cart-line .qty-mini .ico { width: .8rem; height: .8rem; stroke-width: 2.6; }
.cart-line .qty-mini button:hover { background: var(--grey-light); }
.cart-line .qty-mini span { min-width: 22px; text-align: center; font-weight: 700; font-size: .85rem; }
.cart-line .lp { font-family: var(--font-disp); font-weight: 800; color: var(--red); font-size: .98rem; }
.cart-line .del { color: var(--grey); font-size: .75rem; text-decoration: underline; }
.cart-line .del:hover { color: var(--red); }

.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--grey); }
.cart-empty .ico-empty { width: 3.2rem; height: 3.2rem; margin: 0 auto .9rem; display: block; stroke-width: 1.3; opacity: .5; }

.totals { display: grid; gap: .5rem; margin-bottom: 1rem; }
.totals div { display: flex; justify-content: space-between; font-size: .92rem; color: var(--grey); }
.totals div.grand {
  font-family: var(--font-disp); font-weight: 800; font-size: 1.35rem; color: var(--ink);
  padding-top: .6rem; border-top: 2px solid var(--grey-light);
}
.totals div.grand span:last-child { color: var(--red); }

/* ==========================================================================
   TOAST
   ========================================================================== */
.toast-wrap {
  position: fixed; z-index: 300; left: 50%; bottom: 24px; transform: translateX(-50%);
  display: grid; gap: .5rem; width: min(100% - 2rem, 400px); pointer-events: none;
}
@media (max-width: 760px) { .toast-wrap { bottom: 82px; } }
.toast {
  background: var(--ink); color: #fff; padding: .85rem 1.2rem; border-radius: 999px;
  font-weight: 600; font-size: .9rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .6rem;
  animation: toastIn .35s var(--ease);
}
.toast.ok { background: #1F7A3F; }
.toast.warn { background: var(--red); }
@keyframes toastIn { from { opacity: 0; transform: translateY(16px); } }

/* ==========================================================================
   FAIXAS / DESTAQUES
   ========================================================================== */
.strip {
  background: var(--red); color: #fff; padding: .9rem 0; overflow: hidden;
  border-block: 3px solid var(--ink);
}
.strip-track {
  display: flex; gap: 3rem; width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-disp); font-weight: 800; font-size: 1.05rem;
  letter-spacing: .14em; text-transform: uppercase; white-space: nowrap;
}
.strip-track span { display: flex; align-items: center; gap: 3rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip-track { animation: none; } }

.strip .ico-strip { width: .85rem; height: .85rem; opacity: .75; vertical-align: -.05em; margin-left: .4rem; }

/* Galeria de pessoas */
.galeria {
  display: grid; gap: .8rem;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
}
.gal-item { overflow: hidden; border-radius: var(--radius); background: var(--grey-light); }
.gal-item.w2 { grid-column: span 2; }
.gal-item.h2 { grid-row: span 2; }
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.gal-item:hover img { transform: scale(1.06); }
@media (max-width: 900px) {
  .galeria { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
}
@media (max-width: 520px) {
  .galeria { grid-auto-rows: 135px; }
  .gal-item.h2 { grid-row: span 1; }
}

.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.dark { background: var(--ink); color: var(--cream); }
.dark h2, .dark h3 { color: #fff; }
.dark p { color: rgba(251, 246, 236, .74); }

/* Desafio */
.challenge {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--ink); color: #fff; display: grid; grid-template-columns: 1.05fr 1fr;
}
@media (max-width: 860px) { .challenge { grid-template-columns: 1fr; } }
.challenge-body { padding: clamp(2rem, 4vw, 3.4rem); align-self: center; }
.challenge-body h2 { color: var(--yellow); }
.challenge-img { min-height: 300px; background-size: cover; background-position: center; }
.challenge-kg {
  display: inline-block; background: var(--red); color: #fff;
  font-family: var(--font-disp); font-weight: 800; font-size: .84rem;
  letter-spacing: .16em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 999px; margin-bottom: 1rem;
}

/* ==========================================================================
   KISEKELE
   ========================================================================== */
.kise { background: var(--kise); color: var(--kise-cream); }
.kise h1, .kise h2, .kise h3 { color: #fff; }
.kise p { color: rgba(246, 239, 230, .78); }
.kise-hero {
  position: relative; min-height: min(80vh, 700px); display: grid; align-items: center;
  background: var(--kise); overflow: hidden;
}
.kise-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .38; }
.kise-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--kise-dark) 8%, rgba(47,14,19,.72) 55%, rgba(47,14,19,.3) 100%);
}
.kise-hero .wrap { position: relative; z-index: 2; padding: 4rem 0; }
.kise-logo { max-width: 300px; margin-bottom: 1.6rem; filter: drop-shadow(0 6px 18px rgba(0,0,0,.4)); }
.kise-drip { display: block; width: 100%; height: auto; margin-bottom: -1px; }
.gold { color: var(--kise-gold); }

.flavour-grid { display: grid; gap: 1.3rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.flavour {
  background: rgba(255,255,255,.05); border: 1px solid rgba(203,164,106,.28);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .32s var(--ease), border-color .3s;
}
.flavour:hover { transform: translateY(-8px); border-color: var(--kise-gold); }
.flavour img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.flavour .fb { padding: 1.1rem 1.25rem 1.4rem; }
.flavour h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.flavour p { font-size: .85rem; }

.patent {
  display: inline-flex; align-items: center; gap: .8rem;
  background: rgba(203,164,106,.14); border: 1px solid rgba(203,164,106,.4);
  border-radius: var(--radius); padding: .9rem 1.4rem; font-size: .9rem;
}
.patent b { color: var(--kise-gold); }
.patent .ico { color: var(--kise-gold); flex-shrink: 0; }
.dark .patent .ico, .split .patent .ico { color: var(--yellow); }

.lista-ico { display: grid; gap: .9rem; }
.lista-ico li { display: flex; align-items: center; gap: .8rem; }
.lista-ico .ico { color: var(--yellow); width: 1.35rem; height: 1.35rem; }

.chip .ico { width: .95rem; height: .95rem; margin-right: .1rem; color: var(--red); }
.store-body li .ico { color: var(--red); flex-shrink: 0; margin-top: .18rem; }
.menu-cat-head h2 .ico { color: var(--red); }
.menu-nav a .ico { width: 1.05rem; height: 1.05rem; }
.eyebrow .ico { width: 1rem; height: 1rem; vertical-align: -.15em; }
.challenge-kg .ico { width: .95rem; height: .95rem; vertical-align: -.1em; }
.btn .ico { width: 1.2em; height: 1.2em; }
.toast .ico { width: 1.1rem; height: 1.1rem; stroke-width: 2.4; flex-shrink: 0; }
.cart-btn .ico { width: 1.15rem; height: 1.15rem; }
.mobile-bar .ico { width: 1.3rem; height: 1.3rem; }

/* ==========================================================================
   TIMELINE
   ========================================================================== */
.timeline { position: relative; display: grid; gap: 0; max-width: 780px; margin-inline: auto; }
.timeline::before {
  content: ''; position: absolute; left: 112px; top: 12px; bottom: 12px; width: 3px;
  background: linear-gradient(var(--yellow), var(--red));
}
@media (max-width: 640px) { .timeline::before { left: 12px; } }
.tl-item { display: grid; grid-template-columns: 112px 1fr; gap: 2rem; padding: 1.2rem 0; position: relative; }
@media (max-width: 640px) { .tl-item { grid-template-columns: 1fr; gap: .6rem; padding-left: 42px; } }
.tl-year {
  font-family: var(--font-disp); font-weight: 800; font-size: .95rem;
  text-align: right; color: var(--red); padding-top: .18rem;
  padding-right: 26px; white-space: nowrap;
}
@media (max-width: 640px) { .tl-year { text-align: left; padding-right: 0; } }
.tl-item::before {
  content: ''; position: absolute; left: 106px; top: 1.55rem;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--red); border: 3px solid var(--cream); z-index: 2;
}
@media (max-width: 640px) { .tl-item::before { left: 6px; top: .35rem; } }
.tl-item.futuro::before { background: var(--yellow); }
.tl-item.futuro .tl-year { color: var(--yellow-dk); }
.tl-body h3 { margin-bottom: .35rem; }
.tl-body p { color: var(--grey); font-size: .95rem; }

/* Números */
.stats { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.stat {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.9rem 1.5rem; text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat .n { font-family: var(--font-disp); font-weight: 800; font-size: 3rem; color: var(--red); line-height: 1; }
.stat .l { color: var(--grey); font-size: .88rem; margin-top: .4rem; }
.dark .stat { background: rgba(255,255,255,.06); }
.dark .stat .n { color: var(--yellow); }
.dark .stat .l { color: rgba(251,246,236,.65); }

/* Diferenças */
.why-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.why {
  background: var(--white); border-radius: var(--radius); padding: 1.7rem 1.5rem;
  border-left: 5px solid var(--yellow); box-shadow: var(--shadow-sm);
}
.why h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.why p { color: var(--grey); font-size: .88rem; }
.dark .why { background: rgba(255, 255, 255, .06); border-left-color: var(--yellow); }
.dark .why h3 { color: #fff; }
.dark .why p { color: rgba(251, 246, 236, .7); }

/* Passos numerados */
.why.passo { position: relative; }
.why.passo::after {
  content: attr(data-n);
  position: absolute; top: 1.1rem; right: 1.3rem;
  font-family: var(--font-disp); font-weight: 800; font-size: 2.6rem;
  line-height: 1; color: var(--yellow); opacity: .22;
}

.aviso-confirma {
  margin: 2.4rem auto 0; width: max-content; max-width: 100%;
  display: flex; align-items: center; gap: .9rem;
  padding: 1rem 1.6rem; border-radius: 999px;
  background: rgba(249, 184, 0, .12); border: 1px solid rgba(249, 184, 0, .45);
  color: var(--yellow); font-weight: 700; font-size: .95rem; text-align: left;
}
@media (max-width: 480px) { .aviso-confirma { border-radius: var(--radius); } }
/* variante para fundos claros */
.aviso-confirma.claro {
  background: #FFF8E6; border-color: var(--yellow-dk); color: #8A6400;
}

/* ==========================================================================
   LOJAS
   ========================================================================== */
.store-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.store {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.store img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.store-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.store-body h3 { font-size: 1.3rem; }
.store-tag {
  align-self: flex-start; background: var(--yellow); color: var(--ink);
  font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: .25rem .75rem; border-radius: 999px;
}
.store-body ul { display: grid; gap: .4rem; margin: .3rem 0 .8rem; }
.store-body li { display: flex; gap: .6rem; font-size: .9rem; color: var(--grey); }
.store-body li b { color: var(--ink); font-weight: 600; }
.store-chips { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.chip { background: var(--cream); border-radius: 999px; padding: .3rem .8rem; font-size: .78rem; font-weight: 600; }

/* ==========================================================================
   FORMULÁRIOS
   ========================================================================== */
.form-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.field { display: grid; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
/* `>` para não apanhar os <label class="opt"> das listas de opções */
.field > label { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--grey); }
.field > input, .field > select, .field > textarea {
  width: 100%; padding: .9rem 1.05rem; border-radius: var(--radius-sm);
  border: 2px solid var(--grey-light); background: var(--white); font-size: .96rem;
  transition: border-color .2s;
}
.field > textarea { min-height: 120px; resize: vertical; }
.field > input:focus, .field > select:focus, .field > textarea:focus { outline: none; border-color: var(--yellow); }
.field > input:invalid:not(:placeholder-shown) { border-color: var(--red-soft); }
.check-grid { display: grid; gap: .5rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.check-grid .opt {
  font-size: .95rem; font-weight: 600; letter-spacing: 0;
  text-transform: none; color: var(--ink);
}
.check-grid .opt .label { font-size: .95rem; font-weight: 600; color: var(--ink); }
.card-box { background: var(--white); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); }

/* Um cartão claro dentro de uma secção escura tem de repor a cor do texto,
   senão as etiquetas ficam claras sobre fundo claro. */
.dark .card-box, .kise .card-box { color: var(--ink); }
.dark .card-box h2, .dark .card-box h3, .dark .card-box h4,
.kise .card-box h2, .kise .card-box h3, .kise .card-box h4 { color: var(--ink); }
.dark .card-box p, .kise .card-box p { color: var(--grey); }
.dark .card-box .opt .label, .kise .card-box .opt .label { color: var(--ink); }
.dark .card-box label, .kise .card-box label { color: var(--grey); }
.dark .card-box .field input, .dark .card-box .field select, .dark .card-box .field textarea,
.kise .card-box .field input, .kise .card-box .field select, .kise .card-box .field textarea { color: var(--ink); }

/* Método de pagamento */
.pay-list { display: grid; gap: .55rem; }
.pay {
  display: flex; align-items: center; gap: .85rem; cursor: pointer;
  padding: .95rem 1.1rem; border-radius: var(--radius-sm);
  border: 2px solid var(--grey-light); background: var(--white); transition: border-color .2s, background .2s;
}
.pay:hover { border-color: var(--yellow); }
.pay input { accent-color: var(--red); width: 18px; height: 18px; }
.pay:has(input:checked) { border-color: var(--red); background: #FDF2F1; }

/* Checkout */
.checkout { display: grid; gap: 2rem; grid-template-columns: 1.15fr .85fr; align-items: start; }
@media (max-width: 940px) { .checkout { grid-template-columns: 1fr; } }
.summary { position: sticky; top: calc(var(--nav-h) + 20px); }
@media (max-width: 940px) { .summary { position: static; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: rgba(251,246,236,.7); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-grid { display: grid; gap: 2.2rem; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-family: var(--font); font-size: .78rem; font-weight: 700; color: #fff;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1rem;
}
.site-footer ul { display: grid; gap: .55rem; }
.site-footer a:hover { color: var(--yellow); }
.footer-logo { height: 42px; width: auto; margin-bottom: 1.1rem; }
.footer-bot {
  margin-top: 2.8rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .82rem;
}
.social { display: flex; gap: .6rem; }
.social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: grid; place-items: center; font-size: 1.1rem; transition: background .2s, transform .25s var(--ease);
}
.social a:hover { background: var(--yellow); color: var(--ink); transform: translateY(-3px); }
.social .ico { width: 1.25rem; height: 1.25rem; }
.site-footer li .ico { color: var(--yellow); margin-right: .15rem; }

.footer-slogan {
  margin-top: 2.6rem; text-align: center;
  font-family: var(--font-disp); font-weight: 700; font-size: 1.15rem;
  color: var(--yellow); letter-spacing: .01em;
}

/* Selo BC Design */
.selo-bc {
  margin: 1.8rem auto 0; display: flex; align-items: center; gap: .85rem;
  width: max-content; max-width: 100%;
  padding: .7rem 1.4rem; border-radius: 999px;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12);
  transition: background .25s, border-color .25s, transform .3s var(--ease);
}
.selo-bc:hover { background: rgba(126, 83, 248, .16); border-color: #7E53F8; transform: translateY(-2px); }
.selo-bc-txt {
  font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(251, 246, 236, .5); line-height: 1;
}
.selo-bc-logo { height: 28px; width: auto; }
@media (max-width: 420px) {
  .selo-bc { flex-direction: column; gap: .5rem; padding: .9rem 1.4rem; }
}

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
/* O estado escondido só existe quando o JS confirma que consegue animar.
   Sem JS (ou se o observer falhar) o conteúdo aparece normalmente. */
.js-reveal .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js-reveal .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Aviso de conteúdo por confirmar */
.note-todo {
  background: #FFF7E0; border: 2px dashed var(--yellow-dk); border-radius: var(--radius);
  padding: 1rem 1.2rem; font-size: .88rem; color: #8A6400;
}
