/* ========== PRAMOTOS LANDING — POVÃO PROMO STYLE ========== */

:root {
  /* Brand palette */
  --brand-orange: #F26B1F;
  --brand-orange-deep: #D8551A;
  --brand-yellow: #FFC421;
  --brand-yellow-deep: #E8A400;
  --brand-green: #1E6B3E;
  --brand-green-dark: #134426;
  --brand-red: #D62828;
  --brand-red-dark: #9A1B1B;
  --ink: #1A140F;
  --ink-soft: #2A2018;
  --cream: #FFF4D6;
  --paper: #FFF8E8;

  /* Theming knobs (TWEAKS rewrites these) */
  --c-primary: var(--brand-orange);
  --c-primary-deep: var(--brand-orange-deep);
  --c-accent: var(--brand-yellow);
  --c-stamp: var(--brand-red);
  --c-text-on-primary: var(--ink);

  /* Intensity */
  --tilt: 1;
  --stripe-opacity: 1;

  /* Type */
  --ff-display: "Anton", "Oswald", "Archivo Black", Impact, sans-serif;
  --ff-sub: "Archivo Black", "Anton", Impact, sans-serif;
  --ff-cond: "Barlow Condensed", "Oswald", "Inter", sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --ff-mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body { overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 18px; }

.stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-red);
  color: #fff;
  font-family: var(--ff-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(calc(-6deg * var(--tilt)));
}

/* ====== MARQUEE ====== */
.marquee {
  background: var(--ink);
  color: var(--brand-yellow);
  font-family: var(--ff-sub);
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 30;
  border-bottom: 3px solid var(--c-primary);
}
.marquee-track {
  display: inline-flex;
  gap: 36px;
  animation: scroll 50s linear infinite reverse;
  padding-right: 36px;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}
.marquee-track span::after {
  content: "★";
  color: var(--brand-red);
  font-size: 12px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Big Shoulders Display é variável — força weight 900 em todo display */
.brand-words,
.hero h1,
.section-title,
.lojas-head h2,
.cat-card h3,
.selo h4,
.endereco-card h4,
.store-name,
.modal-card h3 {
  font-weight: 900;
}

/* ====== HEADER ====== */
/* ====== STICKY TOP (header + carousel) ====== */
.site-top {
  position: sticky;
  top: 0;
  z-index: 25;
}

.site-header {
  background: var(--c-primary);
  border-bottom: 5px solid var(--ink);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 14px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 56px;
  height: 56px;
  background: var(--c-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--brand-yellow);
  -webkit-text-stroke: 1.5px var(--ink);
  border: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: "PM";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.brand-mark img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background: var(--c-primary);
  position: relative;
  z-index: 1;
}
.brand-words {
  font-family: var(--ff-display);
  font-size: 26px;
  color: var(--brand-yellow);
  line-height: 1;
  -webkit-text-stroke: 1px var(--ink);
  text-shadow: 2px 2px 0 var(--ink);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.brand-tag {
  display: block;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--ink);
  margin-top: 4px;
  -webkit-text-stroke: 0;
  text-shadow: none;
  white-space: nowrap;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-green);
  color: #fff;
  font-family: var(--ff-sub);
  text-transform: uppercase;
  font-size: 14px;
  padding: 10px 16px;
  border: 3px solid var(--ink);
  border-radius: 10px;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.1s, box-shadow 0.1s;
}
.header-cta:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.header-cta svg { width: 18px; height: 18px; }
.header-cta .label-short { display: inline; }
.header-cta .label-long { display: none; }
@media (min-width: 720px) {
  .header-cta .label-short { display: none; }
  .header-cta .label-long { display: inline; }
  .brand-words { font-size: 26px; }
}

/* ====== HERO ====== */
.hero {
  position: relative;
  background: var(--c-primary);
  color: var(--ink);
  padding: 18px 0 22px;
  overflow: hidden;
  border-bottom: 5px solid var(--ink);
}
/* sun-burst e dots no fundo — escondidos quando o hero é compacto */
.hero::before,
.hero::after { display: none; }
.hero .wrap { position: relative; z-index: 2; }
.hero-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--brand-yellow);
  font-family: var(--ff-sub);
  text-transform: uppercase;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  align-self: center;
}
.hero-flag .dot {
  width: 9px; height: 9px;
  background: var(--brand-red);
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.3; } }

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.5px;
  margin: 0 0 10px;
  color: var(--ink);
  text-transform: uppercase;
}
@media (min-width: 720px) {
  .hero h1 { white-space: nowrap; }
}
.hero h1 .yellow {
  color: var(--brand-yellow);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 4px 4px 0 var(--ink);
  display: inline-block;
  padding: 0 4px;
}
.hero h1 .underline { display: inline-block; position: relative; }
.hero h1 .underline::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 4px;
  height: 14px;
  background: var(--brand-red);
  z-index: -1;
  transform: rotate(-1deg);
}

.hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 600;
  max-width: 580px;
  line-height: 1.35;
  margin: 0 0 18px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-sub);
  text-transform: uppercase;
  font-size: 16px;
  padding: 12px 18px;
  border: 4px solid var(--ink);
  border-radius: 12px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.1s, box-shadow 0.1s;
  cursor: pointer;
}
.btn:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.btn-zap { background: var(--brand-green); color: #fff; }
.btn-ghost { background: var(--paper); color: var(--ink); }
.btn svg { width: 22px; height: 22px; }

/* Centra todos os elementos da hero na dobra */
.hero-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-sub { margin-left: auto; margin-right: auto; }

.hero-strip {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 6px;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.hero-strip::-webkit-scrollbar { display: none; }
.hero-strip-item {
  background: var(--ink);
  color: var(--brand-yellow);
  padding: 8px 12px;
  border-radius: 8px;
  font-family: var(--ff-sub);
  font-size: 12px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.hero-strip-item .ic {
  width: 20px; height: 20px;
  background: var(--brand-yellow);
  color: var(--ink);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
@media (min-width: 880px) {
  .hero { padding: 24px 0 28px; }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
  }
}

.hero-mascot { display: none !important; }
.hero-mascot .stamps { position: absolute; inset: 0; pointer-events: none; }
.hero-mascot .croc { width: 100%; max-width: 380px; margin: 0 auto; filter: drop-shadow(8px 8px 0 var(--ink)); }
.hero-mascot .stamp-top { position: absolute; top: 6%; right: 4%; font-size: 14px; transform: rotate(calc(8deg * var(--tilt))); }
.hero-mascot .stamp-bot { position: absolute; bottom: 8%; left: -4%; background: var(--brand-yellow); color: var(--ink); font-size: 16px; transform: rotate(calc(-12deg * var(--tilt))); }

.hero-mobile-mascot { display: none; }

/* ====== HERO LOJAS (lojas dentro do hero) ====== */
.hero-lojas {
  margin: 4px 0 22px;
  width: 100%;
}
.hero-lojas-head {
  margin-bottom: 14px;
  text-align: center;
}
.hero-lojas-eyebrow {
  display: inline-block;
  background: var(--ink);
  color: var(--brand-yellow);
  font-family: var(--ff-sub);
  font-size: 13px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.hero .lojas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) {
  .hero .lojas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .hero .lojas-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ====== LOJAS ====== */
.lojas { background: var(--ink); color: var(--cream); padding: 36px 0 48px; border-bottom: 5px solid var(--brand-yellow); }
.lojas-head { display: flex; flex-direction: column; gap: 6px; margin-bottom: 22px; }
.lojas-head h2 { font-family: var(--ff-display); font-size: clamp(30px, 5vw, 48px); margin: 0; text-transform: uppercase; line-height: 1; color: var(--brand-yellow); }
.lojas-head p { margin: 0; font-size: 14px; font-weight: 500; color: #FFF4D6; opacity: 0.85; max-width: 540px; }
.lojas-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 640px) { .lojas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lojas-grid { grid-template-columns: repeat(4, 1fr); } }
.loja-card {
  background: var(--paper);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  box-shadow: 5px 5px 0 var(--brand-yellow);
  transition: transform 0.15s, box-shadow 0.15s;
}
.loja-card:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--brand-yellow); }
.loja-card .loja-name { font-family: var(--ff-display); font-size: 28px; line-height: 1; text-transform: uppercase; }
.loja-card .loja-addr { font-size: 13px; font-weight: 500; line-height: 1.35; color: var(--ink-soft); flex: 1; }
.loja-card .loja-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.loja-card .btn-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--ff-sub);
  font-size: 13px;
  text-transform: uppercase;
  padding: 10px 8px;
  border: 2.5px solid var(--ink);
  border-radius: 8px;
  transition: transform 0.1s;
}
.loja-card .btn-mini:active { transform: translate(1px, 1px); }
.loja-card .btn-mini.zap { background: var(--brand-green); color: #fff; }
.loja-card .btn-mini.map { background: var(--brand-yellow); color: var(--ink); }
.loja-card .btn-mini svg { width: 14px; height: 14px; }
.loja-card .loja-tag {
  position: absolute;
  top: -12px;
  right: 14px;
  background: var(--brand-red);
  color: #fff;
  font-family: var(--ff-sub);
  font-size: 11px;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  transform: rotate(calc(4deg * var(--tilt)));
}

/* ====== CATEGORIAS ====== */
.cats { background: var(--paper); padding: 64px 0; position: relative; border-bottom: 5px solid var(--ink); }
.section-eyebrow {
  display: inline-block;
  background: var(--ink);
  color: var(--brand-yellow);
  font-family: var(--ff-mono);
  font-size: 12px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-title { font-family: var(--ff-display); font-size: clamp(40px, 7.5vw, 84px); line-height: 0.95; margin: 0 0 16px; text-transform: uppercase; color: var(--ink); letter-spacing: -0.5px; }
.section-title .hl { background: var(--brand-yellow); padding: 0 8px; display: inline-block; transform: rotate(calc(-1deg * var(--tilt))); border: 3px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.section-sub { font-size: 16px; font-weight: 500; max-width: 600px; margin: 0 0 36px; }

.cats-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 720px) { .cats-grid { grid-template-columns: repeat(3, 1fr); } }

.cat-card {
  position: relative;
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 18px;
  padding: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  box-shadow: 7px 7px 0 var(--ink);
  transition: transform 0.15s, box-shadow 0.15s;
}
.cat-card:hover { transform: translate(-3px, -3px); box-shadow: 10px 10px 0 var(--ink); }
.cat-card[data-color="orange"] { background: var(--brand-orange); color: var(--ink); }
.cat-card[data-color="yellow"] { background: var(--brand-yellow); color: var(--ink); }
.cat-card[data-color="green"]  { background: var(--brand-green); color: var(--cream); }
.cat-card .cat-num { font-family: var(--ff-mono); font-size: 13px; opacity: 0.7; }
.cat-card h3 { font-family: var(--ff-display); font-size: 38px; line-height: 0.95; margin: 6px 0 12px; text-transform: uppercase; }
.cat-card p { font-size: 15px; font-weight: 500; line-height: 1.4; margin: 0 0 18px; flex: 1; }
.cat-card ul { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.cat-card ul li {
  font-family: var(--ff-sub);
  font-size: 12px;
  text-transform: uppercase;
  background: rgba(0,0,0,0.12);
  padding: 5px 10px;
  border-radius: 99px;
  border: 1.5px solid currentColor;
}
.cat-card .cat-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-sub);
  text-transform: uppercase;
  font-size: 14px;
  align-self: flex-start;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--brand-yellow);
  border-radius: 8px;
  border: 2.5px solid var(--ink);
}
.cat-card[data-color="green"] .cat-cta { background: var(--brand-yellow); color: var(--ink); }
.cat-card .cat-img-slot {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 160px;
  height: 160px;
  background: rgba(0,0,0,0.08);
  border-radius: 50%;
  border: 3px dashed rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: 11px;
  text-align: center;
  padding: 8px;
  color: rgba(0,0,0,0.55);
  pointer-events: none;
  overflow: hidden;
}
.cat-card .cat-img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 0;
}
/* For the orange peças card with real image — show it bigger and lose the dashed circle */
.cat-card[data-color="orange"] .cat-img-slot:has(img),
.cat-card[data-color="yellow"] .cat-img-slot:has(img),
.cat-card[data-color="green"] .cat-img-slot:has(img) {
  right: -40px;
  bottom: -40px;
  width: 220px;
  height: 220px;
  background: transparent;
  border: 0;
  filter: drop-shadow(4px 8px 0 rgba(0,0,0,0.18));
}
.cat-card .cat-img-slot:has(img) img {
  border-radius: 50%;
}

/* ====== BENEFICIOS ====== */
.beneficios { background: var(--c-primary); padding: 56px 0; border-bottom: 5px solid var(--ink); position: relative; overflow: hidden; }
/* Quando benefícios é seguido direto pelo CTA final (ambos laranja), remove o border preto pra fluir como uma seção só */
.beneficios + .enderecos { border-top: 0; padding-top: 12px; }
.beneficios:has(+ .enderecos) { border-bottom: 0; padding-bottom: 24px; }
.beneficios .selos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 8px; }
@media (min-width: 720px) { .beneficios .selos { grid-template-columns: repeat(4, 1fr); } }
.selo { background: var(--paper); border: 3px solid var(--ink); border-radius: 14px; padding: 16px; text-align: left; position: relative; box-shadow: 4px 4px 0 var(--ink); }
.selo .selo-ic { width: 44px; height: 44px; background: var(--brand-yellow); border: 2.5px solid var(--ink); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 10px; }
.selo h4 { font-family: var(--ff-display); font-size: 22px; line-height: 1; margin: 0 0 4px; text-transform: uppercase; }
.selo p { font-size: 13px; font-weight: 500; line-height: 1.3; margin: 0; color: var(--ink-soft); }

