/* ============ RESET & BASE ============ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ============ TOKENS ============ */
:root {
  --blue-50:  #eaf2fb;
  --blue-100: #cfe0f5;
  --blue-500: #0a4ea3;
  --blue-600: #084386;
  --blue-700: #062f64;
  --orange:   #ff6a13;
  --orange-dark: #e85a05;
  --green:    #1ca94c;
  --red:      #e23b3b;
  --bg:       #f5f6f8;
  --surface:  #ffffff;
  --border:   #e5e7eb;
  --border-2: #d6d9df;
  --text:     #0e1726;
  --muted:    #5a6478;
  --muted-2:  #8a92a3;
  --shadow-sm: 0 1px 2px rgba(14,23,38,.06);
  --shadow:    0 4px 14px rgba(14,23,38,.08);
  --shadow-lg: 0 18px 50px rgba(14,23,38,.18);
  --radius:    12px;
  --radius-lg: 18px;
  --container: 1240px;
}

/* ============ UTILITIES ============ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 16px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px; border-radius: 10px; font-weight: 700; font-size: 14px;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 6px 16px rgba(255,106,19,.35); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-primary:disabled { background: #cfd3db; color: #fff; box-shadow: none; cursor: not-allowed; transform: none; }
.btn-ghost { background: var(--surface); color: var(--blue-500); border: 1.5px solid var(--blue-100); }
.btn-ghost:hover { background: var(--blue-50); }
.btn-block { width: 100%; padding: 14px 18px; font-size: 15px; }
.btn-whats { background: #25d366; color: #fff; box-shadow: 0 6px 16px rgba(37,211,102,.35); }
.btn-whats:hover { background: #1ebc5c; transform: translateY(-1px); }
.btn-gov { background: #009c3b; color: #fff; box-shadow: 0 6px 16px rgba(0, 156, 59, .35); }
.btn-gov:hover { background: #007d2e; transform: translateY(-1px); }

.sr-only { position: absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

/* ============ HEADER ============ */
.header {
  position: sticky; top: 0; z-index: 80;
  background: linear-gradient(180deg, var(--blue-500) 0%, var(--blue-600) 100%);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
}
.header-top { padding: 12px 0; }
.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.logo-mark {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  flex-shrink: 0;
  transform: translateY(-6px);
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.logo-text { line-height: 1.05; }
.logo-text .brand {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 20px; letter-spacing: -0.02em;
  display: block;
}
.logo-text .sub { font-size: 11px; opacity: .85; font-weight: 500; letter-spacing: .02em; }

.search {
  position: relative;
  display: flex; align-items: center;
  background: #fff; border-radius: 10px;
  padding: 0 12px;
  box-shadow: var(--shadow-sm);
  height: 44px;
}
.search svg { color: var(--muted); flex-shrink: 0; }
.search input {
  flex: 1; border: none; outline: none; padding: 0 10px;
  background: transparent; color: var(--text); font-size: 14px;
}
.search input::placeholder { color: var(--muted-2); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.status-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-size: 13px; font-weight: 700;
  color: #fff;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18);
}
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 rgba(226,59,59,.6); }
.status-badge.is-open .status-dot { background: #2bd86c; animation: pulse 1.8s infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(43,216,108,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(43,216,108,0); }
  100% { box-shadow: 0 0 0 0   rgba(43,216,108,0); }
}

