:root{
  --red:#db1515;
  --red2:#8b1f1f;
  --orange:#ff8a3d;
  --gold:#d6a24a;
  --cream:#f3c57c;
  --paper:#ffffff;
  --ink:#201513;
  --muted:#6b4a43;
  --line: rgba(0,0,0,.10);
  --shadow: 0 14px 40px rgba(0,0,0,.12);
  --radius: 18px;
  --container: 1120px;

  --font-display: "Bebas Neue", system-ui, sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;

  --hero-img: url("https://images.unsplash.com/photo-1650142700227-ebd74e00d84e?auto=format&fit=crop&fm=jpg&q=80&w=2400");
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #faf7f4;
}
a{ color:inherit; text-decoration:none; }
.container{ width:min(var(--container), calc(100% - 32px)); margin:0 auto; }
.muted{ color: var(--muted); }
.tiny{ font-size:12px; }
.h2{ font-family: var(--font-display); letter-spacing:1px; font-size:42px; margin:0; }

/* ===== Lock scroll ===== */
body.is-locked{ overflow:hidden; }

/* ===== Top strip ===== */
.top-strip{
  position: sticky;
  top:0;
  z-index: 80;
  background: linear-gradient(180deg, var(--red2), var(--red));
  color:#fff;
}
.top-strip__inner{
  height: 44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.top-strip__item{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:.3px;
}
.top-strip__brand{
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing:1px;
  transform: translateY(1px);
}

/* Logo top como “selo” */
.top-strip__logo{
  width:32px;
  height:32px;
  object-fit:contain;
  display:inline-block;
}
.top-strip__logo--seal{
  background: rgba(255,255,255,.94);
  border-radius:999px;
  padding:4px;
  border:1px solid rgba(255,255,255,.55);
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.top-strip__item:hover .top-strip__logo--seal{
  transform: translateY(-1px) rotate(-2deg) scale(1.04);
  box-shadow: 0 10px 22px rgba(0,0,0,.30);
  filter: brightness(1.02);
}

.top-strip__right{ display:flex; align-items:center; gap:14px; }

.top-strip__icon{
  width:28px;height:28px;
  display:grid;place-items:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  font-weight:900;
  opacity:.9;
}
.top-strip__icon:hover{ opacity:1; }

.cart-mini{
  border:1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.14);
  color:#fff;
  font-weight:900;
  border-radius:999px;
  padding: 8px 12px;
  cursor:pointer;
}
.cart-mini__count{
  margin-left:6px;
  background: rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.25);
  padding: 2px 8px;
  border-radius:999px;
}

/* ===== Header ===== */
.site-header{
  position: sticky;
  top: 44px;
  z-index: 70;
  background: var(--paper);
  border-bottom:1px solid var(--line);
}
.site-header__inner{
  height: 90px;
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap: 18px;
}
.site-nav{
  display:flex;
  align-items:center;
  gap: 20px;
  min-width: 0;
}
.site-nav a, .nav-link-btn{
  color:#3a2a23;
  font-weight:900;
  font-size:13px;
  letter-spacing:.6px;
  text-transform: uppercase;
  padding: 10px 6px;
  border-bottom: 2px solid transparent;
  background: none;
  border-left:none;border-right:none;border-top:none;
  cursor:pointer;
  white-space: nowrap;
}
.site-nav a:hover, .nav-link-btn:hover{
  color: var(--red2);
  border-bottom-color: rgba(161,15,15,.45);
}
.site-nav--right{ justify-content:flex-end; }

.site-logo{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 2px;
  padding: 6px 0;
  min-width: 210px;
}
.site-logo__mark{
  width:44px;height:44px;
  object-fit:contain;
  display:inline-block;
}
.site-logo__text{
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 1.1;
}
.site-logo__sub{
  font-weight:900;
  font-size:11px;
  letter-spacing:1px;
  text-transform: uppercase;
  color: rgba(58,42,35,.70);
  line-height: 1.1;
}

.nav-cta{
  background: var(--cream);
  border: 1px solid rgba(214,162,74,.45);
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 900 !important;
}
.nav-cta:hover{ filter: brightness(1.03); border-bottom-color: transparent !important; }

