/* ── TOKENS ── */
:root {
  --bg: #FBF7F3;
  --surface: #FFFFFF;
  --text: #1F1B24;
  --muted: #6F5F73;
  --border: rgba(143,121,169,.2);
  --purple: #7B00CC;
  --pink: #FF4081;
  --gold: #FFD700;
  --gold-dark: #FFA000;
  --shadow-sm: 0 4px 16px rgba(123,0,204,.08);
  --shadow-md: 0 12px 40px rgba(123,0,204,.14);
  --shadow-lg: 0 24px 64px rgba(123,0,204,.18);
  --radius-card: 20px;
  --radius-pill: 100px;
  --amar: #FFD700;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── URGENCY TOP BAR ── */
.urgency-bar {
  background: linear-gradient(90deg, #1E0030, #3D006E, #1E0030);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  position: relative;
  overflow: hidden;
}
.urgency-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
  animation: shimmer 3s infinite;
}
.urgency-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  margin-right: 7px;
  animation: pulse-dot 2s infinite;
  vertical-align: middle;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, #fff8f2 0%, #ffe8db 40%, #f0e4ff 100%);
  padding: 52px 20px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(rgba(247,198,206,.12) 0deg 9deg, transparent 9deg 18deg);
  pointer-events: none;
}
.glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(52px);
}
.g1 { width: 380px; height: 380px; background: rgba(201,180,255,.28); top: -90px; right: -60px; }
.g2 { width: 280px; height: 280px; background: rgba(247,198,206,.28); bottom: -60px; left: -60px; }
.g3 { width: 200px; height: 200px; background: rgba(255,215,0,.12); top: 50%; left: 50%; transform: translate(-50%,-50%); }

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(123,0,204,.18);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  animation: fadeUp .5s ease both;
  backdrop-filter: blur(8px);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Logo */
.hero-logo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(62px, 14vw, 96px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.03em;
  position: relative;
  z-index: 2;
  animation: fadeUp .6s .05s ease both;
}
.lf { display: block; color: #C8001A; -webkit-text-fill-color: #C8001A; }
.ls { display: block; color: var(--purple); -webkit-text-fill-color: var(--purple); }

/* Hero headline */
.hero-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 800;
  color: var(--text);
  margin-top: 18px;
  position: relative;
  z-index: 2;
  animation: fadeUp .6s .12s ease both;
  line-height: 1.3;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(14px, 2.5vw, 16px);
  color: var(--muted);
  margin-top: 10px;
  position: relative;
  z-index: 2;
  animation: fadeUp .6s .18s ease both;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Rating strip */
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
  position: relative;
  z-index: 2;
  animation: fadeUp .6s .22s ease both;
  flex-wrap: wrap;
}
.rating-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(143,121,169,.2);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.stars { color: var(--gold); letter-spacing: 1px; }
.rating-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(31,27,36,.2); }

/* CTA hero */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--purple) 0%, #C026D3 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 15px 32px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 28px;
  position: relative;
  z-index: 2;
  animation: fadeUp .6s .28s ease both;
  box-shadow: 0 8px 28px rgba(123,0,204,.35);
  transition: transform .18s, box-shadow .18s;
  font-family: inherit;
  letter-spacing: .01em;
}
.hero-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(123,0,204,.45);
}
.hero-cta::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--purple), var(--pink), var(--gold));
  z-index: -1;
  opacity: 0;
  transition: opacity .2s;
}
.hero-cta:hover::after { opacity: .25; }

/* Pulse ring on CTA */
.cta-ring {
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(123,0,204,.4);
  animation: ring-pulse 2s infinite;
  pointer-events: none;
}
@keyframes ring-pulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.08); opacity: 0; }
}

