﻿/* ═══════════════════════════════════════════
   PIAZZA DESIGN SYSTEM — fiel ao Figma
   ═══════════════════════════════════════════ */
/* ── SCROLLBAR ── */
::-webkit-scrollbar { width:4px; height:4px; }
::-webkit-scrollbar-track { background:transparent; }
::-webkit-scrollbar-thumb { background:rgba(245,242,237,.18); border-radius:2px; }
::-webkit-scrollbar-thumb:hover { background:var(--red, #CF2734); }
* { scrollbar-width:thin; scrollbar-color:rgba(245,242,237,.18) transparent; }

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --red:    #CF2734;
  --green:  #019443;
  --black:  #0E0C0A;
  --cream:  #F5F2ED;
  --muted:  rgba(255,255,255,.5);
  --border: rgba(255,255,255,.08);
  --px: clamp(1.25rem, 5vw, 6rem);
}
html { scroll-behavior:smooth; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration:none; color:inherit; }
img { display:block; height:auto; }
.mob-br { display:none; }
@media(max-width:640px) { .mob-br { display:initial; } }
.foot-br { display:none; }
@media(max-width:768px) { .foot-br { display:initial; } }

/* ── TIPOGRAFIA ── */
.f-serif { font-family:'Playfair Display',serif; }
.tag-label {
  font-size:.65rem; letter-spacing:.3em;
  text-transform:uppercase; color:var(--red);
  margin-bottom:.6rem; display:block;
}
.section-h {
  font-family:'Playfair Display',serif;
  font-size:clamp(2.2rem,4.5vw,3.8rem);
  font-weight:800; line-height:1.08; letter-spacing:-.03em;
}

/* ── BOTÕES ── */
.btn {
  display:inline-flex; align-items:center; gap:.5rem;
  font-family:'Montserrat',sans-serif; font-weight:700;
  font-size:.72rem; letter-spacing:.14em; text-transform:uppercase;
  border-radius:999px; transition:all .22s ease;
  cursor:pointer; border:none; white-space:nowrap;
  text-decoration:none;
}
.btn-ghost {
  background:transparent; color:var(--cream);
  border:1.5px solid rgba(255,255,255,.4);
  padding:.75rem 1.75rem;
}
.btn-ghost:hover { border-color:var(--cream); background:rgba(255,255,255,.07); }
.btn-red { background:var(--red); color:#fff; padding:.75rem 1.75rem; }
.btn-red:hover { background:#b01e28; transform:translateY(-2px); box-shadow:0 8px 28px rgba(207,39,52,.4); }
.btn-green { background:var(--green); color:#fff; padding:.85rem 2rem; }
.btn-green:hover { background:#017035; transform:translateY(-2px); box-shadow:0 8px 28px rgba(1,148,67,.4); }

/* ── PROGRESS BAR ── */
#pbar { position:fixed;top:0;left:0;z-index:999;height:3px;background:var(--red);width:0;transition:width .1s; }



/* ── HERO LOGO TOPO ── */
.hero-logo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: clamp(2rem, 5vh, 3.5rem);
  margin-bottom: 1.1rem;
  position: relative; z-index: 3;
}
.hero-logo-img {
  width: clamp(80px, 16vw, 170px);
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.5));
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position:relative;
  min-height:88svh;
  background: radial-gradient(ellipse 90% 65% at 50% 38%, #1E0E09 0%, #0D0A07 62%);
  display:flex; flex-direction:column;
  align-items:center; justify-content:flex-start;
  text-align:center;
  overflow:hidden;
  padding-top: 0;
}
/* decorações de fundo: glow vermelho central */
.hero-glow {
  position:absolute; top:20%; left:50%;
  transform:translateX(-50%);
  width:min(700px,90vw); height:min(700px,90vw);
  background:radial-gradient(circle,rgba(207,39,52,.18) 0%,transparent 70%);
  pointer-events:none;
}
/* tomates — canto sup esquerdo */
.hero-tomato-l {
  position:absolute; top:-40px; left:-30px;
  width:clamp(180px,22vw,340px);
  transform:rotate(20deg);
  filter:drop-shadow(0 12px 40px rgba(0,0,0,.7));
  pointer-events:none; z-index:2;
}
/* manjericão — canto sup direito */
.hero-basil-r {
  position:absolute; top:-20px; right:-20px;
  width:clamp(128px,16vw,240px);
  transform:rotate(-25deg) scaleX(-1);
  filter:drop-shadow(0 12px 40px rgba(0,0,0,.6));
  pointer-events:none; z-index:2;
}
/* conteúdo central */
.hero-content {
  position:relative; z-index:3;
  display:flex; flex-direction:column;
  align-items:center; gap:0;
}
.hero-eyebrow {
  font-size:.68rem; letter-spacing:.3em;
  text-transform:uppercase; color:rgba(255,255,255,.45);
  margin-bottom:1.1rem;
}
.hero-h1 {
  font-family:'Playfair Display',serif;
  font-size:clamp(2.4rem,6vw,5rem);
  font-weight:900; line-height:1.0; letter-spacing:-.04em;
  margin-bottom:2.5rem;
}
.hero-h1 em {
  font-style:italic; color:var(--red); display:inline;
}
.hero-h1-l1 { white-space:nowrap; }
/* CTA ancorado acima da pizza */
.hero-cta {
  position:absolute;
  bottom:70px;
  left:50%; transform:translateX(-50%);
  z-index:4;
  display:flex; flex-direction:column; align-items:center; gap:.7rem;
}
.hero-cta-label {
  font-size:.65rem; letter-spacing:.25em; text-transform:uppercase;
  color:rgba(255,255,255,.4);
}
.hero-arrow {
  margin-top:.25rem;
  display:flex; flex-direction:column; align-items:center; gap:.35rem;
  opacity:.45; animation:arrowBounce 2s ease-in-out infinite;
  color:rgba(255,255,255,.5);
}
.hero-arrow span { font-size:.55rem; letter-spacing:.2em; text-transform:uppercase; }
.hero-arrow-line {
  width:1px; height:36px;
  background:linear-gradient(to bottom,rgba(255,255,255,.5),transparent);
}
@keyframes arrowBounce {
  0%,100% { transform:translateY(0); }
  50% { transform:translateY(8px); }
}
/* pizza hero — saindo de baixo, centralizada */
.hero-pizza-wrap {
  position:relative; z-index:2;
  width:min(768px,88vw);
  margin-top:-2rem;
  max-height:calc(min(768px,88vw) / 2);
  overflow:hidden;
  mask-image:linear-gradient(to bottom,black 50%,transparent 100%);
  -webkit-mask-image:linear-gradient(to bottom,black 50%,transparent 100%);
}
.hero-pizza-wrap img {
  width:100%; display:block;
  filter:drop-shadow(0 -10px 60px rgba(207,39,52,.25))
         drop-shadow(0 20px 80px rgba(0,0,0,.9));
}
@media(max-width:640px) {
  .hero { min-height:72svh; }
  .hero-content { margin-top:2.75rem; }
  .hero-tomato-l { width:140px; top:-20px; left:-20px; }
  .hero-basil-r  { width:96px; top:-10px; right:-15px; }
  .hero-h1 { font-size:clamp(2.8rem,14vw,4rem); }
  .hero-pizza-wrap { width:calc(90vw + 40px); margin-top:calc(1rem + 80px); max-height:calc(min(768px,88vw) / 2 + 10px); }
  .hero-cta { bottom:162px; }
}

/* ══════════════════════════════
   STRIP
══════════════════════════════ */
.strip {
  background:var(--red); padding:.8rem 0; overflow:hidden;
}
.strip-track {
  display:inline-flex; gap:3rem; white-space:nowrap;
  animation:ticker 22s linear infinite;
}
.strip-track span {
  font-size:.7rem; font-weight:700; letter-spacing:.22em;
  text-transform:uppercase; color:#fff;
  display:flex; align-items:center; gap:.6rem;
}
.strip-track span::before { content:'✦'; font-size:.45rem; opacity:.7; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════
   POR QUE PIAZZA
══════════════════════════════ */
.why {
  padding:clamp(2rem,4vw,3.5rem) var(--px) clamp(4rem,8vw,7rem);
}
.why-top {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(0.5rem,1.25vw,1.25rem);
  align-items:end;
  margin-bottom:3.5rem;
}
.why-top-left .section-h { margin-bottom:0; font-size:clamp(1.7rem,3vw,2.6rem); }
.why .tag-label, .menu .tag-label { color:var(--green); }
.why-top-right {
  display:flex; flex-direction:column; justify-content:center;
  padding-top:.5rem;
  margin-left:-100px;
}
.why-top-right p {
  font-size:.9rem; color:var(--muted); line-height:1.85;
}
/* 4 ícones em linha */
.why-features {
  display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:2.5rem;
}
.why-feat {
  display:flex; flex-direction:column; gap:.85rem;
  max-width:180px;
}
.why-feat-icon {
  display:block;
  width:36px; height:36px;
  object-fit:contain;
}
.why-feat h3 {
  font-size:.88rem; font-weight:700;
  letter-spacing:.01em; line-height:1.3;
}
.why-feat p {
  font-size:.75rem; color:var(--muted); line-height:1.65;
}
/* linha separadora vermelha abaixo de cada feature */
.why-feat-divider {
  width:32px; height:2px; background:var(--red); border-radius:1px;
  margin-top:auto;
}
@media(max-width:900px) {
  .why-top { grid-template-columns:1fr; gap:1.5rem; }
  .why-top-right { margin-left:0; padding-top:0; }
  .why-features { grid-template-columns:repeat(2,1fr); gap:2rem; }
}
@media(max-width:480px) {
  .why-features { grid-template-columns:1fr 1fr; }
}

/* ── SEPARADOR DE SEÇÃO ── */
.section-rule {
  border:none;
  height:1px;
  background:linear-gradient(to right, transparent, var(--red) 20%, var(--red) 80%, transparent);
  margin:0 var(--px);
  opacity:.5;
}

/* ══════════════════════════════
   CARDÁPIO
══════════════════════════════ */
.menu { padding:clamp(2rem,4vw,3.5rem) 0 clamp(4rem,8vw,7rem); }
.menu-head {
  padding:0 var(--px) 2.5rem;
}
.menu-head .section-h { margin-top:.5rem; }
/* cards em scroll horizontal (como no Figma) */
.menu-scroll {
  display:flex; gap:1.25rem;
  padding:0 var(--px) 1rem;
  overflow-x:auto; scroll-snap-type:x mandatory;
  scrollbar-width:none; -webkit-overflow-scrolling:touch;
}
.menu-scroll::-webkit-scrollbar { display:none; }
/* No desktop: grid de 6 */
@media(min-width:1024px) {
  .menu-scroll {
    display:grid;
    grid-template-columns:repeat(6,1fr);
    overflow:visible;
  }
}
@media(min-width:640px) and (max-width:1023px) {
  .menu-scroll {
    display:grid;
    grid-template-columns:repeat(3,minmax(220px,1fr));
    overflow:visible; flex-wrap:wrap;
  }
}
.pizza-card {
  flex:0 0 220px;
  background:#181410;
  border:1px solid rgba(255,255,255,.07);
  border-radius:16px; overflow:hidden;
  scroll-snap-align:start;
  transition:border-color .25s, transform .25s;
  cursor:pointer;
  display:flex; flex-direction:column;
}
.pizza-card:hover {
  border-color:rgba(207,39,52,.4);
  transform:translateY(-4px);
}
.pizza-card-img {
  width:100%; aspect-ratio:4/5;
  object-fit:cover; object-position:center;
  transition:transform .4s ease;
  display:block; flex-shrink:0;
}
.pizza-card:hover .pizza-card-img { transform:scale(1.04); }
.pizza-card-body { padding:1rem; flex:1; display:flex; flex-direction:column; }
.pizza-card-loc {
  font-size:.6rem; letter-spacing:.18em;
  text-transform:uppercase; color:var(--muted);
  margin-bottom:.2rem;
}
.pizza-card-name {
  font-family:'Playfair Display',serif;
  font-size:1.1rem; font-weight:800; margin-bottom:.35rem; line-height:1.2;
}
.pizza-card-desc {
  font-size:.72rem; color:rgba(255,255,255,.5);
  line-height:1.55; margin-bottom:.6rem;
}
.pizza-tag {
  font-size:.6rem; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; color:var(--green);
}
.pizza-more {
  align-self:flex-end; margin-top:auto; padding-top:.9rem;
  display:inline-flex; align-items:center; gap:.35rem;
  font-size:.62rem; font-weight:700; letter-spacing:.1em;
  text-transform:lowercase; color:var(--green);
  transition:color .2s;
}
.pizza-card:hover .pizza-more { color:#02c05a; }
.pizza-more::after { content:'→'; }
/* alerta */
.menu-alert {
  padding:1.5rem var(--px) 0;
  font-size:.72rem; color:rgba(255,255,255,.3); line-height:1.7;
  text-align:center;
}
.menu-alert a { color:var(--red); }
.menu-alert strong { color:var(--red); }

/* ══════════════════════════════
   COMO FUNCIONA
══════════════════════════════ */
.how {
  padding:clamp(2rem,4vw,3.5rem) var(--px) clamp(4rem,8vw,7rem);
}
.how-head { margin-bottom:2.5rem; max-width:560px; }
.how-head .section-h { margin-top:.5rem; }
.how-stat {
  display:flex; align-items:center; gap:1.5rem;
  background:var(--green); border-radius:20px;
  padding:1.75rem 2rem; margin-bottom:1rem;
  max-width:640px;
}
.how-stat-num {
  font-size:clamp(3.2rem,7vw,4.5rem); font-weight:900; line-height:1;
  color:#fff; flex-shrink:0;
}
.how-stat-body h3 { font-size:1rem; font-weight:700; color:#fff; margin-bottom:.35rem; }
.how-stat-body p { font-size:.8rem; color:rgba(255,255,255,.85); line-height:1.6; }
.how-steps { max-width:640px; }
.how-step {
  display:flex; align-items:flex-start; gap:1.25rem;
  padding:1.5rem 0; border-bottom:1px solid var(--border);
}
.how-step:last-child { border-bottom:none; }
.how-step-num {
  width:34px; height:34px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:.9rem; color:#fff;
}
.how-step:nth-child(odd) .how-step-num { background:var(--red); }
.how-step:nth-child(even) .how-step-num { background:var(--green); }
.how-step-body h3 { font-size:.9rem; font-weight:700; margin-bottom:.3rem; }
.how-step-body p { font-size:.8rem; color:var(--muted); line-height:1.6; }
@media(max-width:640px) {
  .how-stat { flex-direction:row; padding:1.5rem; }
}
.how-cta {
  margin-top:calc(2.25rem + 30px);
  display:flex; flex-direction:column; align-items:center; gap:.85rem;
}
.how-cta-arrow {
  color:rgba(255,255,255,.35);
  animation:arrowBounce 2s ease-in-out infinite;
}
@media(min-width:900px) {
  .how-steps {
    max-width:none;
    display:grid; grid-template-columns:repeat(5,1fr); gap:0;
  }
  .how-step {
    flex-direction:column; align-items:flex-start; gap:.85rem;
    padding:0 1.75rem; margin:0;
    border-bottom:none; border-right:1px solid var(--border);
  }
  .how-step:first-child { padding-left:0; }
  .how-step:last-child { padding-right:0; border-right:none; }
}

/* ══════════════════════════════
   COMBOS
══════════════════════════════ */
.order {
  padding:clamp(2rem,4vw,3.5rem) var(--px) clamp(4rem,8vw,7rem);
  position:relative; overflow:hidden;
}
.order-deco {
  position:absolute; top:-60px; right:-40px;
  width:clamp(200px,25vw,420px);
  opacity:.2; pointer-events:none;
  transform:rotate(30deg) scaleX(-1);
  filter:drop-shadow(0 10px 40px rgba(0,0,0,.5));
}
.order-head { margin-bottom:3rem; max-width:520px; }
.order-head .section-h { margin-top:.5rem; margin-bottom:1rem; }
.order-head p { font-size:.88rem; color:var(--muted); max-width:360px; line-height:1.75; }
/* tabs entrega */
.delivery-tabs {
  display:flex; gap:0; width:fit-content;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:999px; padding:4px;
  margin-bottom:2.5rem;
}
.dtab {
  font-size:.74rem; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; padding:.6rem 1.6rem;
  border-radius:999px; color:rgba(255,255,255,.5);
  transition:all .25s; cursor:pointer;
}
.dtab.active { background:var(--red); color:#fff; }
.dcontent { display:none; }
.dcontent.active { display:block; }
/* aviso entrega */
.delivery-info {
  display:inline-flex; align-items:center; gap:.75rem;
  padding:.7rem 1.2rem;
  border-radius:10px; margin-bottom:2rem;
  font-size:.78rem; font-weight:600;
}
.delivery-info.green { background:rgba(1,148,67,.1); border:1px solid rgba(1,148,67,.2); color:#4dd98a; }
.delivery-info.yellow { background:rgba(255,180,0,.08); border:1px solid rgba(255,180,0,.2); color:#ffd060; }
/* combo cards */
.combo-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:1.5rem;
}
.combo {
  background:#141210;
  border:1px solid rgba(255,255,255,.09);
  border-radius:20px; padding:2rem;
  position:relative; overflow:hidden;
  transition:border-color .3s, transform .3s;
}
.combo::after {
  content:''; position:absolute; top:0;left:0;right:0;height:3px;
}
.combo-solo::after { background:var(--red); }
.combo-fam::after { background:linear-gradient(90deg,var(--green),var(--red)); }
.combo:hover { border-color:rgba(207,39,52,.3); transform:translateY(-4px); }
.combo.featured { border-color:rgba(1,148,67,.25); background:rgba(1,148,67,.04); }
.combo-badge {
  position:absolute; top:1.5rem; right:1.5rem;
  font-size:.6rem; font-weight:800; letter-spacing:.1em;
  text-transform:uppercase; padding:.25rem .7rem;
  border-radius:999px;
}
.cb-pop { background:rgba(207,39,52,.15); color:#f08088; border:1px solid rgba(207,39,52,.3); }
.cb-best { background:rgba(1,148,67,.15); color:#4dd98a; border:1px solid rgba(1,148,67,.3); }
.combo-name {
  font-family:'Playfair Display',serif;
  font-size:1.6rem; font-weight:800; margin-bottom:.25rem;
}
.combo-sub { font-size:.75rem; color:var(--muted); margin-bottom:1.25rem; }
.combo-price-old {
  font-size:.8rem; font-weight:600; color:rgba(255,255,255,.35);
  text-decoration:line-through; margin-bottom:.2rem;
}
.combo-price {
  font-family:'Playfair Display',serif;
  font-size:3rem; font-weight:900; line-height:1; margin-bottom:1.25rem;
}
.combo-price sup { font-size:1.1rem; vertical-align:super; }
.combo-price small { font-size:1rem; font-weight:500; font-family:'Montserrat',sans-serif; color:var(--muted); }
.combo-list {
  list-style:none; display:flex; flex-direction:column; gap:.55rem;
  margin-bottom:1.75rem;
}
.combo-list li {
  font-size:.78rem; color:rgba(255,255,255,.55);
  display:flex; align-items:baseline; gap:.5rem;
}
.combo-list li::before { content:'—'; color:var(--red); font-size:.6rem; flex-shrink:0; }
.combo-eco {
  position:absolute; top:3.5rem; right:1.5rem;
  font-size:.78rem; color:#4dd98a; font-weight:600;
}
/* frete */
.frete-table {
  margin-top:2.5rem; padding:1.75rem;
  background:rgba(255,255,255,.03);
  border:1px solid var(--border);
  border-radius:16px;
}
.frete-table h5 {
  font-size:.68rem; letter-spacing:.2em; text-transform:uppercase;
  color:var(--muted); margin-bottom:1.25rem;
}
.frete-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(185px,1fr));
  gap:.45rem;
}
.frete-row {
  display:flex; justify-content:space-between; align-items:center;
  padding:.55rem .7rem;
  background:rgba(255,255,255,.04); border-radius:8px;
  font-size:.75rem;
}
.frete-row span:last-child { color:#4dd98a; font-weight:700; }
.frete-note {
  font-size:.67rem; color:rgba(255,255,255,.3);
  margin-top:.85rem;
}

/* ══════════════════════════════
   ÁREAS DE ENTREGA
══════════════════════════════ */
.areas {
  padding:clamp(2rem,4vw,3.5rem) var(--px) clamp(4rem,8vw,7rem);
}
.areas-head { max-width:560px; margin-bottom:2rem; }
.areas-head .section-h { margin-top:.5rem; margin-bottom:1rem; }
.areas-head p { font-size:.88rem; color:var(--muted); line-height:1.75; }
.areas-list {
  list-style:none; display:grid; grid-template-columns:repeat(6,1fr); gap:.6rem;
  margin-bottom:1.5rem;
}
.areas-list li {
  font-size:.78rem; font-weight:600; color:var(--cream);
  background:rgba(255,255,255,.05); border:1px solid var(--border);
  border-radius:999px; padding:.5rem .75rem;
  text-align:center;
}
@media(max-width:640px) {
  .areas-list { grid-template-columns:repeat(2,1fr); }
}
.areas-note { font-size:.78rem; color:rgba(255,255,255,.35); }
.areas-note a { color:var(--red); }

/* ══════════════════════════════
   ENTREGA
══════════════════════════════ */
.entrega {
  padding:clamp(4rem,8vw,7rem) var(--px);
  background:#0A0806;
}
.entrega-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(3rem,6vw,6rem); align-items:center;
}
.entrega-text .section-h { margin-top:.5rem; margin-bottom:1.5rem; }
.entrega-text p { font-size:.88rem; color:var(--muted); line-height:1.85; margin-bottom:2rem; }
.entrega-cards { display:flex; flex-direction:column; gap:1rem; }
.ent-card {
  display:flex; align-items:center; gap:1rem;
  padding:1.25rem 1.5rem;
  background:rgba(255,255,255,.04);
  border:1px solid var(--border); border-radius:14px;
  transition:border-color .2s;
}
.ent-card:hover { border-color:rgba(1,148,67,.3); }
.ent-icon {
  width:44px; height:44px; border-radius:12px;
  background:rgba(1,148,67,.12);
  display:flex; align-items:center; justify-content:center;
  font-size:1.25rem; flex-shrink:0;
}
.ent-card h4 { font-size:.85rem; font-weight:700; margin-bottom:.2rem; }
.ent-card p { font-size:.75rem; color:var(--muted); }
.entrega-visual {
  position:relative;
  display:flex; align-items:center; justify-content:center;
}
.entrega-pizza-img {
  width:min(480px,90%);
  filter:drop-shadow(0 20px 60px rgba(0,0,0,.7));
  animation:pizzaFloat 8s ease-in-out infinite;
}
@keyframes pizzaFloat {
  0%,100% { transform:rotate(-4deg); }
  50% { transform:rotate(-2deg) translateY(-12px); }
}
@media(max-width:800px) {
  .entrega-grid { grid-template-columns:1fr; }
  .entrega-visual { display:none; }
}

/* ══════════════════════════════
   PAGAMENTO
══════════════════════════════ */
.pay {
  padding:clamp(4rem,8vw,7rem) var(--px);
}
.pay-head { max-width:600px; margin-bottom:3rem; }
.pay-head .section-h { margin-top:.5rem; margin-bottom:1rem; }
.pay-head p { font-size:.88rem; color:var(--muted); line-height:1.75; }
.pay-methods {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(160px,1fr));
  gap:1rem; margin-bottom:2.5rem;
}
.pay-method {
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px; padding:1.25rem;
  text-align:center; cursor:pointer;
  transition:all .2s;
}
.pay-method:hover, .pay-method.selected {
  border-color:var(--green); background:rgba(1,148,67,.08);
}
.pay-method .pm-icon { font-size:1.6rem; margin-bottom:.5rem; }
.pay-method span { display:block; font-size:.75rem; font-weight:600; }
.pay-note {
  font-size:.75rem; color:rgba(255,255,255,.35);
  display:flex; align-items:center; gap:.5rem; margin-top:.75rem;
}

/* ══════════════════════════════
   CTA STRIP
══════════════════════════════ */
.cta-strip {
  padding:clamp(4rem,7vw,6rem) var(--px);
  background:var(--red);
  text-align:center; position:relative; overflow:hidden;
}
.cta-strip::before {
  content:''; position:absolute; inset:0;
  background:repeating-linear-gradient(45deg,rgba(255,255,255,.03) 0,rgba(255,255,255,.03) 1px,transparent 1px,transparent 12px);
}
.cta-strip h2 {
  font-family:'Playfair Display',serif;
  font-size:clamp(2rem,5vw,3.5rem);
  font-weight:900; color:#fff; margin-bottom:.75rem; position:relative;
  white-space:nowrap;
}
@media(max-width:640px) { .cta-strip h2 { white-space:normal; } }
.cta-strip p { font-size:.95rem; color:rgba(255,255,255,.8); margin-bottom:2rem; position:relative; }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq { padding:clamp(4rem,8vw,7rem) var(--px); background:#0A0806; }
.faq-head { margin-bottom:2.5rem; }
.faq-head .section-h { margin-top:.5rem; }
.faq-list { display:flex; flex-direction:column; gap:0; border:1px solid var(--border); border-radius:16px; overflow:hidden; }
.faq-item {
  border-bottom:1px solid var(--border); background:#111;
  cursor:pointer; transition:background .2s;
}
.faq-item:last-child { border-bottom:none; }
.faq-item:hover { background:#161210; }
.faq-q {
  display:flex; justify-content:space-between; align-items:center;
  gap:1rem; padding:1.5rem 1.75rem;
  font-weight:700; font-size:.88rem;
}
.faq-icon {
  flex-shrink:0; width:26px; height:26px; border-radius:50%;
  border:1px solid rgba(255,255,255,.15);
  display:flex; align-items:center; justify-content:center;
  font-size:.85rem; transition:all .25s;
}
.faq-a {
  font-size:.8rem; color:var(--muted); line-height:1.8;
  padding:0 1.75rem 1.5rem; display:none;
}
.faq-item.open .faq-a { display:block; }
.faq-item.open .faq-icon { background:var(--red); border-color:var(--red); transform:rotate(45deg); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background:radial-gradient(circle at calc(100% - clamp(80px,13vw,160px)) 30%, #3d0c14 0%, #1e0608 10%, #080604 20%);
  border-top:1px solid rgba(255,255,255,.06);
  padding:calc(clamp(3rem,6vw,5rem) - 30px) var(--px) 2rem;
  overflow:hidden;
  position:relative;
}
.footer-grid {
  display:grid; grid-template-columns:2fr 0.5fr 0.5fr 0.5fr;
  gap:2rem; margin-bottom:3rem;
  align-items:end;
  position:relative;
}
.footer-pizza-wrap {
  position:relative;
  display:flex; justify-content:flex-end; align-items:center;
  overflow:visible;
}
.footer-pizza-milao {
  position:absolute; top:50%; right:0;
  width:300px;
  object-fit:contain;
  transform:translate(calc(-50% + 90px), -50%);
  z-index:0;
  filter:drop-shadow(0 8px 24px rgba(0,0,0,.5));
}
.footer-pizza-img {
  position:relative; z-index:1;
  width:300px;
  object-fit:contain; object-position:bottom;
  transform:translateX(50%) rotate(-90deg);
  filter:drop-shadow(0 8px 32px rgba(0,0,0,.6));
}
.footer-pizza-mobile-img { display:none; }
.footer-brand img { width:auto; height:36px; margin-bottom:1.25rem; }
.footer-brand p { font-size:.78rem; color:rgba(255,255,255,.4); line-height:1.8; max-width:270px; }
.footer-col h5 {
  font-size:.65rem; letter-spacing:.25em; text-transform:uppercase;
  color:rgba(255,255,255,.3); margin-bottom:1.25rem;
}
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:.7rem; }
.footer-col a { font-size:.8rem; color:rgba(255,255,255,.5); transition:color .2s; }
.footer-col a:hover { color:var(--cream); }
.footer-ico {
  display:inline-block; vertical-align:middle;
  height:1em; width:auto; opacity:.5; margin:0 .3rem;
}
.footer-bottom {
  display:flex; align-items:center; align-content:center;
  flex-wrap:wrap; gap:.75rem;
  padding-top:1.75rem; border-top:1px solid var(--border);
  font-size:.7rem; line-height:1; color:rgba(255,255,255,.25);
  transform:translateY(-10px);
}
.footer-bottom span { display:inline-flex; align-items:center; line-height:1; }
.fb-copy { order:1; }
.fb-quadradinho { order:2; }
.fb-quadradinho::before { content:'· '; }
.fb-tagline { order:3; margin-left:auto; }
@media(min-width:769px) {
  .fb-quadradinho { order:3; margin-left:auto; }
  .fb-quadradinho::before { content:none; }
  .fb-tagline { order:2; margin-left:0; }
  .fb-tagline::before { content:'· '; }
}
.footer-alerta {
  text-align:center; font-size:.66rem; color:rgba(255,255,255,.2);
  margin-top:.75rem; padding-top:.75rem; border-top:1px solid var(--border);
}
@media(max-width:768px) {
  footer {
    background:radial-gradient(ellipse 75% 50% at 90% 46%, #8a1b28 0%, #4a0f18 26%, #1e0608 52%, #080604 74%);
  }
  .footer-grid { grid-template-columns:1fr; gap:1.5rem; }
  .footer-brand { grid-column:1/-1; padding-right:0; }
  .footer-brand p { max-width:none; text-wrap:pretty; }
  .footer-pizza-wrap {
    position:absolute; top:calc(8.5rem - 70px); right:-275px;
    width:620px; height:575px; z-index:0; pointer-events:none;
  }
  .footer-pizza-milao, .footer-pizza-img { display:none; }
  .footer-pizza-mobile-img {
    display:block;
    width:100%; height:100%;
    object-fit:contain;
  }
}
@media(max-width:480px) {
  .footer-grid { grid-template-columns:1fr; }
}

/* ══════════════════════════════
   MODAL
══════════════════════════════ */
.modal-ov {
  position:fixed; inset:0; z-index:800;
  background:rgba(0,0,0,.88); backdrop-filter:blur(10px);
  display:flex; align-items:center; justify-content:center;
  padding:1.5rem; opacity:0; pointer-events:none; transition:opacity .3s;
}
.modal-ov.open { opacity:1; pointer-events:all; }
.modal-box {
  background:#1C1814; border:1px solid rgba(255,255,255,.1);
  border-radius:24px; overflow:hidden;
  max-width:680px; width:100%; max-height:90svh; overflow-y:auto;
  transform:translateY(20px) scale(.97); transition:transform .3s ease;
}
.modal-ov.open .modal-box { transform:translateY(0) scale(1); }
.modal-img { width:100%; max-height:300px; object-fit:cover; object-position:center; }
.modal-body { padding:2rem; }
.modal-name {
  font-family:'Playfair Display',serif;
  font-size:1.9rem; font-weight:800; margin-bottom:.4rem;
}
.modal-sub { font-size:.78rem; color:var(--muted); margin-bottom:1.1rem; }
.modal-desc { font-size:.85rem; line-height:1.8; color:rgba(255,255,255,.7); margin-bottom:1.5rem; }
.modal-ing-label { font-size:.65rem; letter-spacing:.2em; text-transform:uppercase; color:var(--muted); margin-bottom:.4rem; }
.modal-ing { font-size:.78rem; color:rgba(255,255,255,.5); line-height:1.65; margin-bottom:1.75rem; }
.modal-close {
  position:absolute; top:1rem; right:1rem;
  width:36px; height:36px; border-radius:50%;
  background:rgba(0,0,0,.5); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:.9rem; cursor:pointer; transition:background .2s; border:none;
  font-family:'Montserrat',sans-serif;
}
.modal-close:hover { background:var(--red); }
/* ── MODAL ENTREGA ── */
.del-modal { padding:2rem; max-width:440px; }
.del-title { font-size:1.5rem; font-weight:800; line-height:1.15; margin:.4rem 0 1.5rem; }
.del-options { display:flex; flex-direction:column; gap:.65rem; }
.del-opt {
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1);
  border-radius:14px; padding:1.1rem 1.25rem;
  cursor:pointer; transition:border-color .2s, background .2s;
  text-align:left; width:100%; color:var(--cream);
}
.del-opt:hover { border-color:var(--red); background:rgba(207,39,52,.06); }
.del-opt-name { font-weight:700; font-size:.88rem; margin-bottom:.2rem; }
.del-opt-desc { font-size:.73rem; color:var(--muted); }
.del-opt-price { font-weight:800; font-size:.88rem; white-space:nowrap; color:var(--muted); }
.del-opt-price.green { color:#4dd98a; }
.del-qty-row {
  display:flex; align-items:center; justify-content:space-between;
  padding:.75rem 1rem; margin-bottom:.85rem;
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
}
.del-qty-label { font-size:.84rem; font-weight:600; }
.del-qty-ctrl { display:flex; align-items:center; gap:.85rem; }
.del-qty-btn {
  width:32px; height:32px; border-radius:50%;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15);
  color:var(--cream); font-size:1.1rem; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s, border-color .2s; line-height:1;
}
.del-qty-btn:hover { background:var(--red); border-color:var(--red); }
#dQty { font-size:1rem; font-weight:700; min-width:20px; text-align:center; }
.del-suggestion {
  background:rgba(1,148,67,.1); border:1px solid rgba(1,148,67,.3);
  border-radius:12px; padding:.85rem 1rem; margin-bottom:.85rem;
}
.del-suggestion p { font-size:.78rem; color:rgba(255,255,255,.8); line-height:1.55; margin-bottom:.6rem; }
.del-suggestion-btn {
  background:var(--green); border:none; color:#fff;
  font-size:.72rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  padding:.4rem .9rem; border-radius:999px; cursor:pointer;
  font-family:'Montserrat',sans-serif; transition:opacity .2s;
}
.del-suggestion-btn:hover { opacity:.85; }
.del-back {
  background:none; border:none; color:var(--muted);
  cursor:pointer; font-size:.78rem; padding:0; margin-bottom:1rem;
  font-family:'Montserrat',sans-serif; letter-spacing:.05em;
}
.del-back:hover { color:var(--cream); }
.del-regions { display:flex; flex-direction:column; gap:.45rem; max-height:260px; overflow-y:auto; }
.del-region-btn {
  display:flex; justify-content:space-between; align-items:center;
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
  border-radius:10px; padding:.7rem 1rem;
  cursor:pointer; transition:border-color .2s, background .2s;
  color:var(--cream); width:100%; font-family:'Montserrat',sans-serif;
}
.del-region-btn:hover, .del-region-btn.active {
  border-color:var(--red); background:rgba(207,39,52,.08);
}
.del-region-name { font-size:.84rem; font-weight:600; }
.del-region-price { font-size:.78rem; color:var(--muted); }
.del-confirm {
  margin-top:1.25rem; padding-top:1.25rem;
  border-top:1px solid rgba(255,255,255,.08);
}
.del-total { font-size:.8rem; color:var(--muted); margin-bottom:.85rem; line-height:1.5; }
.del-total strong { color:var(--cream); font-size:.95rem; }

/* toast */
#toast {
  position:fixed; bottom:2rem; left:50%;
  transform:translateX(-50%) translateY(80px);
  background:var(--green); color:#fff;
  padding:.7rem 1.75rem; border-radius:999px;
  font-size:.78rem; font-weight:700;
  box-shadow:0 8px 28px rgba(0,0,0,.4);
  transition:transform .35s ease; z-index:900;
  pointer-events:none; white-space:nowrap;
}
#toast.show { transform:translateX(-50%) translateY(0); }
/* fab */
.fab {
  position:fixed; bottom:1.75rem; right:1.75rem; z-index:400;
  width:54px; height:54px; border-radius:50%;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 22px rgba(37,211,102,.45);
  transition:transform .25s;
}
.fab:hover { transform:scale(1.1); }
/* progress */
#pbar { position:fixed;top:0;left:0;z-index:999;height:3px;background:var(--red);width:0;transition:width .12s; }