.cart-btn {
  position: relative;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #fff;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  transition: background .15s;
}
.cart-btn:hover { background: rgba(255,255,255,.22); }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  min-width: 22px; height: 22px; padding: 0 6px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff; font-weight: 800; font-size: 11px;
  display: grid; place-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
  border: 2px solid var(--blue-500);
}
.cart-count.hidden { display: none; }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--blue-700);
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background-image: url('assets/hero.png');
  background-size: cover;
  background-position: center;
  opacity: .55;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,47,100,.25) 0%, rgba(6,47,100,.85) 80%, rgba(6,47,100,1) 100%),
              linear-gradient(90deg, rgba(6,47,100,.7) 0%, rgba(6,47,100,.2) 50%, rgba(6,47,100,.7) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 56px 16px 64px; max-width: var(--container); margin: 0 auto; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 14px 0 12px;
  max-width: 780px;
}
.hero h1 .accent { color: #ffd180; }
.hero p { font-size: clamp(15px, 2vw, 17px); max-width: 580px; opacity: .92; margin-bottom: 22px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-perks { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; font-size: 13px; font-weight: 600; opacity: .95; }
.hero-perks span { display: inline-flex; align-items: center; gap: 6px; }
.hero-perks svg { color: #ffd180; }

/* ============ SECTION ============ */
.section { padding: 36px 0; }
.section-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.section-head h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--blue-700);
}
.section-head p { color: var(--muted); font-size: 14px; }

/* ============ TABS ============ */
.tabs { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 12px; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex-shrink: 0;
  padding: 10px 16px; border-radius: 999px;
  background: var(--surface);
  color: var(--blue-700);
  font-weight: 700; font-size: 14px;
  border: 1.5px solid var(--border);
  transition: all .15s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.tab:hover { border-color: var(--blue-500); }
.tab .count { background: var(--bg); color: var(--muted); padding: 2px 8px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.tab.active { background: var(--blue-500); color: #fff; border-color: var(--blue-500); box-shadow: 0 4px 12px rgba(10,78,163,.3); }
.tab.active .count { background: rgba(255,255,255,.22); color: #fff; }

/* ============ GRID ============ */
.grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 960px) { .grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: pointer;
  position: relative;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--blue-100); }
.card-img { aspect-ratio: 1 / 1; background: #f0f2f5; display: grid; place-items: center; overflow: hidden; position: relative; }
.card-img img { width: 88%; height: 88%; object-fit: contain; transition: transform .3s ease; filter: drop-shadow(0 6px 12px rgba(0,0,0,.08)); }
.card:hover .card-img img { transform: scale(1.05); }
.card-tag {
  position: absolute; top: 10px; left: 10px;
  padding: 4px 9px; border-radius: 6px;
  background: var(--blue-700); color: #fff;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
}
.card-tag.tag-oferta { background: linear-gradient(135deg, #ff9528 0%, #ff5d0e 100%); color: #fff; font-size: 10px; box-shadow: 0 4px 10px rgba(255,93,14,.35); }
.card-body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-add-btn {
  margin-top: 10px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 12px;
  background: var(--orange); color: #fff;
  border-radius: 9px;
  font-weight: 800; font-size: 13px;
  box-shadow: 0 4px 12px rgba(255,106,19,.3);
  transition: background .15s ease, transform .15s ease;
  width: 100%;
}
.card-add-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }
.card-title {
  font-weight: 700; font-size: 14px;
  color: var(--text); line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}
.card-desc { font-size: 12px; color: var(--muted); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-price-row { margin-top: auto; padding-top: 8px; }
.card-price-from { font-size: 11px; color: var(--muted); font-weight: 600; }
.card-price-original { font-size: 12px; color: var(--muted); text-decoration: line-through; font-weight: 600; display: block; line-height: 1; margin-bottom: 2px; }
.card-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--blue-700);
  letter-spacing: -.02em; line-height: 1.1;
}
.card-price small { font-size: 13px; font-weight: 700; opacity: .8; }
.card-discount { display: inline-block; background: #ffe9d4; color: #c64200; font-size: 10.5px; font-weight: 800; padding: 2px 7px; border-radius: 4px; margin-left: 6px; vertical-align: middle; }
.card-cta { margin-top: 8px; display: flex; align-items: center; justify-content: center; padding: 6px 12px; color: var(--blue-500); font-weight: 700; font-size: 12.5px; gap: 6px; }
@media (min-width: 640px) { .card-title { font-size: 15px; } .card-price { font-size: 24px; } }

/* ============ MODAL ============ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(14,23,38,.55);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  position: fixed; z-index: 91;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(.96);
  width: min(960px, calc(100% - 24px));
  max-height: calc(100vh - 32px);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  display: flex; flex-direction: column;
}
.modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--text);
  display: grid; place-items: center;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: background .15s;
}
.modal-close:hover { background: var(--bg); }
.modal-grid { display: grid; grid-template-columns: 1fr; overflow: auto; flex: 1; }
@media (min-width: 760px) { .modal-grid { grid-template-columns: 1.05fr 1fr; } }
.modal-img { background: linear-gradient(135deg, #f0f4f8 0%, #e6ecf3 100%); aspect-ratio: 1 / 1; display: grid; place-items: center; padding: 24px; }
.modal-img img { max-width: 78%; max-height: 78%; object-fit: contain; filter: drop-shadow(0 14px 24px rgba(0,0,0,.12)); }
@media (min-width: 760px) { .modal-img { aspect-ratio: auto; height: 100%; min-height: 380px; } }
.modal-info { padding: 24px; display: flex; flex-direction: column; gap: 14px; overflow: auto; }
.modal-cat { display: inline-block; padding: 4px 10px; border-radius: 6px; background: var(--blue-50); color: var(--blue-700); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; width: fit-content; }
.modal-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 24px; font-weight: 800; color: var(--text); letter-spacing: -.02em; line-height: 1.15; }
.modal-desc { color: var(--muted); font-size: 14px; line-height: 1.55; }
.modal-price { font-family: 'Bricolage Grotesque', sans-serif; font-size: 34px; font-weight: 800; color: var(--blue-700); letter-spacing: -.025em; line-height: 1; }
.modal-price small { font-size: 18px; }
.modal-price-label { font-size: 12px; color: var(--muted); font-weight: 600; margin-bottom: 2px; }

.variation-block { margin-top: 4px; }
.variation-block .label { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.variation-block .label .req { color: var(--orange); }
.variation-list { display: flex; flex-direction: column; gap: 8px; }
.variation-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  position: relative;
}
.variation-item:hover { border-color: var(--blue-500); }
.variation-item input { position: absolute; opacity: 0; pointer-events: none; }
.variation-item .radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--border-2);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: border-color .15s;
}
.variation-item .radio::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--blue-500); transform: scale(0); transition: transform .15s; }
.variation-item.selected { border-color: var(--blue-500); background: var(--blue-50); }
.variation-item.selected .radio { border-color: var(--blue-500); }
.variation-item.selected .radio::after { transform: scale(1); }
.variation-item .v-name { flex: 1; font-weight: 600; font-size: 14px; }
.variation-item .v-price { font-weight: 800; color: var(--blue-700); font-size: 14px; }

.qty-row { display: flex; align-items: center; gap: 14px; margin-top: 6px; }
.qty-row .label { font-size: 13px; font-weight: 700; }
.qty-control { display: inline-flex; align-items: center; border: 1.5px solid var(--border); border-radius: 10px; overflow: hidden; }
.qty-control button { width: 40px; height: 40px; font-size: 18px; font-weight: 700; color: var(--blue-700); transition: background .15s; }
.qty-control button:hover { background: var(--blue-50); }
.qty-control button:disabled { color: var(--muted-2); cursor: not-allowed; }
.qty-control .qty { min-width: 40px; text-align: center; font-weight: 800; font-size: 15px; }
.modal-actions { margin-top: auto; padding-top: 8px; }

/* ============ DRAWER ============ */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 100%);
  background: var(--surface);
  z-index: 91;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
  box-shadow: var(--shadow-lg);
}
.drawer.open { transform: translateX(0); }
.drawer-head { padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); }
.drawer-head h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; font-weight: 800; color: var(--blue-700); display: flex; align-items: center; gap: 10px; }
.drawer-close { width: 36px; height: 36px; border-radius: 50%; background: var(--bg); display: grid; place-items: center; transition: background .15s; }
.drawer-close:hover { background: var(--border); }
.drawer-body { flex: 1; overflow-y: auto; padding: 16px 20px; display: flex; flex-direction: column; gap: 12px; }
.drawer-empty { text-align: center; padding: 40px 16px; color: var(--muted); }
.drawer-empty h4 { font-weight: 700; color: var(--text); margin-bottom: 4px; }
.drawer-empty .mascote-mini {
  width: 88px; height: 88px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-50) 0%, #d4e4f6 100%);
  display: grid; place-items: center;
  overflow: hidden;
}
.drawer-empty .mascote-mini img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transform: scale(1.15); }