/* Mobile menu */
.menu-btn{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  height:42px;width:46px;
  cursor:pointer;
}
.menu-btn__bar{
  display:block;
  width:20px;height:2px;
  background:#3a2a23;
  margin:4px auto;
  border-radius:2px;
}
.mobile-nav{
  border-top:1px solid var(--line);
  background:#fff;
}
.mobile-nav__inner{
  padding:12px 0 18px;
  display:grid;
  gap:10px;
}
.mobile-link{
  padding:12px 12px;
  border:1px solid var(--line);
  border-radius: 14px;
  background:#fff;
  font-weight:900;
  text-transform: uppercase;
  letter-spacing:.6px;
  cursor:pointer;
  text-align:left;
}

/* ===== HERO quente + vinheta ===== */
.hero{
  position: relative;
  min-height: 520px;
  display:grid;
  align-items:center;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 25% 35%, rgba(255, 138, 61, .40), transparent 60%),
    radial-gradient(900px 600px at 75% 40%, rgba(139, 31, 31, .55), transparent 60%),
    linear-gradient(to bottom, rgba(10, 6, 6, .40), rgba(10, 6, 6, .78));
  z-index: 0;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(120% 90% at 50% 35%, rgba(0,0,0,0) 45%, rgba(0,0,0,.55) 100%);
  z-index:0;
  pointer-events:none;
}
.hero__center{
  text-align:center;
  color:#fff;
  padding: 48px 0;
  position: relative;
  z-index: 1;
}
.hero__badge{
  display:inline-block;
  background: rgba(139,31,31,.88);
  border:1px solid rgba(255,255,255,.25);
  padding: 8px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  letter-spacing:.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero__title{
  margin:0 0 10px;
  font-family: var(--font-display);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height:1.0;
  font-size: clamp(42px, 5vw, 76px);
  color: var(--gold);
  text-shadow: 0 10px 28px rgba(0,0,0,.60);
}
.hero__title span{
  color:#fff;
  display:inline-block;
  margin-top:6px;
  letter-spacing: 1px;
}
.hero__subtitle{
  margin:0 auto 18px;
  max-width: 62ch;
  color: rgba(255,255,255,.88);
  font-weight:600;
}
.hero__actions{
  display:flex;
  gap: 10px;
  justify-content:center;
  flex-wrap:wrap;
}

/* Buttons */
.btn{
  border:1px solid var(--line);
  background:#fff;
  color: var(--ink);
  padding:12px 16px;
  border-radius:999px;
  cursor:pointer;
  font-weight:900;
  transition: transform .08s ease, filter .2s ease;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.02); }
.btn:active{ transform: translateY(0); }
.btn--primary{
  background: linear-gradient(135deg, var(--red2), var(--red));
  border-color: transparent;
  color:#fff;
}
.btn--ghost{
  background: rgba(0,0,0,.02);
  border: 1px solid var(--line);
}
.btn--small{ padding:10px 14px; font-size:14px; }
.btn--block{ width:100%; }
.btn--hero{
  background: var(--cream);
  border:1px solid rgba(214,162,74,.55);
  color:#3a2a23;
}
.btn--heroGhost{
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.35);
  color:#fff;
}

/* Sections */
.section{ padding: 44px 0; }
.section--alt{
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}
.section__head p{ margin:6px 0 0; }