/* ====== MARCAS ====== */
.marcas { background: var(--paper); padding: 56px 0; border-bottom: 5px solid var(--ink); }
.marcas-strip { margin-top: 24px; background: #fff; border: 3px solid var(--ink); border-radius: 16px; padding: 22px; box-shadow: 6px 6px 0 var(--ink); position: relative; }
.marcas-strip::before {
  content: "MARCAS DE CONFIANÇA";
  position: absolute;
  top: -14px;
  left: 22px;
  background: var(--brand-red);
  color: #fff;
  font-family: var(--ff-sub);
  font-size: 12px;
  padding: 4px 10px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  letter-spacing: 1px;
}
.marcas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; align-items: center; }
@media (min-width: 520px) { .marcas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 760px) { .marcas-grid { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1000px) { .marcas-grid { grid-template-columns: repeat(7, 1fr); } }
.marca-cell { height: 64px; display: flex; align-items: center; justify-content: center; font-family: var(--ff-sub); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink); background: var(--paper); border-radius: 6px; padding: 8px; border: 1.5px dashed rgba(0,0,0,0.25); }
.marca-cell img { max-height: 40px; width: auto; object-fit: contain; filter: grayscale(15%); }

/* ====== GALERIA ====== */
.galeria { background: var(--ink); padding: 56px 0; color: var(--cream); border-bottom: 5px solid var(--brand-yellow); }
.galeria .section-title { color: var(--cream); }
.galeria .section-title .hl { color: var(--ink); }
.galeria .section-sub { color: rgba(255,244,214,0.85); }
.galeria-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; gap: 10px; margin-top: 28px; }
@media (min-width: 720px) { .galeria-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; } }
.galeria-slot { border-radius: 14px; overflow: hidden; border: 3px solid var(--cream); }
.galeria-slot:nth-child(1) { grid-column: span 2; }
@media (min-width: 720px) {
  .galeria-slot:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .galeria-slot:nth-child(6) { grid-column: span 2; }
}
image-slot { --is-bg: rgba(255, 244, 214, 0.05); --is-border-color: transparent; --is-text-color: rgba(255,244,214,0.6); }

/* ====== ENDERECOS ====== */
.enderecos { background: var(--c-primary); padding: 56px 0; border-bottom: 5px solid var(--ink); }
.enderecos-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 720px) { .enderecos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .enderecos-grid { grid-template-columns: repeat(4, 1fr); } }
.endereco-card { background: var(--paper); border: 3px solid var(--ink); border-radius: 14px; padding: 18px; box-shadow: 5px 5px 0 var(--ink); }
.endereco-card .badge-num { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: var(--brand-red); color: #fff; font-family: var(--ff-display); font-size: 18px; border-radius: 50%; border: 2px solid var(--ink); margin-bottom: 8px; }
.endereco-card h4 { font-family: var(--ff-display); font-size: 26px; margin: 0 0 8px; text-transform: uppercase; line-height: 1; }
.endereco-card .end-row { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; font-weight: 500; line-height: 1.35; margin-bottom: 6px; }
.endereco-card .end-row svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--brand-red); }
.endereco-card .horario { margin-top: 10px; padding-top: 10px; border-top: 2px dashed rgba(0,0,0,0.18); font-family: var(--ff-mono); font-size: 12px; }
.endereco-card .horario strong { font-family: var(--ff-sub); font-size: 11px; letter-spacing: 1px; }

/* ====== FOOTER ====== */
.site-footer { background: var(--ink); color: var(--cream); padding: 36px 0 80px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand .brand-words { color: var(--brand-yellow); }
.footer-brand p { font-size: 14px; line-height: 1.5; opacity: 0.8; margin: 12px 0 0; max-width: 360px; }
.footer-col h5 { font-family: var(--ff-sub); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin: 0 0 12px; color: var(--brand-yellow); }
.footer-col a { display: flex; align-items: center; gap: 8px; font-size: 14px; padding: 6px 0; opacity: 0.85; }
.footer-col a:hover { opacity: 1; color: var(--brand-yellow); }
.legal { margin-top: 36px; padding-top: 18px; border-top: 1px dashed rgba(255,244,214,0.2); font-size: 12px; opacity: 0.6; font-family: var(--ff-mono); }

/* ====== FLOATING ZAP ====== */
.float-zap { position: fixed; right: 16px; bottom: 16px; width: 60px; height: 60px; background: var(--brand-green); border: 3px solid var(--ink); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 4px 4px 0 var(--ink); z-index: 40; transition: transform 0.15s; }
.float-zap:hover { transform: scale(1.06); }
.float-zap svg { width: 30px; height: 30px; color: #fff; }
.float-zap .pulse { position: absolute; inset: -3px; border-radius: 50%; border: 3px solid var(--brand-green); animation: pulse 1.8s ease-out infinite; pointer-events: none; }
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.7); opacity: 0; } }

