/* Takemura Cofres — landing de patrocinado (Google Ads)
   Identidade visual própria: verde-cofre + dourado, tipografia Poppins/Inter,
   catálogo em carrosséis por categoria e popup de produto. */

/* Fontes auto-hospedadas (antes vinham de fonts.googleapis.com, um CSS
   externo bloqueando a renderização) — mesmos arquivos do Google Fonts,
   subset latin (cobre acentuação do português), servidos do próprio domínio. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-latin-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins-600-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/poppins-700-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #101915;
  --ink-soft: #3c4a43;
  --paper: #faf7ef;
  --paper-alt: #f1ece0;
  --card: #ffffff;
  --line: #e4ddcb;
  --vault-green: #0f3d31;
  --vault-green-deep: #0a2b23;
  --vault-green-soft: #eaf2ee;
  --gold: #b8863b;
  --gold-bright: #d7a84f;
  --gold-ink: #6d4e1f;
  --whatsapp: #25b25a;
  --shadow-sm: 0 2px 10px rgba(16, 25, 21, 0.06);
  --shadow-md: 0 12px 32px rgba(16, 25, 21, 0.12);
  --shadow-lg: 0 24px 60px rgba(10, 43, 35, 0.22);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 9px;
  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--vault-green-deep);
}

p { line-height: 1.6; color: var(--ink-soft); margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn.primary {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 178, 90, 0.32);
}
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37, 178, 90, 0.4); }
.btn.gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #2b1d05;
  box-shadow: 0 10px 24px rgba(184, 134, 59, 0.3);
}
.btn.gold:hover { transform: translateY(-2px); }
.btn.ghost {
  background: transparent;
  border-color: rgba(250, 247, 239, 0.35);
  color: var(--paper);
}
.btn.ghost:hover { border-color: var(--paper); background: rgba(250, 247, 239, 0.08); }
.btn.outline {
  background: #fff;
  border-color: var(--line);
  color: var(--vault-green-deep);
}
.btn.outline:hover { border-color: var(--vault-green); }
.btn.block { width: 100%; }
.btn.small { padding: 9px 16px; font-size: 0.82rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--vault-green-deep);
  color: rgba(250, 247, 239, 0.85);
  font-size: 0.82rem;
}
.topbar-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  padding: 8px 24px;
}
.topbar-item { display: inline-flex; align-items: center; gap: 6px; color: inherit; opacity: 0.9; }
.topbar-item:hover { opacity: 1; color: var(--gold-bright); }
.topbar-item svg { width: 13px; height: 13px; }

/* Rota até o showroom: desktop abre direto no Google Maps; no celular/touch
   dá as duas opções (Google Maps ou Waze) num menu nativo <details>. */
.topbar-location-mobile { display: none; position: relative; }
@media (hover: none), (pointer: coarse) {
  .topbar-maps-link { display: none; }
  .topbar-location-mobile { display: inline-block; }
}

.topbar-location-mobile summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
}
.topbar-location-mobile summary::-webkit-details-marker { display: none; }
.topbar-location-mobile summary::marker { content: ""; }
.topbar-location-mobile[open] summary { color: var(--gold-bright); }
.topbar-location-mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 70;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 6px;
  min-width: 190px;
  max-width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.topbar-location-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--ink);
  white-space: nowrap;
}
.topbar-location-mobile-menu a:hover { background: var(--vault-green-soft); color: var(--vault-green-deep); }
.topbar-location-mobile-menu svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--gold-ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 247, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
}
.logo img { height: 40px; width: auto; }
.cat-nav {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  justify-content: center;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav button {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--vault-green-deep);
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.cat-nav button:hover { background: var(--vault-green-soft); }
.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ---------- Menu hambúrguer (mobile) ---------- */
.mobile-menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--vault-green-deep);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.mobile-menu-toggle svg { width: 20px; height: 20px; }
.mobile-menu-toggle .icon-close { display: none; }
.mobile-menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.mobile-menu-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-menu-panel {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.mobile-menu-panel[hidden] { display: none; }
.mobile-menu-panel-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 24px 18px;
}
.mobile-menu-link {
  text-align: left;
  background: none;
  border: none;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--vault-green-deep);
  padding: 13px 12px;
  border-radius: 10px;
  cursor: pointer;
}
.mobile-menu-link:hover, .mobile-menu-link:active { background: var(--vault-green-soft); }