.controls{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.segmented{
  display:flex;
  gap:6px;
  padding:6px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
}
.segmented__btn{
  border:none;
  background: transparent;
  color:#3a2a23;
  padding:10px 12px;
  border-radius:999px;
  cursor:pointer;
  font-weight:900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing:.5px;
}
.segmented__btn.is-active{
  background: rgba(161,15,15,.10);
  border:1px solid rgba(161,15,15,.25);
}
.search{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
}
.search input{
  border:none;
  outline:none;
  background: transparent;
  color: var(--ink);
  min-width: 180px;
}
.search__icon{ opacity:.7; }

/* Grid + cards */
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.card{
  grid-column: span 4;
  background:#fff;
  border:1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

/* FOTO NO CARD */
.card__media{
  aspect-ratio: auto;
  height: 44px;
  background: linear-gradient(135deg, rgba(139,31,31,.9), rgba(219,21,21,.9));
}
.card__media img{ display:none; }


.card__top{
  padding:14px 14px 0;
  display:flex;            /* ✅ corrigido (era display:center) */
  justify-content:flex-end;
  gap:10px;
}

.tag{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  color: rgba(58,42,35,.85);
  background:#fff;
  font-weight:900;
  text-transform: uppercase;
  letter-spacing:.4px;
}
.card__body{ padding: 12px 14px 14px; display:flex; flex-direction:column; gap:10px; }
.card__title h3{ margin:0; font-size:18px; }
.card p{ margin:0; color: var(--muted); line-height:1.5; }

.card--pick{
  cursor:pointer;
  outline: 2px solid transparent;
  transition: transform .12s ease, outline-color .2s ease, box-shadow .2s ease;
}
.card--pick:hover{
  transform: translateY(-2px);
  outline-color: rgba(161,15,15,.22);
  box-shadow: 0 20px 55px rgba(0,0,0,.16);
}
.card__hint{
  margin-top: 6px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(161,15,15,.92);
  text-transform: uppercase;
  letter-spacing: .5px;
}

mark.hl{
  background: rgba(255, 138, 61, .35);
  color: inherit;
  padding: 0 .1em;
  border-radius: .25em;
}

/* Bebidas actions */
.card__actions{
  display:flex;
  gap:10px;
  align-items:center;
  margin-top: 6px;
}
.card__price{
  font-weight:900;
  color:#3a2a23;
}

/* Extras (borda recheada) */
.extras{
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.02);
  border-radius: 14px;
  padding: 12px;
}
.extra-toggle{
  display:flex;
  gap:10px;
  align-items:center;
  cursor:pointer;
  font-weight: 900;
}
.extra-toggle input{ width:18px;height:18px; }
.extra-toggle small{ display:block; font-weight:700; }

/* Info cards */
.info-card, .contact__form{
  background:#fff;
  border:1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding:16px;
}

.footer{
  border-top:1px solid var(--line);
  padding: 24px 0;
}
.footer__inner{ display:flex; justify-content:space-between; align-items:center; gap:10px; }
.link{ color: var(--red2); font-weight:900; }
.link:hover{ text-decoration:underline; }

/* ===== Modal builder ===== */
.pmodal{
  position: fixed;
  inset:0;
  z-index: 90;
  display:none;
}
.pmodal.is-open{ display:block; }
.pmodal__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
}
.pmodal__panel{
  position: relative;
  width: min(920px, calc(100% - 20px));
  margin: 6vh auto;
  background:#fff;
  border-radius: 22px;
  overflow:hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.30);
  max-height: 86vh;
  display:flex;
  flex-direction:column;
}
.pmodal__header{
  background: linear-gradient(180deg, var(--red2), var(--red));
  color:#fff;
  padding: 14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.pmodal__header h3{
  margin:0;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1px;
}
.pmodal__close{
  border:none;
  background: transparent;
  color:#fff;
  font-size: 22px;
  cursor:pointer;
  font-weight:900;
}
.pmodal__body{
  padding: 16px;
  display:grid;
  gap: 16px;
  overflow:auto;
}

.pmodal__footer{
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 12px 16px;
  display:flex;
  justify-content:flex-end;
  gap:10px;
  z-index: 2;
}

.step{ display:grid; gap: 12px; }
.step__title{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap: 12px;
  font-size: 18px;
  font-weight:900;
  color: #4a1f1f;
}

.pill-btn{
  border:none;
  background: rgba(0,0,0,.06);
  padding: 8px 12px;
  border-radius: 999px;
  cursor:pointer;
  font-weight:900;
  color: #4a1f1f;
}

.size-cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.size-card{
  border: 2px solid rgba(0,0,0,.14);
  border-radius: 16px;
  padding: 14px;
  cursor:pointer;
  transition: transform .10s ease, border-color .2s ease, box-shadow .2s ease;
  background:#fff;
  display:grid;
  gap:10px;
}
.size-card:hover{ transform: translateY(-1px); }
.size-card.is-active{
  border-color: var(--red2);
  box-shadow: 0 10px 26px rgba(161,15,15,.14);
}
.size-card__name{
  font-weight:900;
  font-size: 18px;
  color:#4a1f1f;
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
}
.size-card__meta{
  color: rgba(0,0,0,.55);
  font-weight:700;
  line-height: 1.35;
}
.slices{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-weight:900;
  color:#4a1f1f;
}
.slices__dots{
  display:inline-flex;
  gap:3px;
}
.slices__dots i{
  width:7px; height:7px;
  border-radius:50%;
  background: rgba(161,15,15,.35);
  display:inline-block;
}
.size-card.is-active .slices__dots i{
  background: rgba(161,15,15,.75);
}

.countbar{
  border-radius: 14px;
  background: rgba(0,0,0,.05);
  padding: 14px;
  text-align:center;
  font-weight:900;
}
.countbar__sub{
  margin-left:10px;
  font-weight:800;
  color: rgba(0,0,0,.55);
}

.dropdown{ position: relative; }
.dropdown__btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 14px;
  border: 2px solid rgba(0,0,0,.20);
  background:#fff;
  cursor:pointer;
  font-weight:900;
  color:#4a1f1f;
}
.dropdown__btn--big{
  min-height: 72px;
  padding: 18px 18px;
  font-size: 16px;
  border-radius: 16px;
}