/* ====== MODAL ====== */
.modal-overlay { position: fixed; inset: 0; background: rgba(26, 20, 15, 0.75); display: none; align-items: center; justify-content: center; z-index: 100; padding: 16px; backdrop-filter: blur(4px); }
.modal-overlay.open { display: flex; }
.modal-card { background: var(--paper); border: 4px solid var(--ink); border-radius: 18px; padding: 24px; max-width: 520px; width: 100%; box-shadow: 8px 8px 0 var(--brand-yellow); position: relative; }
.modal-card .close { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; border-radius: 50%; background: var(--ink); color: var(--brand-yellow); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.modal-card h3 { font-family: var(--ff-display); font-size: 28px; margin: 0 0 8px; text-transform: uppercase; }
.modal-card p { font-size: 14px; margin: 0 0 18px; font-weight: 500; }
.modal-list { display: grid; gap: 10px; }
.modal-list a { display: flex; align-items: center; gap: 12px; padding: 14px; background: var(--brand-green); color: #fff; border: 3px solid var(--ink); border-radius: 12px; font-family: var(--ff-sub); text-transform: uppercase; transition: transform 0.1s; }
.modal-list a:active { transform: translate(2px, 2px); }
.modal-list a .city { font-size: 18px; flex: 1; }
.modal-list a .num { font-family: var(--ff-mono); font-size: 12px; opacity: 0.85; text-transform: none; }
.modal-list a svg { width: 22px; height: 22px; flex-shrink: 0; }

/* Tweaks adjustments */
body[data-loud="0"] .stamp,
body[data-loud="0"] .section-title .hl,
body[data-loud="0"] .loja-tag,
body[data-loud="0"] .stamp-top,
body[data-loud="0"] .stamp-bot { transform: rotate(0) !important; }
body[data-loud="0"] .hero::before,
body[data-loud="0"] .hero::after { opacity: 0.08; }
body[data-loud="0"] .marquee { display: none; }

/* =========================================================
   MOBILE OPTIMIZATIONS — UX/UI tuning for phones
   ========================================================= */

@media (max-width: 879px) {
  /* ---- Body, ensure floating zap doesn't block content ---- */
  body { padding-bottom: 76px; }

  /* ---- Ticker: smaller, faster ---- */
  .marquee {
    font-size: 11px;
    padding: 7px 0;
    letter-spacing: 0.3px;
  }
  .marquee-track { gap: 28px; padding-right: 28px; }

  /* ---- Header: tighter ---- */
  .site-header .wrap {
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 10px;
  }
  .brand-mark {
    width: 44px;
    height: 44px;
    font-size: 18px;
    border-radius: 10px;
    border-width: 2.5px;
  }
  .brand-words { font-size: 18px; }
  .brand-tag {
    font-size: 9px;
    letter-spacing: 1.2px;
    margin-top: 3px;
  }
  .header-cta {
    font-size: 12px;
    padding: 10px 12px;
    border-width: 2.5px;
    box-shadow: 2px 2px 0 var(--ink);
  }
  .header-cta svg { width: 16px; height: 16px; }

  /* ---- Brand carousel: compact ---- */
  .brand-carousel { padding: 9px 0; }
  .brand-carousel-track {
    gap: 32px;
    padding-right: 32px;
    animation-duration: 12s;
  }
  .brand-carousel-track img { height: 26px; }
  .brand-carousel-track .brand-fallback {
    font-size: 13px;
    letter-spacing: 1px;
  }

  /* ---- Hero: foto + mapa side by side em vez de stacked (economiza vertical) ---- */
  .hero-store { padding: 14px 0 20px; }
  .hero-store-grid { gap: 12px; }
  .hero-store-left {
    flex-direction: row;
    gap: 10px;
  }
  .hero-store-photo,
  .hero-store-map {
    height: 150px;
    flex: 1;
    min-width: 0;
    border-width: 3px;
    box-shadow: 4px 4px 0 var(--ink);
    border-radius: 12px;
  }
  .hero-store-photo .photo-overlay {
    font-size: 9px;
    padding: 3px 7px;
    top: 8px;
    left: 8px;
    letter-spacing: 0.8px;
    border-width: 1.5px;
  }
  .hero-store-map .map-overlay {
    font-size: 9px;
    padding: 5px 8px;
    bottom: 8px;
    left: 8px;
    border-width: 1.5px;
    letter-spacing: 0.3px;
  }
  .hero-store-map .map-overlay svg { width: 11px; height: 11px; }
  .hero-store-map .map-route-btn {
    font-size: 10px;
    padding: 6px 10px;
    top: 8px;
    right: 8px;
    border-width: 2px;
    box-shadow: 2px 2px 0 var(--ink);
    letter-spacing: 0.3px;
  }
  .hero-store-map .map-route-btn svg { width: 12px; height: 12px; }
  .hero-store-map .map-pin { width: 44px; height: 44px; }
  .hero-store-map .map-pin::after { inset: 9px; }
  .hero-store-map .map-fallback {
    font-size: 10px;
    padding: 14px;
    gap: 6px;
    letter-spacing: 1px;
  }

  /* ---- Data card mobile ---- */
  .hero-store-data {
    padding: 16px 16px 16px;
    gap: 10px;
    border-width: 3px;
    border-radius: 14px;
    box-shadow: 4px 4px 0 var(--ink);
  }
  .store-tag-row { gap: 5px; }
  .store-tag-matriz,
  .store-tag-aberto {
    font-size: 10px;
    padding: 4px 8px;
    letter-spacing: 0.8px;
  }
  .store-name {
    font-size: 38px;
    letter-spacing: -0.5px;
    line-height: 0.95;
  }
  .store-name .marca {
    font-size: 14px;
    margin-bottom: 3px;
    letter-spacing: 1px;
  }
  .store-addr {
    font-size: 13px;
    padding: 10px 0;
    gap: 8px;
    line-height: 1.3;
  }
  .store-addr strong { font-size: 14px; }
  .store-addr svg { width: 16px; height: 16px; }
  .store-meta-grid { gap: 6px; }
  .store-meta { padding: 7px 10px; border-radius: 8px; }
  .store-meta .lbl { font-size: 9px; letter-spacing: 1.2px; }
  .store-meta .val { font-size: 13px; }

  /* CTA stacks number below on mobile */
  .store-cta {
    font-size: 17px;
    padding: 14px 16px;
    border-radius: 12px;
    border-width: 3px;
    box-shadow: 5px 5px 0 var(--ink);
    flex-wrap: wrap;
    gap: 6px;
  }
  .store-cta svg { width: 22px; height: 22px; }
  .store-cta .num {
    border-left: 0;
    padding-left: 0;
    font-size: 10px;
    width: 100%;
    text-align: center;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
  .store-cta-secondary {
    font-size: 11px;
    padding: 10px 14px;
    border-width: 2.5px;
  }
  .store-cta-secondary svg { width: 14px; height: 14px; }

  /* ---- Diferenciais: rolagem horizontal em mobile ---- */
  .diferenciais {
    padding: 12px 0;
    border-bottom-width: 3px;
  }
  .diferenciais-track {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 6px;
    padding: 0 18px;
    margin: 0 -18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .diferenciais-track::-webkit-scrollbar { display: none; }
  .dif-pill {
    font-size: 10px;
    padding: 6px 10px 6px 8px;
    flex-shrink: 0;
    white-space: nowrap;
    letter-spacing: 0.3px;
    gap: 6px;
    border-width: 1.5px;
  }
  .dif-pill .ic { width: 20px; height: 20px; }
  .dif-pill .ic svg { width: 11px; height: 11px; }

  /* ---- Categorias mobile ---- */
  .cats { padding: 42px 0; border-bottom-width: 3px; }
  .section-eyebrow {
    font-size: 11px;
    padding: 5px 10px;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
  }
  .section-title {
    font-size: clamp(30px, 9vw, 44px);
    line-height: 0.95;
    margin-bottom: 12px;
  }
  .section-title .hl {
    box-shadow: 3px 3px 0 var(--ink);
    border-width: 2px;
  }
  .section-sub {
    font-size: 14.5px;
    line-height: 1.4;
    margin-bottom: 24px;
  }
  .cats-grid { gap: 14px; }
  .cat-card {
    min-height: auto;
    padding: 22px 20px 22px;
    border-width: 3px;
    border-radius: 14px;
    box-shadow: 5px 5px 0 var(--ink);
  }
  .cat-card h3 { font-size: 30px; margin: 6px 0 10px; }
  .cat-card p { font-size: 14px; margin-bottom: 14px; line-height: 1.4; }
  .cat-card ul li { font-size: 11px; padding: 4px 8px; }
  .cat-card .cat-cta {
    font-size: 13px;
    padding: 11px 14px;
    border-radius: 8px;
  }
  .cat-card .cat-img-slot { display: none; }

  /* ---- Beneficios ---- */
  .beneficios {
    padding: 42px 0 28px;
    border-bottom-width: 3px;
  }
  .beneficios .selos { gap: 10px; }
  .selo {
    padding: 14px;
    border-width: 2.5px;
    border-radius: 12px;
    box-shadow: 3px 3px 0 var(--ink);
  }
  .selo .selo-ic {
    width: 36px;
    height: 36px;
    font-size: 18px;
    margin-bottom: 8px;
  }
  .selo h4 { font-size: 17px; line-height: 0.95; }
  .selo p { font-size: 12px; line-height: 1.35; }

  /* ---- CTA Final ---- */
  .enderecos {
    padding: 30px 0 50px;
    border-bottom-width: 3px;
  }
  .enderecos .section-title {
    font-size: clamp(36px, 11vw, 56px);
  }

  /* ---- Footer ---- */
  .site-footer { padding: 36px 0 110px; }
  .footer-grid { gap: 24px; }
  .footer-brand .brand-mark { width: 44px; height: 44px; font-size: 18px; }
  .legal { font-size: 10px; gap: 4px; }

  /* ---- Floating zap ---- */
  .float-zap {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    border-width: 2.5px;
    box-shadow: 3px 3px 0 var(--ink);
  }
  .float-zap svg { width: 26px; height: 26px; }

  /* ---- Map modal mobile ---- */
  .map-modal-card {
    border-width: 3px;
    border-radius: 14px;
    box-shadow: 5px 5px 0 var(--brand-yellow);
  }
  .map-modal-head { padding: 16px 18px; }
  .map-modal-head h3 { font-size: 22px; }
  .map-modal-head .close { width: 28px; height: 28px; }
  .map-modal-body { padding: 18px; }
  .map-modal-body p { font-size: 13px; margin-bottom: 14px; }
  .map-opt {
    padding: 12px 14px;
    border-width: 2.5px;
    box-shadow: 3px 3px 0 var(--ink);
  }
  .map-opt .opt-logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  .map-opt .opt-logo svg { width: 22px; height: 22px; }
  .map-opt .opt-name { font-size: 18px; }
  .map-opt .opt-desc { font-size: 10px; }
}

/* ---- Phones really small (≤ 380px) ---- */
@media (max-width: 380px) {
  .brand-words { font-size: 16px; }
  .brand-tag { font-size: 8px; }
  .header-cta { font-size: 11px; padding: 9px 10px; }
  .header-cta .label-long { display: none; }
  .header-cta .label-short { display: inline; }

  .hero-store-left { flex-direction: column; gap: 10px; }
  .hero-store-photo, .hero-store-map { height: 170px; flex: none; }

  .store-name { font-size: 32px; }
  .store-meta .val { font-size: 12px; }
  .store-cta { font-size: 15px; padding: 12px 14px; }

  .section-title { font-size: clamp(26px, 10vw, 38px); }
  .cat-card h3 { font-size: 26px; }
}

/* ---- Tablets / mid (720–880) ---- */
@media (min-width: 600px) and (max-width: 879px) {
  .hero-store-photo, .hero-store-map { height: 180px; }
  .store-name { font-size: 44px; }
  .hero-store-data { padding: 20px; }
}

/* =========================================================
   PÁGINA DE LOJA INDIVIDUAL (Ibirité, Betim, etc)
   ========================================================= */

.hero-store {
  position: relative;
  background: var(--c-primary);
  color: var(--ink);
  padding: 16px 0 20px;
  overflow: hidden;
  border-bottom: 5px solid var(--ink);
}

.hero-store-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
}
@media (min-width: 880px) {
  .hero-store { padding: 18px 0 22px; }
  .hero-store-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}

/* Left column: foto fachada (em cima) + mapa (embaixo) */
.hero-store-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Foto fachada */
.hero-store-photo {
  position: relative;
  background: var(--ink);
  border: 4px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
  box-shadow: 6px 6px 0 var(--ink);
}
@media (min-width: 880px) {
  .hero-store-photo { height: 220px; }
}
.hero-store-photo image-slot {
  --is-bg: #1a140f;
  --is-border-color: transparent;
  --is-text-color: rgba(255,244,214,0.6);
  width: 100%;
  height: 100%;
  display: block;
}
.hero-store-photo .fachada-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-store-photo .photo-overlay {
  position: absolute;
  left: 12px;
  top: 12px;
  background: var(--brand-yellow);
  color: var(--ink);
  font-family: var(--ff-sub);
  font-size: 11px;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  letter-spacing: 1px;
  z-index: 5;
}

/* Map block */
.hero-store-map {
  position: relative;
  background: var(--ink);
  border: 4px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
  box-shadow: 6px 6px 0 var(--ink);
  flex-shrink: 0;
}
@media (min-width: 880px) {
  .hero-store-map { height: 220px; }
}
.hero-store-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.hero-store-map .map-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 60%),
    repeating-linear-gradient(45deg, rgba(255,196,33,0.06) 0 18px, transparent 18px 36px),
    radial-gradient(circle at 35% 50%, rgba(255,196,33,0.18) 0 80px, transparent 100px),
    radial-gradient(circle at 70% 65%, rgba(214,40,40,0.16) 0 60px, transparent 100px),
    var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 24px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero-store-map .map-pin {
  width: 64px;
  height: 64px;
  background: var(--brand-red);
  border: 4px solid var(--cream);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.hero-store-map .map-pin::after {
  content: "";
  position: absolute;
  inset: 12px;
  background: var(--cream);
  border-radius: 50%;
}
.hero-store-map .map-overlay {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--ff-sub);
  font-size: 12px;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 2.5px solid var(--ink);
  border-radius: 8px;
  letter-spacing: 0.5px;
  box-shadow: 3px 3px 0 var(--ink);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-store-map .map-overlay svg { width: 14px; height: 14px; }
.hero-store-map .map-route-btn {
  position: absolute;
  right: 14px;
  top: 14px;
  background: var(--brand-green);
  color: #fff;
  font-family: var(--ff-sub);
  font-size: 13px;
  text-transform: uppercase;
  padding: 10px 14px;
  border: 3px solid var(--ink);
  border-radius: 10px;
  letter-spacing: 0.5px;
  box-shadow: 4px 4px 0 var(--ink);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.12s, box-shadow 0.12s;
}
.hero-store-map .map-route-btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.hero-store-map .map-route-btn svg { width: 16px; height: 16px; }

/* Data column (right) */
.hero-store-data {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 16px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 6px 6px 0 var(--ink);
}
@media (min-width: 880px) {
  .hero-store-data { padding: 22px 22px 20px; gap: 12px; }
}

.store-tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 0;
}
.store-tag-matriz {
  display: inline-flex;
  align-items: center;
  background: var(--brand-red);
  color: #fff;
  font-family: var(--ff-sub);
  font-size: 11px;
  text-transform: uppercase;
  padding: 4px 9px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  letter-spacing: 1px;
  transform: rotate(calc(-2deg * var(--tilt)));
}
.store-tag-aberto {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--ink);
  color: var(--brand-yellow);
  font-family: var(--ff-sub);
  font-size: 10px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  letter-spacing: 1px;
}
.store-tag-aberto .dot {
  width: 8px; height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}

.store-name {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 0.92;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.store-name .lugar {
  display: block;
  color: var(--brand-red);
  -webkit-text-stroke: 0;
}
.store-name .marca {
  display: block;
  font-size: 0.4em;
  color: var(--ink);
  opacity: 0.85;
  letter-spacing: 2px;
  font-family: var(--ff-sub);
  margin-bottom: 4px;
}

.store-addr {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink-soft);
  padding: 10px 0;
  border-top: 2px dashed rgba(0,0,0,0.15);
  border-bottom: 2px dashed rgba(0,0,0,0.15);
}
.store-addr svg { width: 16px; height: 16px; color: var(--brand-red); flex-shrink: 0; margin-top: 2px; }
.store-addr strong { display: block; font-family: var(--ff-sub); font-size: 14px; letter-spacing: 0.3px; }

.store-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.store-meta {
  background: rgba(0,0,0,0.05);
  border-radius: 8px;
  padding: 7px 10px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.store-meta .lbl {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: 0.65;
}
.store-meta .val {
  font-family: var(--ff-sub);
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: 0.3px;
}

.store-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--brand-green);
  color: #fff;
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: 18px;
  padding: 12px 18px;
  border: 4px solid var(--ink);
  border-radius: 12px;
  box-shadow: 5px 5px 0 var(--ink);
  margin-top: 2px;
  transition: transform 0.12s, box-shadow 0.12s;
  letter-spacing: 0.5px;
}
.store-cta:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.store-cta:hover { background: #1A5F37; }
.store-cta svg { width: 22px; height: 22px; }
.store-cta .num {
  font-family: var(--ff-mono);
  font-size: 11px;
  opacity: 0.85;
  font-weight: 400;
  border-left: 2px solid rgba(255,255,255,0.35);
  padding-left: 10px;
}

.store-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ink);
  color: var(--brand-yellow);
  font-family: var(--ff-sub);
  text-transform: uppercase;
  font-size: 12px;
  padding: 9px 14px;
  border: 3px solid var(--ink);
  border-radius: 10px;
  letter-spacing: 0.5px;
  transition: transform 0.12s;
  align-self: stretch;
}
.store-cta-secondary:active { transform: translate(2px, 2px); }
.store-cta-secondary svg { width: 16px; height: 16px; }