.cart-item { display: grid; grid-template-columns: 70px 1fr; gap: 12px; padding: 12px; border: 1px solid var(--border); border-radius: 12px; align-items: start; }
.cart-item-img { aspect-ratio: 1; background: #f0f2f5; border-radius: 8px; display: grid; place-items: center; padding: 6px; }
.cart-item-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cart-item-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cart-item-name { font-weight: 700; font-size: 13px; line-height: 1.3; }
.cart-item-variation { font-size: 11px; color: var(--muted); font-weight: 600; }
.cart-item-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.cart-item-price { font-weight: 800; color: var(--blue-700); font-size: 14px; }
.cart-qty { display: inline-flex; align-items: center; background: var(--bg); border-radius: 8px; }
.cart-qty button { width: 28px; height: 28px; font-size: 14px; font-weight: 700; color: var(--blue-700); }
.cart-qty .q { min-width: 24px; text-align: center; font-weight: 800; font-size: 13px; }
.cart-item-remove { font-size: 11px; color: var(--red); font-weight: 700; margin-top: 4px; padding: 0; background: none; text-align: left; }
.cart-item-remove:hover { text-decoration: underline; }
.drawer-foot { border-top: 1px solid var(--border); padding: 16px 20px 18px; background: var(--surface); }
.subtotal-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.subtotal-row .label { font-size: 13px; color: var(--muted); font-weight: 600; }
.subtotal-row .value { font-family: 'Bricolage Grotesque', sans-serif; font-size: 26px; font-weight: 800; color: var(--blue-700); letter-spacing: -.02em; }

.cart-galao-toggle {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 9px;
  margin-bottom: 12px;
  cursor: pointer;
  user-select: none;
}
.cart-galao-toggle input { width: 18px; height: 18px; accent-color: var(--blue-500); flex-shrink: 0; cursor: pointer; }
.cart-galao-toggle .ct-text { font-size: 12.5px; font-weight: 700; color: var(--blue-700); line-height: 1.3; }
.cart-galao-toggle .ct-text small { display: block; font-weight: 500; font-size: 11px; color: var(--muted); margin-top: 1px; }

.galao-check {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #eaf4ff 0%, #dceaf9 100%);
  border: 1.5px solid var(--blue-100);
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
}
.galao-check input { width: 20px; height: 20px; accent-color: var(--blue-500); flex-shrink: 0; margin-top: 1px; cursor: pointer; }
.galao-check .gc-title { font-weight: 800; font-size: 13.5px; color: var(--blue-700); display: block; margin-bottom: 2px; }
.galao-check .gc-hint { font-size: 11.5px; color: var(--muted); font-weight: 500; }

/* ============ CHECKOUT ============ */
.checkout { padding: 16px 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; overflow-y: auto; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .05em; }
.field label .req { color: var(--orange); }
.field input, .field textarea, .field select { border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 14px; background: #fff; color: var(--text); transition: border-color .15s; width: 100%; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue-500); }
.field textarea { resize: vertical; min-height: 90px; }
.field .hint { font-size: 11px; color: var(--muted); }
.field-error { font-size: 11px; color: var(--red); font-weight: 600; }

.checkout-summary { background: var(--blue-50); padding: 12px 14px; border-radius: 10px; font-size: 13px; }
.checkout-summary .row { display: flex; justify-content: space-between; gap: 12px; padding: 4px 0; }
.checkout-summary .row.total { font-weight: 800; color: var(--blue-700); font-size: 15px; border-top: 1px dashed rgba(10,78,163,.2); padding-top: 8px; margin-top: 4px; }
.checkout-summary .coupon-note { font-size: 10.5px; color: var(--muted); text-align: right; margin-top: 4px; font-style: italic; }
.checkout-back { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--blue-500); font-size: 13px; padding: 4px 0; margin-bottom: 4px; }
.checkout-back:hover { text-decoration: underline; }

.field.cpf-field, .field.troco-field { display: none; }
.field.cpf-field.show, .field.troco-field.show { display: flex; }

.gp-info-card {
  background: linear-gradient(135deg, #e8f7ee 0%, #d4f0de 100%);
  border: 1.5px solid #8ad1a0;
  border-radius: 12px;
  padding: 13px 14px;
  display: none;
  flex-direction: column;
  gap: 6px;
}
.gp-info-card.show { display: flex; }
.gp-info-card .gp-info-head { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 13px; color: #066e2c; }
.gp-info-card p { font-size: 12px; line-height: 1.5; color: #0a5a26; margin: 0; }
.gp-info-card a { color: #066e2c; font-weight: 800; text-decoration: underline; }

.pix-card {
  background: linear-gradient(135deg, #f0fbf4 0%, #ddf3e3 100%);
  border: 1.5px solid #b7e2c2;
  border-radius: 12px;
  padding: 14px 16px;
  display: none;
  flex-direction: column;
  gap: 10px;
}
.pix-card.show { display: flex; }
.pix-card .pix-head { display: flex; align-items: center; gap: 10px; }
.pix-card .pix-icon { width: 36px; height: 36px; border-radius: 8px; background: #32c466; color: #fff; display: grid; place-items: center; flex-shrink: 0; font-weight: 800; }
.pix-card .pix-title { font-size: 13px; font-weight: 800; color: #1a6b32; line-height: 1.15; }
.pix-card .pix-sub { font-size: 11.5px; color: #2c8245; }
.pix-key-row { display: flex; align-items: stretch; background: #fff; border-radius: 8px; border: 1px solid #c5e6cf; overflow: hidden; }
.pix-key { flex: 1; padding: 10px 12px; font-family: 'Bricolage Grotesque', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); word-break: break-all; display: flex; align-items: center; }
.pix-copy { background: #1a6b32; color: #fff; font-weight: 800; font-size: 12px; padding: 0 14px; display: flex; align-items: center; gap: 6px; transition: background .15s; }
.pix-copy:hover { background: #145025; }
.pix-copy.copied { background: #32c466; }

/* ============ COUPON ============ */
.coupon-section { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px dashed var(--border); }
.coupon-toggle {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 10px 12px;
  background: rgba(255, 244, 230, .55);
  border: 1px dashed #ffc890;
  border-radius: 9px;
  font-weight: 700; font-size: 13px;
  color: #c64200;
}
.coupon-toggle:hover { background: #fff4e6; border-color: var(--orange); }
.coupon-toggle .left { display: inline-flex; align-items: center; gap: 8px; }
.coupon-input-row { display: flex; gap: 6px; margin-bottom: 4px; }
.coupon-input-row input { flex: 1; border: 1.5px solid var(--border); border-radius: 9px; padding: 10px 12px; font-size: 13px; font-weight: 700; text-transform: uppercase; background: #fff; }
.coupon-input-row input:focus { outline: none; border-color: var(--orange); }
.coupon-apply-btn { background: var(--orange); color: #fff; font-weight: 800; font-size: 13px; padding: 0 16px; border-radius: 9px; white-space: nowrap; }
.coupon-apply-btn:hover { background: var(--orange-dark); }
.coupon-cancel { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 700; color: var(--muted); padding: 6px 0 0; background: none; }
.coupon-cancel:hover { color: var(--text); text-decoration: underline; }
.coupon-error { font-size: 11.5px; color: var(--red); margin-top: 4px; font-weight: 700; }
.coupon-applied {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 12px;
  background: linear-gradient(135deg, #e8f7ee 0%, #d4f0de 100%);
  border: 1.5px solid #8ad1a0;
  border-radius: 10px;
}
.coupon-applied .coupon-icon { width: 32px; height: 32px; border-radius: 50%; background: #fff; border: 1.5px solid #8ad1a0; display: grid; place-items: center; font-size: 16px; flex-shrink: 0; }
.coupon-applied .coupon-info { flex: 1; min-width: 0; line-height: 1.25; }
.coupon-applied .coupon-name { font-weight: 800; font-size: 13px; color: #066e2c; margin-bottom: 2px; }
.coupon-applied .coupon-desc { font-size: 11px; color: #0a5a26; font-weight: 500; }
.coupon-applied .coupon-remove { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.7); color: #066e2c; display: grid; place-items: center; flex-shrink: 0; }
.coupon-applied .coupon-remove:hover { background: #fff; color: var(--red); }
.checkout-summary .row.coupon-row { background: rgba(28,169,76,.1); border-radius: 6px; padding: 6px 10px; margin: 6px -10px 4px; color: #066e2c; font-weight: 800; }

/* ============ FOOTER ============ */
.footer { background: linear-gradient(180deg, var(--blue-700) 0%, #041f44 100%); color: rgba(255,255,255,.85); padding: 64px 0 0; margin-top: 40px; }
.footer .container { padding: 0 22px; }
@media (min-width: 720px) { .footer .container { padding: 0 32px; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; padding-bottom: 44px; }
@media (min-width: 720px) { .footer { padding-top: 72px; margin-top: 56px; } .footer-grid { grid-template-columns: 1.1fr 1fr 1.3fr; gap: 48px; padding-bottom: 52px; } }
.footer h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 18px; letter-spacing: -.01em; }
.footer p, .footer li { font-size: 13.5px; line-height: 1.65; }
.footer-brand .lead { margin: 16px 0 18px; font-size: 13.5px; }
.footer-brand .status-badge { background: rgba(255,255,255,.08); font-size: 12px; }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; gap: 10px; padding: 10px 0; border-bottom: 1px dashed rgba(255,255,255,.12); }
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { font-weight: 700; color: #fff; }
.address-block { margin-bottom: 16px; font-size: 13.5px; }
.address-block strong { color: #fff; display: block; margin-bottom: 6px; }
.map-wrap { border-radius: 12px; overflow: hidden; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); height: 200px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.map-actions { display: flex; gap: 10px; margin-top: 12px; }
.map-actions .btn { flex: 1; padding: 10px 12px; font-size: 13px; }
.map-actions .btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.18); }
.map-actions .btn-ghost:hover { background: rgba(255,255,255,.14); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: rgba(255,255,255,.6); }
@media (max-width: 640px) { .footer-bottom { padding-bottom: 90px; } }

/* ============ FAB WHATSAPP ============ */
.fab-whats {
  position: fixed; bottom: 20px; right: 20px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 8px 22px rgba(37,211,102,.45);
  z-index: 60;
  transition: transform .15s;
  text-decoration: none;
}
.fab-whats:hover { transform: scale(1.08); }

/* ============ ALERTS / INFO MODAL ============ */
.alert-backdrop { position: fixed; inset: 0; z-index: 110; background: rgba(8, 18, 38, .68); backdrop-filter: blur(6px); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.alert-backdrop.open { opacity: 1; pointer-events: auto; }
.alert-modal {
  position: fixed; z-index: 111;
  left: 50%; top: 50%;
  transform: translate(-50%, calc(-50% + 12px)) scale(.96);
  width: min(440px, calc(100% - 24px));
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(0,0,0,.32);
  overflow: hidden;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.alert-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.alert-hero { background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-700) 100%); color: #fff; padding: 28px 24px 24px; text-align: center; position: relative; overflow: hidden; }
.alert-icon { width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 50%; background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.25); display: grid; place-items: center; position: relative; z-index: 1; }
.alert-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); padding: 5px 11px; border-radius: 999px; margin-bottom: 10px; position: relative; z-index: 1; }
.alert-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: pulseRed 1.8s infinite; }
@keyframes pulseRed { 0% { box-shadow: 0 0 0 0 rgba(255,120,120,.55); } 70% { box-shadow: 0 0 0 7px rgba(255,120,120,0); } 100% { box-shadow: 0 0 0 0 rgba(255,120,120,0); } }
.alert-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 800; letter-spacing: -.02em; line-height: 1.15; position: relative; z-index: 1; }
.alert-body { padding: 22px 24px 8px; text-align: center; }
.alert-body p { color: var(--muted); font-size: 14px; line-height: 1.55; margin-bottom: 14px; }
.alert-body p strong { color: var(--text); font-weight: 700; }
.alert-shift-card { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: linear-gradient(135deg, #fff7ec 0%, #ffece0 100%); border: 1.5px solid #ffd2b0; border-radius: 12px; margin-bottom: 6px; text-align: left; }
.alert-shift-card .shift-icon { width: 42px; height: 42px; background: var(--orange); color: #fff; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; box-shadow: 0 4px 10px rgba(255,106,19,.35); }
.alert-shift-card .shift-meta { font-size: 11.5px; color: #9c4f17; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.alert-shift-card .shift-when { font-family: 'Bricolage Grotesque', sans-serif; font-size: 17px; font-weight: 800; color: #6b2c00; line-height: 1.15; }
.alert-shift-card .shift-when small { display: block; font-size: 12px; font-weight: 600; color: #9c4f17; margin-top: 1px; text-transform: none; letter-spacing: 0; }
.alert-actions { padding: 14px 24px 22px; display: flex; gap: 10px; }
.alert-actions .btn { flex: 1; padding: 13px 14px; }
.alert-actions .btn-secondary { background: var(--bg); color: var(--text); border: 1.5px solid var(--border); }
.alert-actions .btn-secondary:hover { background: var(--border); }
@media (max-width: 480px) { .alert-actions { flex-direction: column-reverse; } .alert-actions .btn { width: 100%; } }

.gas-povo-seal {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255, 255, 255, .96);
  border: 1.5px solid rgba(255, 255, 255, .6);
  border-radius: 14px;
  padding: 8px 16px 8px 8px;
  margin-top: 18px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .25), 0 0 0 3px rgba(255, 223, 0, .25);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.gas-povo-seal:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.3), 0 0 0 3px rgba(255,223,0,.45); }
.gas-povo-seal .gp-logo { width: 78px; height: 50px; flex-shrink: 0; display: grid; place-items: center; }
.gas-povo-seal .gp-logo img { width: 100%; height: 100%; object-fit: contain; }
.gas-povo-seal .gp-text { line-height: 1.15; min-width: 0; text-align: left; }
.gas-povo-seal .gp-eyebrow { display: block; font-size: 9.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #009c3b; margin-bottom: 2px; }
.gas-povo-seal .gp-title { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: 14px; font-weight: 800; letter-spacing: -.01em; color: var(--text); }
.gas-povo-seal .gp-arrow { margin-left: 4px; color: var(--blue-500); opacity: .7; }
@media (max-width: 480px) { .gas-povo-seal { padding: 8px 14px 8px 8px; gap: 10px; } .gas-povo-seal .gp-logo { width: 64px; height: 42px; } .gas-povo-seal .gp-title { font-size: 13px; } }

/* INFO MODAL */
.info-modal {
  position: fixed; z-index: 111;
  left: 50%; top: 50%;
  transform: translate(-50%, calc(-50% + 12px)) scale(.96);
  width: min(440px, calc(100% - 24px));
  max-height: calc(100vh - 32px);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(0,0,0,.32);
  overflow: hidden;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  display: flex; flex-direction: column;
}
.info-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.info-modal-hero { background: linear-gradient(135deg, #009c3b 0%, #006b22 100%); color: #fff; padding: 26px 24px 22px; text-align: center; position: relative; overflow: hidden; }
.info-modal-hero .info-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; background: rgba(255,223,0,.18); border: 1px solid rgba(255,223,0,.35); color: #ffdf00; padding: 5px 11px; border-radius: 999px; margin-bottom: 12px; }
.info-modal-hero .info-icon { width: 130px; height: 80px; margin: 0 auto 14px; border-radius: 14px; background: rgba(255, 255, 255, .96); display: grid; place-items: center; padding: 8px 14px; box-shadow: 0 6px 18px rgba(0,0,0,.22); }
.info-modal-hero .info-icon img { width: 100%; height: 100%; object-fit: contain; }
.info-modal-hero h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; font-weight: 800; letter-spacing: -.015em; line-height: 1.2; }
.info-modal-body { padding: 22px 24px 6px; overflow-y: auto; text-align: left; }
.info-modal-body p { color: var(--muted); font-size: 13.5px; line-height: 1.55; margin-bottom: 12px; text-align: left; }
.info-modal-body p strong { color: var(--text); font-weight: 700; }
.info-checklist { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.info-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.45; color: var(--text); text-align: left; }
.info-checklist li > span { flex: 1; min-width: 0; }
.info-checklist li::before { content: '✓'; background: #009c3b; color: #fff; width: 18px; height: 18px; min-width: 18px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 900; margin-top: 2px; }
.info-modal-actions { padding: 12px 24px 22px; display: flex; gap: 10px; }
.info-modal-actions .btn { flex: 1; padding: 13px 14px; }
.info-modal-close { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.95); color: var(--text); display: grid; place-items: center; z-index: 2; box-shadow: var(--shadow-sm); }
.info-modal-close:hover { background: var(--bg); }
@media (max-width: 480px) { .info-modal-actions { flex-direction: column-reverse; } }

/* ============ TRUST + COVERAGE + REORDER ============ */
.trust-strip { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 0; }
.trust-strip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 18px; }
@media (min-width: 720px) { .trust-strip-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--text); }
.trust-item .ti-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--blue-50); color: var(--blue-500); display: grid; place-items: center; flex-shrink: 0; }
.trust-item strong { font-weight: 800; display: block; line-height: 1.15; }
.trust-item span { color: var(--muted); font-size: 11.5px; }

.coverage-bar { background: linear-gradient(135deg, #fff7ec 0%, #ffe9d4 100%); border: 1px solid #ffd2b0; border-radius: var(--radius-lg); padding: 14px 16px; margin-bottom: 22px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.coverage-bar .cb-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; flex-shrink: 0; box-shadow: 0 4px 10px rgba(255,106,19,.32); }
.coverage-bar .cb-text { flex: 1; min-width: 200px; }
.coverage-bar .cb-text strong { display: block; font-weight: 800; color: #6b2c00; line-height: 1.2; }
.coverage-bar .cb-text span { font-size: 12.5px; color: #9c4f17; }
.coverage-form { display: flex; gap: 8px; flex: 1; min-width: 220px; }
.coverage-form input { flex: 1; border: 1.5px solid #ffd2b0; background: #fff; border-radius: 10px; padding: 10px 12px; font-size: 14px; }
.coverage-form input:focus { outline: none; border-color: var(--orange); }
.coverage-form button { background: var(--orange); color: #fff; font-weight: 800; padding: 0 18px; border-radius: 10px; font-size: 13.5px; white-space: nowrap; }
.coverage-form button:hover { background: var(--orange-dark); }
.coverage-result { width: 100%; font-size: 13px; font-weight: 700; padding: 8px 12px; border-radius: 8px; display: none; }
.coverage-result.show { display: block; }
.coverage-result.ok { background: rgba(28,169,76,.12); color: #0e6b2d; border: 1px solid rgba(28,169,76,.3); }
.coverage-result.no { background: rgba(226,59,59,.1); color: #9b2222; border: 1px solid rgba(226,59,59,.3); }

.reorder-banner { background: linear-gradient(135deg, var(--blue-50) 0%, #e3edf9 100%); border: 1.5px solid var(--blue-100); border-radius: 12px; padding: 14px; display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.reorder-banner .rb-mascote { width: 44px; height: 44px; border-radius: 50%; background: var(--blue-500); overflow: hidden; flex-shrink: 0; }
.reorder-banner .rb-mascote img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; transform: scale(1.15); }
.reorder-banner .rb-text { flex: 1; min-width: 0; }
.reorder-banner .rb-greet { font-size: 12px; color: var(--muted); font-weight: 600; }
.reorder-banner .rb-name { font-weight: 800; font-size: 14px; color: var(--blue-700); line-height: 1.2; }
.reorder-banner .rb-action { font-size: 12px; font-weight: 700; color: var(--orange); padding: 0; background: none; text-align: left; margin-top: 2px; }
.reorder-banner .rb-action:hover { text-decoration: underline; }
.reorder-banner .rb-dismiss { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.7); color: var(--muted); display: grid; place-items: center; flex-shrink: 0; }
.reorder-banner .rb-dismiss:hover { background: #fff; color: var(--text); }

/* ============ TESTIMONIALS + FAQ ============ */
.testimonials { background: var(--surface); padding: 40px 0 8px; margin-top: 16px; }
.testimonials-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .testimonials-grid { grid-template-columns: repeat(4, 1fr); } }
.testimonial { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px; background: #fff; display: flex; flex-direction: column; gap: 12px; }
.testimonial .stars { color: #f5b400; font-size: 14px; letter-spacing: 1px; }
.testimonial .quote { font-size: 13.5px; line-height: 1.55; color: var(--text); flex: 1; }
.testimonial .author { display: flex; align-items: center; gap: 10px; padding-top: 10px; border-top: 1px dashed var(--border); }
.testimonial .avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-50) 0%, var(--blue-100) 100%); flex-shrink: 0; display: grid; place-items: center; font-weight: 800; color: var(--blue-700); font-size: 13px; overflow: hidden; }
.testimonial .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
.testimonial .author-info { line-height: 1.2; min-width: 0; }
.testimonial .author-name { font-weight: 800; font-size: 13px; }
.testimonial .author-loc { font-size: 11.5px; color: var(--muted); }

.faq { margin-top: 6px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; overflow: hidden; }
.faq-item.open { background: rgba(255,255,255,.08); }
.faq-q { width: 100%; text-align: left; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #fff; font-weight: 700; font-size: 13.5px; line-height: 1.35; }
.faq-q .chev { flex-shrink: 0; transition: transform .25s ease; opacity: .8; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.6; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a > div { padding: 0 16px 14px; }

/* ============ TOAST + NO RESULTS ============ */
.toast {
  position: fixed; bottom: 90px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--blue-700); color: #fff;
  padding: 12px 18px; border-radius: 999px;
  font-weight: 700; font-size: 13.5px;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 100;
  display: inline-flex; align-items: center; gap: 8px;
  max-width: calc(100% - 32px);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .check { width: 20px; height: 20px; border-radius: 50%; background: var(--green); display: grid; place-items: center; flex-shrink: 0; }

.no-results { text-align: center; padding: 50px 20px; color: var(--muted); background: var(--surface); border-radius: var(--radius-lg); border: 1px dashed var(--border-2); }
.no-results h3 { color: var(--text); margin: 8px 0 6px; font-weight: 800; font-family: 'Bricolage Grotesque', sans-serif; }

/* ============ RESPONSIVE ============ */
@media (max-width: 640px) {
  .header-grid { grid-template-columns: auto auto; grid-template-rows: auto auto; }
  .logo-text .sub { display: none; }
  .search { grid-column: 1 / -1; order: 3; height: 42px; }
  .header-actions { justify-self: end; }
  .status-badge { padding: 6px 10px; font-size: 12px; }
  .status-badge .label-full { display: none; }
  .modal { width: 100%; max-height: 100vh; height: 100vh; border-radius: 0; }
  .hero-content { padding: 40px 16px 48px; }
  .footer { padding-top: 52px; margin-top: 32px; }
}

/* ============ RELATED PRODUCTS IN MODAL (Costuma vir junto) ============ */
.related-block {
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}
.related-block .label {
  font-size: 13px; font-weight: 700; color: var(--text);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.related-block .label svg { color: var(--orange); }
.related-list { display: flex; flex-direction: column; gap: 8px; }
.related-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.related-item:hover { border-color: var(--blue-500); background: var(--blue-50); }
.related-item .ri-img {
  width: 44px; height: 44px;
  background: var(--bg);
  border-radius: 8px;
  display: grid; place-items: center;
  flex-shrink: 0;
  padding: 4px;
}
.related-item .ri-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.related-item .ri-info { flex: 1; min-width: 0; }
.related-item .ri-name {
  font-weight: 700; font-size: 13px;
  line-height: 1.25;
  display: -webkit-box; -webkit-line-clamp: 1; line-clamp: 1; -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-item .ri-price { font-size: 12.5px; color: var(--blue-700); font-weight: 800; }
.related-item .ri-add {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .15s;
  border: none;
  cursor: pointer;
}
.related-item .ri-add:hover { transform: scale(1.1); }

/* ============ ENDEREÇO ESTRUTURADO (CHECKOUT) ============ */
.checkout-address-block {
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 12px;
  padding: 14px 14px 4px;
  margin-bottom: 14px;
  background: var(--bg-soft, #fafbfc);
}
.checkout-address-block-head {
  font-weight: 800;
  font-size: 13.5px;
  margin-bottom: 12px;
  color: var(--text, #0e1726);
  letter-spacing: .01em;
}
.checkout-address-block .field { margin-bottom: 12px; }
.checkout-address-block .field:last-child { margin-bottom: 8px; }

.cep-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cep-row input {
  flex: 1;
  max-width: 180px;
}
.cep-help {
  font-size: 11.5px;
  color: var(--blue-700, #0a4ea3);
  text-decoration: underline;
  white-space: nowrap;
}
.cep-help:hover { color: var(--orange, #e55b13); }

.address-row {
  display: flex;
  gap: 10px;
}
.address-row .field {
  flex: 1;
  min-width: 0;
}

.field-hint {
  font-size: 11.5px;
  color: var(--muted, #5a6478);
  margin-top: 2px;
  transition: color .2s;
}

@media (max-width: 480px) {
  .cep-row { flex-direction: column; align-items: stretch; }
  .cep-row input { max-width: 100%; }
  .cep-help { text-align: right; }
}

/* ============ COVERAGE ALERT (CEP fora da área de atendimento) ============ */
.coverage-alert-backdrop {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(8, 18, 38, .6);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  animation: covAlertFadeIn .18s ease-out;
}
@keyframes covAlertFadeIn { from { opacity: 0; } to { opacity: 1; } }

.coverage-alert-box {
  background: var(--surface);
  border-radius: var(--radius-lg);
  max-width: 440px; width: 100%;
  padding: 24px 20px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: covAlertSlideUp .22s ease-out;
}
@keyframes covAlertSlideUp {
  from { transform: translateY(12px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.coverage-alert-icon {
  font-size: 38px;
  margin-bottom: 6px;
  line-height: 1;
}
.coverage-alert-box h3 {
  margin: 0 0 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--blue-700);
}
.coverage-alert-box p {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}
.coverage-alert-box p strong { font-weight: 700; }

.coverage-alert-areas {
  margin-top: 10px;
  padding: 10px 12px;
  background: var(--blue-50);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
}
.coverage-alert-areas strong {
  color: var(--blue-700);
  display: block;
  margin-bottom: 2px;
}

.coverage-alert-help {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

.coverage-alert-actions {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.coverage-alert-actions .btn {
  flex: 1;
  min-width: 130px;
}

@media (max-width: 480px) {
  .coverage-alert-actions { flex-direction: column-reverse; }
  .coverage-alert-actions .btn { width: 100%; }
}

/* ============ FOOTER SEALS (selos de credibilidade + bandeiras) ============ */
#footerSealsBlock {
  margin-top: 18px;
}
.footer-seals-section {
  margin-bottom: 14px;
}
.footer-seals-section:last-child {
  margin-bottom: 0;
}
.footer-seals-section h5 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
  margin-bottom: 8px;
}

/* Selos de credibilidade — imagens clicáveis */
.credibility-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.credibility-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.96);
  border-radius: 8px;
  padding: 6px 10px;
  height: 44px;
  min-width: 70px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
a.credibility-seal:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.credibility-seal img {
  max-height: 32px;
  max-width: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Bandeiras de cartão — SVGs monocromáticos */
.card-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  color: rgba(255,255,255,.85);
}
.card-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 30px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 5px;
  padding: 2px;
  transition: background .15s ease, border-color .15s ease;
}
.card-brand:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.32);
}
.card-brand svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 480px) {
  .credibility-seal { height: 38px; min-width: 60px; }
  .credibility-seal img { max-height: 26px; }
  .card-brand { width: 38px; height: 26px; }
}