@media (min-width: 981px) {
  .mobile-menu-panel { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--vault-green-deep);
  color: var(--paper);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(215, 168, 79, 0.22), transparent 55%),
    radial-gradient(circle at 8% 92%, rgba(15, 61, 49, 0.9), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 24px 56px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(215, 168, 79, 0.16);
  border: 1px solid rgba(215, 168, 79, 0.45);
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #6be08a;
  box-shadow: 0 0 0 3px rgba(107, 224, 138, 0.25);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 16px;
}
.hero h1 span { color: var(--gold-bright); }
.hero p.lead {
  color: rgba(250, 247, 239, 0.82);
  font-size: 1.05rem;
}
.hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin: 26px 0 30px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
}
.hero-trust div { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; color: rgba(250, 247, 239, 0.85); }
.hero-trust strong { display: block; color: #fff; font-size: 0.95rem; }
.hero-trust .ic {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(215, 168, 79, 0.15);
  border: 1px solid rgba(215, 168, 79, 0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-bright);
  flex-shrink: 0;
}
.hero-trust .ic svg { width: 18px; height: 18px; }

/* ---------- Steps strip ---------- */
.steps {
  background: var(--card);
  border-bottom: 1px solid var(--line);
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 28px 24px;
}
.step {
  display: flex;
  align-items: center;
  gap: 14px;
}
.step .num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--vault-green-soft);
  color: var(--vault-green-deep);
  font-family: var(--font-head);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step strong { display: block; font-size: 0.92rem; color: var(--vault-green-deep); }
.step span { font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- Category sections ---------- */
.catalog-section {
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 84px;
}
.catalog-section:nth-of-type(even) { background: var(--paper-alt); }
.catalog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.catalog-head .pill {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-ink);
  background: rgba(184, 134, 59, 0.14);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.catalog-head h2 { font-size: 1.6rem; margin-bottom: 6px; }
.catalog-head p { margin: 0; max-width: 60ch; }
.carousel-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--vault-green-deep);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.carousel-btn:hover { background: var(--vault-green-soft); border-color: var(--vault-green); }
.carousel-btn svg { width: 18px; height: 18px; }

/* Desktop: a faixa de cartões fica travada perto de 4 por vez, com uma seta
   em cada ponta. Esse bloco (só ele, não o resto da página) tem uma largura
   máxima maior que o ".container" padrão — assim os 4 cartões cabem
   inteiros, sem cortar o quarto, e as setas moram numa faixa reservada
   fora da área das fotos, sem nunca ficar por cima de um produto e sem
   arriscar empurrar a página inteira pra fora da tela.
   A largura e o alinhamento são SEMPRE os mesmos, tenha a categoria 3, 4
   ou 20 produtos — só as setas são condicionais (renderizadas via PHP
   apenas quando há mais de 4 produtos), pra nenhuma linha ficar
   desalinhada em relação às outras. */
.carousel-viewport {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
.carousel-edge-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  box-shadow: var(--shadow-sm);
}
.carousel-edge-prev { left: 0; }
.carousel-edge-next { right: 0; }
.carousel-track {
  display: flex;
  gap: 20px;
  /* 1140px é a largura de 4 cartões (270px) + 3 gaps (20px); somamos os 4px
     do padding lateral (2px de cada lado) pra esse padding não "roubar"
     espaço do conteúdo e disparar a barra de rolagem à toa quando a
     categoria tem exatamente 4 produtos. */
  max-width: 1144px;
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 6px 2px 18px;
  cursor: grab;
  scrollbar-width: none;
}
.carousel-track.is-dragging { cursor: grabbing; scroll-behavior: auto; user-select: none; }
.carousel-track::-webkit-scrollbar { display: none; }