/* ====== MAP MODAL (Waze vs Google Maps) ====== */
.map-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 20, 15, 0.78);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 110;
  padding: 16px;
  backdrop-filter: blur(4px);
}
.map-modal-overlay.open { display: flex; }
.map-modal-card {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 18px;
  max-width: 440px;
  width: 100%;
  box-shadow: 8px 8px 0 var(--brand-yellow);
  position: relative;
  overflow: hidden;
}
.map-modal-head {
  background: var(--ink);
  color: var(--brand-yellow);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.map-modal-head h3 {
  font-family: var(--ff-display);
  font-size: 28px;
  margin: 0;
  text-transform: uppercase;
  color: var(--brand-yellow);
  letter-spacing: -0.3px;
  font-weight: 900;
  line-height: 1;
}
.map-modal-head .close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  color: var(--brand-yellow);
  border: 2px solid var(--brand-yellow);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-modal-body {
  padding: 20px 22px 22px;
}
.map-modal-body p {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink-soft);
}
.map-modal-options {
  display: grid;
  gap: 10px;
}
.map-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.12s, box-shadow 0.12s, background 0.15s;
  box-shadow: 4px 4px 0 var(--ink);
}
.map-opt:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.map-opt:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}
.map-opt .opt-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--ff-display);
  font-weight: 900;
  color: #fff;
}
.map-opt.waze .opt-logo {
  background: #33CCFF;
  color: #fff;
}
.map-opt.gmaps .opt-logo {
  background: #fff;
  border: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.map-opt .opt-logo svg { width: 26px; height: 26px; }
.map-opt .opt-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.map-opt .opt-name {
  font-family: var(--ff-display);
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
  font-weight: 900;
}
.map-opt .opt-desc {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--ink-soft);
  opacity: 0.75;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.map-opt .opt-arrow {
  color: var(--brand-red);
  flex-shrink: 0;
}
.map-opt .opt-arrow svg { width: 22px; height: 22px; }
.map-modal-foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px dashed rgba(0,0,0,0.15);
  font-family: var(--ff-mono);
  font-size: 11px;
  text-align: center;
  color: var(--ink-soft);
  opacity: 0.7;
  letter-spacing: 1px;
}