.dropdown__chev{ font-size: 18px; opacity: .9; }

.dropdown__panel{
  margin-top: 10px;
  background:#fff;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 14px;
  overflow:hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.dropdown__search{
  padding: 10px;
  border-bottom: 1px solid rgba(0,0,0,.10);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}
.dropdown__search input{
  width:100%;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 12px;
  padding: 12px 12px;
  outline:none;
  font-size: 14px;
}
.dropdown__hint{
  margin-top: 8px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(0,0,0,.45);
}
.dropdown__chips{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:10px;
}
.chipbtn{
  border:1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.02);
  padding: 8px 10px;
  border-radius: 999px;
  cursor:pointer;
  font-weight:900;
  font-size: 12px;
}
.chipbtn.is-active{
  border-color: rgba(161,15,15,.35);
  background: rgba(161,15,15,.08);
}

.dropdown__list{
  max-height: 380px;
  overflow:auto;
}
.group-title{
  padding: 12px 12px;
  font-weight:900;
  color:#7b0b0b;
  background: rgba(0,0,0,.03);
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.flavor-item{
  padding: 14px 12px;
  cursor:pointer;
  display:grid;
  gap: 6px;
}
.flavor-item:hover{ background: rgba(161,15,15,.06); }
.flavor-item__name{
  font-weight:900;
  letter-spacing:.4px;
  text-transform: uppercase;
}
.flavor-item__desc{
  color: rgba(0,0,0,.55);
  font-weight:600;
  font-size: 13px;
}

.flavor-item.is-selected{ background: rgba(214,162,74,.18); }
.flavor-item.is-active{
  outline: 2px solid rgba(161,15,15,.35);
  outline-offset: -2px;
  background: rgba(161,15,15,.06);
}
.flavor-item.is-disabled{
  opacity:.55;
  cursor:not-allowed;
}
.flavor-item.is-disabled:hover{ background: transparent; }

.selected-area{
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.02);
  border-radius: 14px;
  padding: 12px;
}
.selected-area__title{
  font-weight:900;
  color:#4a1f1f;
  margin-bottom: 10px;
}
.selected-chips{
  display:flex;
  gap: 8px;
  flex-wrap:wrap;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background:#fff;
  font-weight:900;
}
.chip button{
  border:none;
  background: rgba(0,0,0,.06);
  border-radius: 999px;
  width: 26px;
  height: 26px;
  cursor:pointer;
  font-weight:900;
}

.obs textarea{ width:100%; resize:vertical; }