/* ---------- Product card ---------- */
.product-card {
  flex: 0 0 auto;
  width: 270px;
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
/* Depois de fechar o popup com Esc, o foco volta pro elemento clicado — sem
   isso o navegador desenha o contorno azul padrão em cima do card. Mantemos
   um contorno visível só quando o foco vem do teclado (:focus-visible);
   quando veio de clique de mouse, some. */
.product-card:focus-visible,
.media-open:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.product-card:focus:not(:focus-visible),
.media-open:focus:not(:focus-visible) {
  outline: none;
}
.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #eef2ef;
  overflow: hidden;
}
.media-open {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  cursor: pointer;
}
.media-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  user-select: none;
}
.media-slide.is-active { opacity: 1; }
.media-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(16, 25, 21, 0.5);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.15s ease, background 0.15s ease;
  z-index: 2;
}
.media-arrow svg { width: 15px; height: 15px; pointer-events: none; }
.media-arrow-prev { left: 8px; }
.media-arrow-next { right: 8px; }
.media-arrow:hover, .media-arrow:focus-visible { background: rgba(16, 25, 21, 0.75); }
.media-dots {
  position: absolute;
  left: 0; right: 0; bottom: 9px;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.media-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(16, 25, 21, 0.22);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.media-dot.is-active { background: var(--gold); transform: scale(1.25); }
.promo-tag {
  position: absolute;
  top: 10px; left: 10px;
  background: #c0392b;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  z-index: 3;
  pointer-events: none;
}
.product-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.product-title {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--vault-green-deep);
  line-height: 1.3;
  min-height: 2.6em;
}
.product-price-row {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.price-original {
  font-size: 0.78rem;
  color: #9a9382;
  text-decoration: line-through;
  display: block;
}
.price-current {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--vault-green-deep);
  display: block;
}
.price-current.is-quote { font-size: 0.92rem; color: var(--gold-ink); }
.product-view-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--vault-green-deep);
  white-space: nowrap;
}
.product-view-link svg { width: 13px; height: 13px; }
.product-card:hover .product-view-link { color: var(--gold-ink); }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 16, 0.6);
  backdrop-filter: blur(3px);
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 16px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}
.modal-backdrop.is-open { opacity: 1; visibility: visible; }
.modal-panel {
  background: var(--card);
  width: 100%;
  max-width: 880px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.22s ease;
  margin: auto 0;
}
.modal-backdrop.is-open .modal-panel { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(16, 25, 21, 0.06);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  color: var(--ink);
}
.modal-close:hover { background: rgba(16, 25, 21, 0.12); }
.modal-close svg { width: 18px; height: 18px; }

.modal-body { position: relative; }
.modal-top { display: grid; grid-template-columns: 1fr 1fr; }
.modal-media {
  position: relative;
  background: #eef2ef;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.modal-media .media-slide { padding: 30px; }
.modal-media .media-arrow { width: 44px; height: 44px; }
.modal-media .media-arrow svg { width: 20px; height: 20px; }
.modal-media .media-dots { bottom: 16px; gap: 8px; }
.modal-media .media-dot { width: 9px; height: 9px; }
.modal-media-caption {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--vault-green-deep);
  background: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.modal-info { padding: 26px 28px 24px; }

/* Destaques: no computador ficam na coluna direita, embaixo do botão de
   WhatsApp (aproveita o espaço vazio ali); no celular voltam pra baixo das
   medidas, como já era. O conteúdo é o mesmo, só a posição muda por CSS. */
.modal-highlights-slot--desktop .modal-section { margin-top: 22px; }
.modal-highlights-slot--mobile { display: none; }
.modal-cat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.modal-cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-ink);
  background: rgba(184, 134, 59, 0.14);
  padding: 5px 11px;
  border-radius: 999px;
}
.modal-info h3 { font-size: 1.3rem; margin-bottom: 10px; }
.modal-price-block { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; flex-wrap: wrap; }
.modal-price-block .price-original { font-size: 0.86rem; }
.modal-price-block .price-current { font-size: 1.4rem; }
.modal-price-block .price-current.is-quote { font-size: 1.05rem; }

.modal-lower { padding: 4px 28px 28px; }
.modal-section { margin-top: 20px; }
.modal-section h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--vault-green-deep);
  margin-bottom: 10px;
}
.modal-highlights { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.modal-highlights li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.modal-highlights li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}

/* Medidas: um cartão por tipo (Externa, Interna, Compartimento...) com
   altura/largura/profundidade — lado a lado no desktop, empilhados no
   celular. Peso e capacidade não pertencem a nenhum tipo específico, então
   ficam à parte, sempre um ao lado do outro. */
.measure-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.measure-card {
  flex: 1 1 160px;
  min-width: 150px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: #fff;
}
.measure-card h5 {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vault-green-deep);
}
.measure-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  padding: 3px 0;
}
.measure-row strong { color: var(--ink); font-weight: 600; }

.measure-overall {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.measure-overall-item {
  border: 1px solid rgba(184, 134, 59, 0.35);
  background: rgba(184, 134, 59, 0.08);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.measure-overall-item span {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold-ink);
}
.measure-overall-item strong {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--vault-green-deep);
}