/* Cursor pointer on map area to hint click */
.hero-store-map { cursor: pointer; }
.hero-store-map:hover .map-overlay { transform: translateY(-2px); transition: transform 0.15s; }
.diferenciais {
  background: var(--ink);
  color: var(--cream);
  padding: 14px 0;
  border-bottom: 5px solid var(--brand-yellow);
}
.diferenciais-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.dif-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2a2018;
  color: var(--cream);
  font-family: var(--ff-sub);
  font-size: 11px;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  border: 2px solid #3a2e22;
  letter-spacing: 0.5px;
}
.dif-pill .ic {
  width: 22px;
  height: 22px;
  background: var(--brand-yellow);
  color: var(--ink);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dif-pill .ic svg { width: 12px; height: 12px; }
.dif-pill.highlight {
  background: var(--c-primary);
  color: var(--ink);
  border-color: var(--brand-yellow);
}
.dif-pill.highlight .ic { background: var(--ink); color: var(--brand-yellow); }

/* ====== BRAND CAROUSEL (sob header) ====== */
.brand-carousel {
  background: var(--c-primary);
  border-bottom: 5px solid var(--ink);
  padding: 12px 0;
  position: relative;
  overflow: hidden;
}
.brand-carousel::before,
.brand-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.brand-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--c-primary) 20%, transparent 100%);
}
.brand-carousel::after {
  right: 0;
  background: linear-gradient(-90deg, var(--c-primary) 20%, transparent 100%);
}
.brand-carousel-track {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  animation: brandScroll 8s linear infinite;
  padding-right: 56px;
  white-space: nowrap;
}
.brand-carousel-track:hover { animation-play-state: paused; }
.brand-carousel-track img {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) contrast(1.05);
  opacity: 0.92;
  transition: opacity 0.2s, filter 0.2s;
  flex-shrink: 0;
}
.brand-carousel-track img:hover {
  filter: none;
  opacity: 1;
}
.brand-carousel-track .brand-fallback {
  font-family: var(--ff-sub);
  font-size: 16px;
  letter-spacing: 1.5px;
  color: var(--ink);
  text-transform: uppercase;
  opacity: 0.85;
  flex-shrink: 0;
}
@keyframes brandScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* =========================================================
   MOBILE RESPONSIVE PASS — Pramotos Ibirité
   Designed for 320px → 720px viewports
   ========================================================= */