/* ===== Drawer cart ===== */
.icon-btn{
  border:1px solid rgba(0,0,0,.14);
  background:#fff;
  width: 40px; height: 40px;
  border-radius: 12px;
  cursor:pointer;
  font-weight:900;
}
.drawer{ position: fixed; inset:0; z-index: 95; display:none; }
.drawer.is-open{ display:block; }
.drawer__overlay{ position:absolute; inset:0; background: rgba(0,0,0,.55); }
.drawer__panel{
  position:absolute;
  top:0; right:0;
  height:100%;
  width: min(460px, 100%);
  background:#fff;
  border-left:1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0,0,0,.30);
  display:flex;
  flex-direction:column;
}
.drawer__header{
  padding: 14px;
  border-bottom:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.drawer__body{ padding: 14px; overflow:auto; }

.cart-items{ display:grid; gap:10px; margin-bottom: 14px; }
.cart-item{
  border:1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.cart-item__title{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
}
.qty{
  display:flex;
  gap: 8px;
  align-items:center;
}
.qty button{
  width: 30px;height:30px;
  border-radius: 10px;
  border:1px solid rgba(0,0,0,.14);
  background:#fff;
  cursor:pointer;
  font-weight:900;
}
.qty span{ min-width: 18px; text-align:center; font-weight:900; }

.cart-summary{
  border:1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  background: rgba(0,0,0,.02);
}
.row{ display:flex; justify-content:space-between; align-items:center; gap:10px; margin: 6px 0; }
.row--total{ font-size:16px; font-weight:900; }
.sep{ border:none; border-top:1px solid var(--line); margin: 10px 0; }

.coupon{ display:flex; gap:8px; margin: 10px 0; }
.coupon input{
  flex:1;
  border:1px solid rgba(0,0,0,.14);
  border-radius: 12px;
  padding: 10px 12px;
  outline:none;
}

/* ===== Checkout modal ===== */
.modal{ position: fixed; inset:0; z-index: 96; display:none; }
.modal.is-open{ display:block; }
.modal__overlay{ position:absolute; inset:0; background: rgba(0,0,0,.60); }
.modal__panel{
  position: relative;
  width: min(720px, calc(100% - 20px));
  margin: 6vh auto;
  background:#fff;
  border-radius: 22px;
  overflow:hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.30);
  max-height: 86vh;
  display:flex;
  flex-direction:column;
}
.modal__header{
  padding: 14px;
  border-bottom:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.modal__body{ padding: 14px; overflow:auto; }
.two{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.order-preview{
  border:1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: rgba(0,0,0,.02);
  margin: 10px 0 12px;
}
.preview{
  margin:0;
  white-space: pre-wrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  line-height: 1.55;
}

/* Toast */
.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 12px 14px;
  border-radius: 999px;
  border:1px solid rgba(0,0,0,.14);
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events:none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 110;
  font-weight:900;
}
.toast.is-show{
  opacity: 1;
  transform: translateX(-50%) translateY(-6px);
}

/* Responsive */
@media (max-width: 980px){
  .site-header__inner{ grid-template-columns: 1fr auto; }
  .site-nav{ display:none; }
  .menu-btn{ display:block; }

  .grid .card{ grid-column: span 6; }
  .size-cards{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .grid .card{ grid-column: span 12; }
  .two{ grid-template-columns: 1fr; }
  .site-logo{ min-width: 160px; }
  .site-logo__sub{ display:none; }

  /* modal tela cheia */
  .pmodal__panel{
    width: 100%;
    height: 100%;
    margin: 0;
    max-height: 100vh;
    border-radius: 0;
  }
}
img{ max-width: 100%; height: auto; }
/* ===== Checkout: Pagamento bonito (cards) ===== */
.pay-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top: 6px;
}

.pay-card{
  position:relative;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.02);
  border-radius: 16px;
  padding: 12px;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:10px;
  transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  user-select:none;
}

.pay-card:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(0,0,0,.10);
  border-color: rgba(139,31,31,.35);
  background: rgba(139,31,31,.04);
}

/* escondemos o radio, mas mantemos acessível */
.pay-card input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.pay-card__icon{
  width:40px;
  height:40px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(214,162,74,.16);
  border: 1px solid rgba(214,162,74,.30);
  font-size: 18px;
  flex: 0 0 40px;
}

.pay-card__txt{
  display:grid;
  gap:2px;
  line-height: 1.15;
}

.pay-card__txt b{
  font-weight: 900;
  color: #4a1f1f;
}

.pay-card__txt small{
  font-weight: 700;
  color: rgba(0,0,0,.55);
}

/* estado selecionado */
.pay-card:has(input:checked){
  border-color: rgba(139,31,31,.70);
  background: rgba(139,31,31,.08);
  box-shadow: 0 18px 48px rgba(139,31,31,.12);
}

.pay-card:has(input:checked) .pay-card__icon{
  background: rgba(139,31,31,.14);
  border-color: rgba(139,31,31,.35);
}

/* mobile */
@media (max-width: 560px){
  .pay-grid{ grid-template-columns: 1fr; }
}