.modal-cta {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .modal-top { grid-template-columns: 1fr; }
  .modal-info { padding: 20px 20px 6px; }
  .modal-lower { padding: 4px 20px 24px; }

  .measure-grid { flex-direction: column; align-items: stretch; }
  .measure-card { width: 100%; flex: 0 1 auto; }

  .modal-highlights-slot--desktop { display: none; }
  .modal-highlights-slot--mobile { display: block; }
}

/* ---------- Closing CTA ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--vault-green-deep), var(--vault-green));
  color: #fff;
  padding: 56px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: 1.6rem; margin-bottom: 6px; }
.cta-band p { color: rgba(250, 247, 239, 0.8); margin: 0; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--vault-green-deep);
  color: rgba(250, 247, 239, 0.75);
  padding: 40px 0 22px;
  font-size: 0.86rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(250, 247, 239, 0.12);
}
.footer-brand-logo {
  display: inline-block;
  margin-bottom: 12px;
}
.footer-brand-logo img { height: 34px; display: block; }
.footer-brand p { color: rgba(250, 247, 239, 0.65); font-size: 0.84rem; max-width: 34ch; }
.footer h4 { color: #fff; font-size: 0.88rem; margin-bottom: 12px; }
.footer-contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-contact-list a, .footer-contact-list button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(250, 247, 239, 0.75);
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-align: left;
}
.footer-contact-list a:hover, .footer-contact-list button:hover { color: var(--gold-bright); }
.footer-contact-list svg { width: 15px; height: 15px; flex-shrink: 0; }
.footer-bottom {
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(250, 247, 239, 0.55);
}
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--gold-bright); }
.footer-credit {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer-credit-line { display: block; }
.cookie-manage-btn {
  display: block;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: inherit;
  color: rgba(250, 247, 239, 0.55);
  text-decoration: underline;
  cursor: pointer;
}
.cookie-manage-btn:hover { color: var(--gold-bright); }

/* ---------- Banner de cookies ---------- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 150;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 18px 20px;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.cookie-banner-text { flex: 1 1 320px; }
.cookie-banner-text strong { display: block; color: var(--vault-green-deep); margin-bottom: 4px; }
.cookie-banner-text p { margin: 0; font-size: 0.86rem; }
.cookie-banner-text a { color: var(--gold-ink); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

@media (max-width: 560px) {
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 16px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; }
}

/* No celular o botão flutuante do WhatsApp fica bem em cima do rodapé, então
   essa linha muda de posição lá: sobe pra dentro do ".footer-grid", acima
   da linha que separa esse bloco do copyright — no desktop continua onde
   sempre esteve, ao lado do copyright. */
.footer-campaign a { color: var(--gold-bright); }
.footer-campaign--mobile { display: none; }

/* ---------- Floating WhatsApp ---------- */
.float-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 178, 90, 0.45);
  color: #fff;
  transition: transform 0.2s ease;
}
.float-cta:hover { transform: scale(1.07); }
.float-cta svg { width: 28px; height: 28px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { padding: 44px 24px; }
  .hero-actions { justify-content: flex-start; }
  .steps-row { grid-template-columns: 1fr; }

  /* Marca centralizada e ocupando a linha toda; os dois blocos de links
     (Linhas de cofre / Atendimento) ficam lado a lado pra economizar espaço. */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-brand-logo { margin-left: auto; margin-right: auto; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-campaign--mobile {
    display: block;
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(250, 247, 239, 0.55);
    margin-top: 4px;
  }
  .footer-campaign--desktop { display: none; }
  .cat-nav { display: none; }
  .mobile-menu-toggle { display: inline-flex; }

  /* Sem setas no celular — só arrastar/deslizar com o dedo */
  .carousel-edge-btn { display: none; }
  .carousel-viewport { padding: 0; }
  .carousel-track { max-width: none; margin: 0; cursor: auto; }
}

@media (max-width: 560px) {
  /* Logo centralizada na própria linha; WhatsApp + hambúrguer centralizados
     juntos na linha de baixo — em vez de tudo espremido num só espaço. */
  .header-row {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 12px;
    padding: 12px 20px;
  }
  .logo { width: 100%; display: flex; justify-content: center; }
  .logo img { height: 44px; }
  .header-cta { width: 100%; justify-content: space-between; }
  .product-card { width: 220px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .topbar-row { justify-content: center; flex-wrap: wrap; gap: 12px; }
}