/* ===== Universal mobile (≤ 720px) ===== */
@media (max-width: 720px) {

  /* Compact ticker */
  .marquee {
    font-size: 11px;
    padding: 7px 0;
    letter-spacing: 0.3px;
  }
  .marquee-track { gap: 22px; }
  .marquee-track span::after { font-size: 9px; }

  /* Header — tighter */
  .site-header .wrap {
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 10px;
  }
  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border-width: 2.5px;
    font-size: 18px;
  }
  .brand-mark img { width: 38px; height: 38px; }
  .brand-words {
    font-size: 18px;
    line-height: 0.95;
  }
  .brand-tag {
    font-size: 9px;
    letter-spacing: 1px;
    margin-top: 3px;
  }
  .header-cta {
    padding: 9px 12px;
    font-size: 12px;
    border-width: 2.5px;
    box-shadow: 2px 2px 0 var(--ink);
    border-radius: 8px;
    gap: 6px;
  }
  .header-cta svg { width: 16px; height: 16px; }

  /* Brand carousel — slower & smaller */
  .brand-carousel {
    padding: 10px 0;
    border-bottom-width: 4px;
  }
  .brand-carousel-track {
    gap: 38px;
    padding-right: 38px;
    animation-duration: 14s;
  }
  .brand-carousel-track img { height: 26px; }
  .brand-carousel-track .brand-fallback {
    font-size: 13px;
    letter-spacing: 1px;
  }

  /* Hero store: stack column-wise with breath */
  .hero-store {
    padding: 16px 0 20px;
  }
  .hero-store-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-store-left { gap: 12px; }
  .hero-store-photo {
    height: 180px;
    border-width: 3px;
    border-radius: 14px;
    box-shadow: 4px 4px 0 var(--ink);
  }
  .hero-store-photo .photo-overlay {
    font-size: 10px;
    padding: 4px 8px;
    border-width: 1.5px;
  }
  .hero-store-map {
    height: 180px;
    border-width: 3px;
    border-radius: 14px;
    box-shadow: 4px 4px 0 var(--ink);
  }
  .hero-store-map .map-overlay {
    font-size: 11px;
    padding: 6px 10px;
    border-width: 2px;
    box-shadow: 2px 2px 0 var(--ink);
  }
  .hero-store-map .map-overlay svg { width: 12px; height: 12px; }
  .hero-store-map .map-route-btn {
    font-size: 11px;
    padding: 7px 10px;
    border-width: 2.5px;
    box-shadow: 3px 3px 0 var(--ink);
    border-radius: 8px;
    right: 10px;
    top: 10px;
  }
  .hero-store-map .map-route-btn svg { width: 13px; height: 13px; }
  .hero-store-data {
    padding: 16px 16px 14px;
    border-width: 3px;
    border-radius: 14px;
    box-shadow: 4px 4px 0 var(--ink);
    gap: 10px;
  }

  /* Store-name lockup — adjust hierarchy on mobile */
  .store-name {
    font-size: 36px;
  }
  .store-name .marca {
    font-size: 0.4em;
    margin-bottom: 1px;
  }

  /* Address row tighter */
  .store-addr {
    padding: 8px 0;
    font-size: 12.5px;
  }
  .store-addr svg { width: 15px; height: 15px; }
  .store-addr strong { font-size: 13.5px; }

  /* Meta grid: 2 col stays, smaller */
  .store-meta {
    padding: 7px 9px;
    border-radius: 7px;
  }
  .store-meta .lbl { font-size: 9px; letter-spacing: 1.1px; }
  .store-meta .val { font-size: 12.5px; }

  /* Main CTA gigante */
  .store-cta {
    font-size: 15px;
    padding: 13px 14px;
    border-width: 3px;
    box-shadow: 4px 4px 0 var(--ink);
    border-radius: 11px;
    gap: 8px;
    min-height: 50px; /* touch target */
  }
  .store-cta svg { width: 20px; height: 20px; }
  .store-cta .num {
    font-size: 10px;
    padding-left: 8px;
    border-left-width: 1.5px;
  }
  .store-cta-secondary {
    font-size: 11px;
    padding: 10px 12px;
    border-width: 2.5px;
    min-height: 42px;
  }

  /* Tag row — keep compact */
  .store-tag-matriz {
    font-size: 10px;
    padding: 3px 8px;
    letter-spacing: 0.8px;
  }
  .store-tag-aberto {
    font-size: 9.5px;
    padding: 3px 8px;
    letter-spacing: 0.8px;
  }
  .store-tag-aberto .dot { width: 7px; height: 7px; }

  /* Diferenciais strip — wraps automatically */
  .diferenciais {
    padding: 14px 0;
    border-bottom-width: 4px;
  }
  .diferenciais-track {
    gap: 6px;
    justify-content: flex-start;
    padding-bottom: 2px;
  }
  .dif-pill {
    font-size: 10px;
    padding: 6px 10px 6px 6px;
    gap: 6px;
    border-width: 1.5px;
  }
  .dif-pill .ic {
    width: 20px;
    height: 20px;
  }
  .dif-pill .ic svg { width: 11px; height: 11px; }

  /* Sections — global tighter */
  .cats { padding: 40px 0; border-bottom-width: 4px; }
  .beneficios { padding: 36px 0; }
  .enderecos { padding: 36px 0 48px; border-bottom-width: 4px; }
  .site-footer { padding: 32px 0 96px; }

  .section-eyebrow {
    font-size: 11px;
    padding: 5px 10px;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
  }
  .section-title {
    font-size: 32px;
    line-height: 0.95;
    margin-bottom: 12px;
  }
  .section-title .hl {
    border-width: 2.5px;
    box-shadow: 3px 3px 0 var(--ink);
    padding: 0 6px;
  }
  .section-sub {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 24px;
  }

  /* Cards de categorias */
  .cats-grid { gap: 14px; }
  .cat-card {
    min-height: 280px;
    padding: 20px;
    border-width: 3px;
    border-radius: 14px;
    box-shadow: 5px 5px 0 var(--ink);
  }
  .cat-card .cat-num { font-size: 12px; }
  .cat-card h3 {
    font-size: 32px;
    margin: 4px 0 10px;
  }
  .cat-card p {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .cat-card ul {
    gap: 5px;
    margin-bottom: 16px;
  }
  .cat-card ul li {
    font-size: 11px;
    padding: 4px 9px;
  }
  .cat-card .cat-cta {
    font-size: 13px;
    padding: 9px 13px;
    border-width: 2px;
    min-height: 40px;
  }
  .cat-card .cat-img-slot {
    width: 130px;
    height: 130px;
    right: -22px;
    bottom: -22px;
    font-size: 10px;
  }
  .cat-card[data-color="orange"] .cat-img-slot:has(img),
  .cat-card[data-color="yellow"] .cat-img-slot:has(img),
  .cat-card[data-color="green"] .cat-img-slot:has(img) {
    width: 180px;
    height: 180px;
    right: -30px;
    bottom: -30px;
  }

  /* Selos / benefícios */
  .beneficios .selos { gap: 10px; }
  .selo {
    padding: 14px;
    border-width: 2.5px;
    border-radius: 12px;
    box-shadow: 3px 3px 0 var(--ink);
  }
  .selo .selo-ic {
    width: 36px;
    height: 36px;
    font-size: 18px;
    margin-bottom: 8px;
    border-width: 2px;
  }
  .selo h4 { font-size: 18px; }
  .selo p { font-size: 12px; }

  /* CTA final */
  .enderecos .section-title { font-size: 36px; }
  .enderecos + .site-footer { padding-top: 40px; }

  /* Footer */
  .footer-grid { gap: 22px; }
  .footer-brand p { font-size: 13px; }
  .footer-col h5 { font-size: 11px; margin-bottom: 10px; }
  .footer-col a {
    font-size: 13px;
    padding: 7px 0;
    min-height: 36px;
  }
  .legal {
    font-size: 10px;
    margin-top: 24px;
  }

  /* Float zap — bigger touch, slight offset to clear footer text */
  .float-zap {
    width: 56px;
    height: 56px;
    right: 14px;
    bottom: 14px;
    border-width: 2.5px;
    box-shadow: 3px 3px 0 var(--ink);
  }
  .float-zap svg { width: 26px; height: 26px; }

  /* Map modal */
  .map-modal-overlay { padding: 12px; align-items: flex-end; }
  .map-modal-card {
    border-width: 3px;
    border-radius: 16px 16px 16px 16px;
    box-shadow: 5px 5px 0 var(--brand-yellow);
    max-width: 100%;
  }
  .map-modal-head {
    padding: 14px 18px;
  }
  .map-modal-head h3 { font-size: 22px; }
  .map-modal-head .close {
    width: 28px;
    height: 28px;
    border-width: 1.5px;
    font-size: 15px;
  }
  .map-modal-body { padding: 16px 18px 20px; }
  .map-modal-body p { font-size: 13px; margin-bottom: 14px; }
  .map-opt {
    padding: 12px 14px;
    border-width: 2.5px;
    box-shadow: 3px 3px 0 var(--ink);
    border-radius: 10px;
    gap: 12px;
  }
  .map-opt .opt-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .map-opt .opt-logo svg { width: 22px; height: 22px; }
  .map-opt .opt-name { font-size: 18px; }
  .map-opt .opt-desc { font-size: 10px; }
  .map-opt .opt-arrow svg { width: 18px; height: 18px; }
  .map-modal-foot {
    font-size: 9.5px;
    padding-top: 10px;
    margin-top: 10px;
  }

  /* Marcas grid (não usado mas mantido) */
  .marca-cell { height: 56px; padding: 6px; }
  .marca-cell img { max-height: 32px; }

  /* Botão CTA Final flex layout */
  .enderecos .wrap > div[style*="flex-wrap: wrap"] {
    flex-direction: column;
    align-items: stretch;
  }
  .enderecos .wrap > div[style*="flex-wrap: wrap"] .store-cta {
    font-size: 16px;
    padding: 14px 16px;
  }
}