.arc {
  width: 64px; height: 3px;
  border-radius: 3px;
  margin: 24px auto 0;
  background: linear-gradient(90deg, rgba(123,0,204,.8), rgba(255,64,129,.8));
  position: relative;
  z-index: 2;
  animation: fadeUp .6s .32s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── SOCIAL PROOF STRIP ── */
.social-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  overflow: hidden;
}
.sp-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}
.sp-item strong { color: var(--text); font-weight: 700; }
.sp-sep { width: 1px; height: 22px; background: var(--border); }

/* ── STICKY NAV ── */
.cat-nav {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(143,121,169,.2);
  padding: 0 16px;
  position: sticky;
  top: 0;
  z-index: 50;
}
.cat-row {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 12px 0;
}
.cat-row::-webkit-scrollbar { display: none; }
.cat-btn {
  flex-shrink: 0;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(123,0,204,.2);
  background: transparent;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
  white-space: nowrap;
}
.cat-btn:hover { background: rgba(247,198,206,.3); border-color: rgba(123,0,204,.35); }
.cat-btn.active {
  background: linear-gradient(135deg, var(--purple), #C026D3);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(123,0,204,.28);
}

/* ── SECTIONS ── */
.section { padding: 36px 16px 12px; max-width: 1200px; margin: 0 auto; }
.sec-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.sec-icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}
.sec-sub { font-size: 12px; color: var(--muted); margin-top: 2px; font-weight: 500; }
.sec-line { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(123,0,204,.2), transparent); }

/* ── ACAI IMAGES ── */
.acai-img {
  width: 100%; height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.card-img {
  width: 96px; height: 96px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
}

/* ── ACAI CARDS ── */
.acai-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.acai-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.acai-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(123,0,204,.3);
}

.acai-bar { height: 5px; }
.br { background: linear-gradient(90deg, var(--purple), #CE93D8); }
.bp { background: linear-gradient(90deg, var(--pink), #F48FB1); }
.ba { background: linear-gradient(90deg, #F9A825, var(--gold)); }

.acai-top { padding: 16px 16px 12px; display: flex; align-items: center; gap: 12px; }
.acai-ico { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.ir { background: rgba(123,0,204,.14); }
.ip { background: rgba(255,64,129,.12); }
.acai-info { flex: 1; }
.acai-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.acai-ml { font-size: 11px; color: var(--muted); font-weight: 500; }
.acai-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 3px;
}

.acai-recheios {
  background: rgba(123,0,204,.07);
  border-top: 1px solid rgba(123,0,204,.15);
  padding: 11px 16px;
}
.acai-r-title {
  font-size: 10px; font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}
.recheios-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.rtag {
  font-size: 11px;
  background: rgba(201,180,255,.25);
  border: 1px solid rgba(123,0,204,.18);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  color: var(--text);
  font-weight: 500;
}
.rtag.more {
  background: rgba(247,198,206,.35);
  border-color: rgba(255,64,129,.25);
  color: var(--purple);
  cursor: pointer;
  font-weight: 700;
  transition: all .16s;
}
.rtag.more:hover { background: rgba(123,0,204,.12); }

.acai-caldas {
  background: rgba(255,215,0,.08);
  border-top: 1px solid rgba(247,198,206,.35);
  padding: 10px 16px;
}
.acai-c-title {
  font-size: 10px; font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.calda-preco-badge {
  background: rgba(255,215,0,.2);
  border: 1px solid rgba(255,215,0,.4);
  border-radius: var(--radius-pill);
  padding: 2px 9px;
  font-size: 10px;
  color: #8a6000;
  font-weight: 700;
}
.calda-hint { font-size: 10px; color: var(--muted); margin-bottom: 7px; }
.calda-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.ctag {
  font-size: 10px;
  background: rgba(255,160,0,.1);
  border: 1px solid rgba(255,160,0,.22);
  border-radius: var(--radius-pill);
  padding: 2px 10px;
  color: #8a5000;
  font-weight: 600;
}

.acai-foot {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(123,0,204,.12);
  gap: 8px;
}

.bdg { font-size: 10px; font-weight: 800; letter-spacing: .06em; padding: 3px 10px; border-radius: var(--radius-pill); text-transform: uppercase; }
.bpop { background: rgba(255,215,0,.15); color: #8a6000; border: 1px solid rgba(255,215,0,.35); }
.bnew { background: rgba(255,64,129,.12); color: var(--pink); border: 1px solid rgba(255,64,129,.25); }
.bart { background: rgba(123,0,204,.15); color: var(--purple); border: 1px solid rgba(123,0,204,.28); }

/* ADD BUTTON — acai */
.add-btn-big {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: transform .16s, box-shadow .16s;
  box-shadow: 0 4px 14px rgba(123,0,204,.25);
}
.add-btn-big:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(123,0,204,.38); }

/* ADD BUTTON — simples */
.add-wrap { display: flex; align-items: center; }
.add-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .14s, box-shadow .14s;
  box-shadow: 0 3px 10px rgba(123,0,204,.25);
  line-height: 1;
}
.add-btn:hover { transform: scale(1.12); box-shadow: 0 5px 16px rgba(123,0,204,.38); }
.add-btn.h { display: none; }
.qc { display: none; align-items: center; gap: 6px; }
.qc.s { display: flex; }
.qb {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(123,0,204,.25);
  background: transparent;
  color: var(--text);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .14s;
}
.qb:hover { background: rgba(123,0,204,.1); }
.qn { font-size: 15px; font-weight: 800; min-width: 18px; text-align: center; }

/* ── SIMPLE CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; }
.card {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(123,0,204,.3);
}
.card-bar { height: 5px; }
.card-inner { padding: 16px; display: flex; align-items: flex-start; gap: 14px; }
.card-ico { width: 60px; height: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 30px; flex-shrink: 0; }
.ia { background: rgba(255,215,0,.14); }
.card-info { flex: 1; min-width: 0; }
.card-name { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.card-desc { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 10px; font-weight: 400; }
.flavor-note { font-size: 11px; color: var(--muted); margin-bottom: 10px; font-weight: 500; }
.flavor-list { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.flavor-tag {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(123,0,204,.2);
  background: rgba(247,198,206,.2);
  color: var(--text);
  cursor: pointer;
  transition: all .16s;
  font-weight: 500;
}
.flavor-tag:hover {
  background: rgba(201,180,255,.35);
  border-color: rgba(123,0,204,.45);
  transform: scale(1.04);
}
.flavor-count { font-size: 11px; color: var(--purple); font-weight: 700; }
.card-foot { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.punit { font-size: 11px; color: rgba(255,215,0,.5); font-family: 'Plus Jakarta Sans', sans-serif; }

/* ── PESO CARD ── */
.peso-card {
  border: 1.5px solid rgba(255,215,0,.25);
  border-radius: var(--radius-card);
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, #fff 0%, #fffef5 100%);
}
.peso-card::before {
  content: '';
  display: block;
  height: 5px;
  background: linear-gradient(90deg, #F9A825, var(--gold));
  position: absolute;
  top: 0; left: 0; right: 0;
}
.pey { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.pt { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--text); line-height: 1.2; margin-bottom: 5px; }
.pt em { font-style: italic; background: linear-gradient(135deg, #F9A825, var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ps { font-size: 12px; color: var(--muted); line-height: 1.6; font-weight: 400; }
.peso-caldas { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 5px; align-items: center; }
.peso-calda-lbl { font-size: 10px; color: var(--muted); margin-right: 4px; font-weight: 600; }
.peso-calda-tag { font-size: 11px; background: rgba(255,160,0,.12); border: 1px solid rgba(255,160,0,.25); border-radius: var(--radius-pill); padding: 2px 10px; color: #8a5000; font-weight: 600; }
.peso-calda-preco { font-size: 11px; background: rgba(255,160,0,.22); border: 1px solid rgba(255,160,0,.4); border-radius: var(--radius-pill); padding: 2px 10px; color: #8a5000; font-weight: 800; }
.pfrom { font-size: 10px; color: var(--muted); margin-top: 14px; font-weight: 500; }
.pval {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.punit2 { font-size: 11px; color: var(--muted); font-weight: 600; }

.divider { height: 1px; background: rgba(31,27,36,.07); margin: 20px 16px 0; }

/* ── CART BAR ── */
.cart-bar {
  position: sticky;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30,0,48,.97), rgba(61,0,110,.97));
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 14px 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  z-index: 40;
  box-shadow: 0 -8px 32px rgba(0,0,0,.2);
}
.cart-bar.show { display: flex; animation: slideUp .25s ease; }
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.ci { display: flex; flex-direction: column; }
.cl { font-size: 11px; color: rgba(255,255,255,.55); font-weight: 500; }
.cv { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #fff; }
.cb {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1A001F;
  border: none;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: transform .14s, box-shadow .14s;
  box-shadow: 0 4px 16px rgba(255,160,0,.35);
}
.cb:hover { transform: scale(1.05); box-shadow: 0 6px 22px rgba(255,160,0,.48); }

/* ── FOOTER ── */
.footer {
  background: #140020;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 40px 20px 32px;
  text-align: center;
}
.fb {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, #c9b4ff, #f7c6ce, #f7e2a5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.fs { font-size: 12px; color: rgba(255,255,255,.4); margin-bottom: 18px; font-weight: 500; }
.fi { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.fit { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 500; }
.fc { font-size: 10px; color: rgba(255,255,255,.25); margin-top: 20px; }

/* ── MODAL RECHEIOS ── */
.modal-rec {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.82);
  z-index: 300;
  align-items: flex-end;
  justify-content: center;
}
.modal-rec.show { display: flex; }
.rec-panel {
  background: #1E0030;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px 26px 0 0;
  padding: 24px 20px 44px;
  width: 100%;
  max-width: 520px;
  animation: sheetUp .24s cubic-bezier(.34,1.56,.64,1);
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes sheetUp {
  from { transform: translateY(48px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.rec-handle { width: 36px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.16); margin: 0 auto 20px; }
.rec-title { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700; margin-bottom: 4px; color: #fff; }
.rec-sub { font-size: 12px; color: rgba(255,255,255,.35); margin-bottom: 20px; }

.modal-block-title {
  font-size: 10px; font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 18px 0 9px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mt-roxo { color: #CE93D8; }
.mt-amar { color: var(--gold); }
.modal-hint { font-size: 12px; color: rgba(255,255,255,.3); margin-bottom: 9px; }

.calda-adicional-hint {
  background: rgba(255,160,0,.08);
  border: 1px solid rgba(255,160,0,.18);
  border-radius: 12px;
  padding: 9px 14px;
  margin-bottom: 11px;
  font-size: 12px;
  color: rgba(255,215,0,.7);
  display: flex;
  align-items: center;
  gap: 7px;
}
.calda-preco-pill {
  background: rgba(255,160,0,.25);
  border: 1px solid rgba(255,160,0,.4);
  border-radius: var(--radius-pill);
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
}

.rec-grid { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 4px; }
.rec-item {
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  font-size: 13px;
  color: rgba(255,255,255,.65);
  cursor: pointer;
  transition: all .18s;
  user-select: none;
}
.rec-item:hover { border-color: rgba(123,0,204,.5); background: rgba(123,0,204,.15); color: #fff; }
.rec-item.sel { background: linear-gradient(135deg, rgba(123,0,204,.4), rgba(255,64,129,.22)); border-color: rgba(155,39,176,.65); color: #fff; }

.calda-item {
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,160,0,.22);
  background: rgba(255,160,0,.07);
  font-size: 13px;
  color: rgba(255,255,255,.65);
  cursor: pointer;
  transition: all .18s;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 7px;
}
.calda-item:hover { border-color: rgba(255,160,0,.5); background: rgba(255,160,0,.18); color: #fff; }
.calda-item.sel { background: linear-gradient(135deg, rgba(255,160,0,.32), rgba(255,100,0,.15)); border-color: rgba(255,160,0,.7); color: var(--gold); }
.calda-item-preco { font-size: 10px; background: rgba(255,160,0,.2); border-radius: var(--radius-pill); padding: 1px 7px; color: var(--gold); font-weight: 700; }

.rec-counter {
  background: rgba(255,215,0,.07);
  border: 1px solid rgba(255,215,0,.14);
  border-radius: 12px;
  padding: 11px 15px;
  margin: 14px 0 0;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.rec-counter-num { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700; color: var(--gold); }
.rec-counter-txt { color: rgba(255,255,255,.4); }
.rec-warning { font-size: 12px; color: var(--pink); margin-top: 7px; display: none; }
.rec-warning.show { display: block; }

.rec-total-box {
  background: rgba(255,215,0,.06);
  border: 1px solid rgba(255,215,0,.14);
  border-radius: 14px;
  padding: 12px 16px;
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rec-total-lbl { font-size: 12px; color: rgba(255,255,255,.4); font-weight: 500; }
.rec-total-val { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--gold); }

.rec-btns { display: flex; gap: 10px; margin-top: 18px; }
.rec-cancel {
  flex: 1;
  padding: 13px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.14);
  background: transparent;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  transition: background .16s;
}
.rec-cancel:hover { background: rgba(255,255,255,.07); }
.rec-confirm {
  flex: 2;
  padding: 13px 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: transform .16s, box-shadow .16s;
  box-shadow: 0 4px 16px rgba(123,0,204,.3);
}
.rec-confirm:hover { transform: scale(1.03); box-shadow: 0 6px 22px rgba(123,0,204,.44); }

/* ── MODAL PEDIDO ── */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  z-index: 200;
  align-items: flex-end;
  justify-content: center;
}
.overlay.show { display: flex; }
.modal {
  background: #1E0030;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px 26px 0 0;
  padding: 24px 20px 40px;
  width: 100%;
  max-width: 520px;
  animation: sheetUp .24s cubic-bezier(.34,1.56,.64,1);
  max-height: 82vh;
  overflow-y: auto;
}
.mh { width: 36px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.16); margin: 0 auto 20px; }
.mt { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 18px; color: #fff; }
.mi { display: flex; flex-direction: column; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.05); font-size: 13px; gap: 3px; }
.mi-top { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.mil { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.75); }
.mip { color: var(--gold); font-weight: 700; white-space: nowrap; font-size: 14px; }
.mi-extras { font-size: 11px; color: rgba(255,255,255,.35); padding-left: 26px; line-height: 1.7; }
.mtr { display: flex; justify-content: space-between; align-items: center; padding: 16px 0 0; }
.mtl { font-size: 13px; color: rgba(255,255,255,.4); font-weight: 500; }
.mtv { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--gold); }
.mbs { display: flex; gap: 10px; margin-top: 18px; }
.mbk {
  flex: 1;
  padding: 13px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.14);
  background: transparent;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  transition: background .16s;
}
.mbk:hover { background: rgba(255,255,255,.07); }
.mwp {
  flex: 2;
  padding: 13px 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-shadow: 0 4px 16px rgba(18,140,126,.3);
  transition: transform .16s, box-shadow .16s;
}
.mwp:hover { transform: scale(1.03); box-shadow: 0 6px 22px rgba(18,140,126,.44); }

/* ── TOAST ── */
.toast {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(-72px);
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  z-index: 400;
  transition: transform .28s cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap;
  box-shadow: 0 6px 22px rgba(123,0,204,.42);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 520px) {
  .acai-grid, .cards-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 16px 36px; }
  .social-strip { gap: 12px; }
  .sp-sep { display: none; }
  .cart-bar { flex-wrap: wrap; }
  .hero-rating { gap: 8px; }
}
@media (min-width: 768px) {
  .acai-grid { grid-template-columns: repeat(3, 1fr); }
}