/* ===== Extra-small (≤ 480px) ===== */
@media (max-width: 480px) {

  /* Tightest hero */
  .hero-store { padding: 14px 0 18px; }
  .wrap { padding: 0 14px; }

  /* Header — hide tag line, keep mark + words only */
  .brand-tag { display: none; }
  .brand-mark { width: 40px; height: 40px; font-size: 16px; }
  .brand-mark img { width: 34px; height: 34px; }
  .brand-words { font-size: 16px; }
  .header-cta .label-long { display: none; }
  .header-cta .label-short { display: inline; }
  .header-cta { padding: 8px 11px; font-size: 11px; }

  /* Hero photo/map shorter so data card is closer to fold */
  .hero-store-photo { height: 150px; }
  .hero-store-map { height: 150px; }

  /* Store name slightly smaller */
  .store-name { font-size: 32px; }

  /* Sticky top doesn't eat too much screen */
  .marquee { font-size: 10px; }

  /* Section titles */
  .section-title { font-size: 28px; }
  .enderecos .section-title { font-size: 30px; }

  /* Cat cards full-bleed friendlier */
  .cat-card {
    min-height: 260px;
    padding: 18px;
  }
  .cat-card h3 { font-size: 28px; }
  .cat-card[data-color="orange"] .cat-img-slot:has(img),
  .cat-card[data-color="yellow"] .cat-img-slot:has(img),
  .cat-card[data-color="green"] .cat-img-slot:has(img) {
    width: 160px;
    height: 160px;
    right: -25px;
    bottom: -25px;
  }
}

/* ===== Extra-extra-small (≤ 360px) ===== */
@media (max-width: 360px) {
  .brand-words { font-size: 14px; }
  .brand-mark { width: 36px; height: 36px; }
  .store-name { font-size: 28px; }
  .store-meta-grid { grid-template-columns: 1fr; }
  .hero-store-data { padding: 14px 14px 12px; }
}

/* ===== Touch device finesse (no hover on mobile) ===== */
@media (hover: none) {
  .cat-card:hover,
  .selo:hover,
  .endereco-card:hover,
  .brand-carousel-track:hover {
    transform: none;
    box-shadow: 5px 5px 0 var(--ink);
    animation-play-state: running;
  }
  .marca-cell:hover img { filter: grayscale(15%); }
  .brand-carousel-track img:hover { filter: brightness(0) invert(1) contrast(1.05); opacity: 0.92; }
}

/* ===== Reduce motion ===== */
@media (prefers-reduced-motion: reduce) {
  .ticker-track,
  .marquee-track,
  .brand-carousel-track,
  .float-zap .pulse,
  .store-tag-aberto .dot,
  .hero-flag .dot {
    animation: none;
  }
}
