/* Pedrinho Stetic Car — estilo base
   Paleta e regras vêm de identidade/design-guide.md */

:root {
  --bg: #0b0c0e;
  --bg-alt: #15181d;
  --border: #23272e;
  --text: #ffffff;
  --text-dim: #c7ccd1;
  --text-mute: #8b929c;
  --accent: #1b8cff;
  --accent-2: #5ab6ff;
  --accent-glow: rgba(27, 140, 255, 0.35);
  --radius-card: 12px;
  --radius-btn: 8px;
  --maxw: 1160px;
  --font-head: "Space Grotesk", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.01em; }

p { color: var(--text-dim); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.lead { font-size: 1.1rem; color: var(--text-dim); max-width: 60ch; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 13px 24px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn--sm { padding: 9px 16px; font-size: 0.82rem; }
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px var(--accent-glow);
}
.btn--ghost {
  border-color: var(--border);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-2); }
/* Botão só sublinhado — discreto, "de estúdio" */
.btn--line {
  border: 0;
  border-radius: 0;
  padding: 13px 2px;
  color: var(--text);
  position: relative;
}
.btn--line::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 2px;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn--line:hover::after { transform: scaleX(0.4); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 12, 14, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; }
.brand span {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.95rem;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.15s ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  color: var(--text);
  padding: 8px 12px;
  font-size: 1rem;
  cursor: pointer;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  padding: 128px 0 72px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  isolation: isolate;
}
/* Glow de fallback (páginas internas, sem foto) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(58% 60% at 82% 12%, rgba(27, 140, 255, 0.16), transparent 70%),
    radial-gradient(50% 55% at 4% 96%, rgba(27, 140, 255, 0.10), transparent 70%);
}
.hero .container { position: relative; z-index: 1; }
.hero:not(.hero--home) .eyebrow { animation: up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero:not(.hero--home) h1 { max-width: 22ch; animation: up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both; }
.hero:not(.hero--home) .lead { margin-top: 18px; animation: up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both; }
.hero-actions { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Home: hero com foto, texto embaixo à esquerda ---- */
.hero--home {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  border-bottom: 0;
}
.hero--home .hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    url("../img/hero.jpg") 50% 42% / cover no-repeat,
    linear-gradient(135deg, #171d28, #0b0c0e 60%);
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.04);
  animation: heroDrift 40s ease-in-out infinite alternate;
}
.hero--home .hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.86) 0%, rgba(8, 9, 11, 0.38) 42%, rgba(8, 9, 11, 0.08) 70%, rgba(8, 9, 11, 0.35) 100%),
    linear-gradient(180deg, rgba(8, 9, 11, 0.55) 0%, transparent 22%, transparent 45%, rgba(8, 9, 11, 0.82) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 130px;
  padding-bottom: 118px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 22px;
  animation: up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero__tag .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.hero__title {
  font-size: clamp(2.6rem, 8vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 500;
  max-width: 15ch;
}
.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent-2);
}
.hero__sub {
  margin-top: 24px;
  max-width: 34ch;
  font-size: 1.06rem;
  color: var(--text-dim);
  opacity: 0;
  animation: up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}
.hero__cta {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.62s forwards;
}

/* Máscara de revelação — o texto sobe "de dentro" de uma faixa */
.reveal-mask { display: block; overflow: hidden; }
.reveal-mask > span {
  display: block;
  transform: translateY(105%);
  animation: maskUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.reveal-mask:nth-child(1) > span { animation-delay: 0.12s; }
.reveal-mask:nth-child(2) > span { animation-delay: 0.24s; }
@keyframes maskUp { to { transform: translateY(0); } }
@keyframes up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes heroDrift {
  from { transform: scale(1.04) translate(0, 0); }
  to   { transform: scale(1.09) translate(-1.4%, -1%); }
}

/* Seta de rolar */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 74px;
  z-index: 2;
  width: 24px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  transform: translateX(-50%);
}
.hero__scroll span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent-2);
  transform: translateX(-50%);
  animation: scrollDot 1.7s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  70% { opacity: 0; transform: translate(-50%, 14px); }
}

/* Marquee (faixa que corre) */
.marquee {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(8, 9, 11, 0.6);
  backdrop-filter: blur(4px);
  overflow: hidden;
  padding: 14px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee__track span {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ================= BLOCO (seção editorial) ================= */
.block { padding: 104px 0; }
.block--tight { padding: 72px 0; }
.label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 18px;
}
.block__head { max-width: 30ch; margin-bottom: 8px; }
.block__title { font-size: clamp(1.9rem, 4.4vw, 3rem); letter-spacing: -0.03em; font-weight: 500; }
.block__note { margin-top: 16px; max-width: 46ch; }
.block__more { margin-top: 40px; }
.block__more a {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--accent-2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.block__more a:hover { border-color: var(--accent-2); }

/* ---- Lista editorial de serviços ---- */
.svc { list-style: none; margin-top: 44px; border-top: 1px solid var(--border); }
.svc__row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 30px 6px;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, padding-left 0.3s ease;
}
.svc__row:hover { background: var(--bg-alt); padding-left: 18px; }
.svc__n {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-mute);
  padding-top: 6px;
}
.svc__row:hover .svc__n { color: var(--accent-2); }
.svc__body h3 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 500; letter-spacing: -0.02em; }
.svc__body p { margin-top: 8px; max-width: 52ch; font-size: 0.98rem; }
.svc__mark {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 12px;
  white-space: nowrap;
  margin-top: 8px;
}

/* ================= NÚMEROS ================= */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(80% 140% at 50% 0%, rgba(27, 140, 255, 0.10), transparent 60%),
    var(--bg-alt);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 60px 24px;
}
.stat { text-align: center; }
.stat__n {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}
.stat__l {
  display: block;
  margin-top: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--text-mute);
}

/* ================= ANTES / DEPOIS (scroll horizontal) ================= */
.ba {
  display: flex;
  gap: 18px;
  margin-top: 44px;
  padding: 4px 24px 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.ba::-webkit-scrollbar { height: 6px; }
.ba::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.ba__card {
  flex: 0 0 min(70vw, 340px);
  scroll-snap-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--bg-alt);
  margin: 0;
}
.ba__card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.ba__card:hover img { transform: scale(1.04); }
.ba__card figcaption { padding: 15px 18px; }
.ba__card figcaption b { font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; }
.ba__card figcaption span { display: block; margin-top: 3px; font-size: 0.85rem; color: var(--text-mute); }
.drag-hint {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-right: 14px;
}

/* ---- Grade de trabalhos (portfólio) ---- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.work {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--bg-alt);
}
.work img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.work:hover img { transform: scale(1.04); }
.work figcaption { padding: 14px 16px; }
.work figcaption b { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; }
.work figcaption span { display: block; margin-top: 3px; font-size: 0.83rem; color: var(--text-mute); }
@media (max-width: 780px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .work-grid { grid-template-columns: 1fr; } }

/* Fotos na página Sobre */
.about-photo {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 460px;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}
.about-wide {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  object-position: center 32%;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}

/* ================= FRASE ================= */
.quote { padding: 96px 0; border-top: 1px solid var(--border); }
.quote__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
}
.quote__card {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--bg-alt);
}
.quote__card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}
.quote__card-body { padding: 18px 20px 22px; }
.quote__card-body b {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
}
.quote__card-body span {
  display: block;
  margin: 4px 0 14px;
  font-size: 0.85rem;
  color: var(--text-mute);
}
.quote blockquote { max-width: 22ch; }
.quote p {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.7rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}
@media (max-width: 780px) {
  .quote__grid { grid-template-columns: 1fr; gap: 32px; }
  .quote__card { max-width: 340px; }
}

/* ================= CTA final ================= */
.cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../img/estudio/fachada.jpg") 50% 45% / cover no-repeat;
  filter: brightness(0.3) saturate(1.05);
  transform: scale(1.05);
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8, 9, 11, 0.7), rgba(8, 9, 11, 0.92));
}
.cta__inner { padding: 108px 24px; }
.cta__inner h2 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 500; letter-spacing: -0.03em; }
.cta__inner p { margin: 16px auto 0; max-width: 44ch; }
.cta__phone {
  display: inline-block;
  margin: 26px 0 22px;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4.5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--accent-2);
}

@media (prefers-reduced-motion: reduce) {
  .hero--home .hero__media,
  .marquee__track,
  .hero__scroll span { animation: none; }
  .reveal-mask > span { transform: none; animation: none; }
  .hero .eyebrow, .hero h1, .hero .lead,
  .hero__sub, .hero__cta { animation: none; opacity: 1; transform: none; }
  .hero__scroll { display: none; }
}
@media (max-width: 820px) {
  .svc__row { grid-template-columns: 54px 1fr; }
  .svc__mark { display: none; }
}
@media (max-width: 640px) {
  .hero { padding: 104px 0 60px; }
  .hero--home { min-height: 92svh; }
  .hero__inner { padding-top: 96px; padding-bottom: 88px; }
  .hero__scroll { display: none; }
  .block { padding: 76px 0; }
  .stats__grid { grid-template-columns: 1fr; gap: 34px; padding: 46px 24px; }
  .quote blockquote { margin-left: 0; }
}

/* ---------- Revelar ao rolar a página ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Grid de cards ---------- */
.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 44px;
}
.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: var(--accent); transform: translateY(-3px); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.95rem; }
.card .tag {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.card__price {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 4px 0 10px;
}
.card__img {
  width: calc(100% + 56px);
  margin: -28px -28px 18px;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border);
}

/* ---------- Section header ---------- */
.section-head { max-width: 62ch; margin-bottom: 8px; }
.section-head p { margin-top: 14px; }

/* ---------- Placeholder de imagem ---------- */
.ph {
  background:
    repeating-linear-gradient(45deg, #14171c, #14171c 12px, #161a20 12px, #161a20 24px);
  border: 1px dashed var(--border);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  color: var(--text-mute);
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}
.ph--tall { min-height: 340px; }

/* ---------- Antes / depois ---------- */
.ba-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 44px;
}
.ba-item { border: 1px solid var(--border); border-radius: var(--radius-card); overflow: hidden; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; }
.ba-pair .ph { border: none; border-radius: 0; min-height: 200px; }
.ba-pair .ph + .ph { border-left: 1px solid var(--border); }
.ba-item .ba-caption { padding: 16px 20px; background: var(--bg-alt); }
.ba-item .ba-caption h3 { font-size: 0.95rem; }
.ba-item .ba-caption p { font-size: 0.85rem; margin-top: 4px; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; margin-top: 40px; display: grid; gap: 18px; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--bg-alt);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent-2);
  flex-shrink: 0;
}
.step h3 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: 0.92rem; }

/* ---------- CTA band ---------- */
.cta-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(27, 140, 255, 0.14), transparent 70%),
    var(--bg-alt);
  text-align: center;
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band .lead { margin: 0 auto 28px; }

/* ---------- Contato ---------- */
.contact-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.1fr 1fr;
  margin-top: 40px;
}
.contact-list { display: grid; gap: 18px; }
.contact-list .row {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--bg-alt);
}
.contact-list .row span {
  display: block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 6px;
}
.contact-list .row a, .contact-list .row p { font-size: 1.05rem; color: var(--text); }
.contact-list .row a { text-decoration: none; }
.contact-list .row a:hover { color: var(--accent-2); }
.map {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  filter: grayscale(0.3) contrast(1.05) brightness(0.9);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 40px;
  background: var(--bg);
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer .brand img { height: 34px; }
.site-footer nav { display: flex; gap: 20px; flex-wrap: wrap; }
.site-footer nav a {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.site-footer nav a:hover { color: var(--text); }
.site-footer .fine {
  width: 100%;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-mute);
}

/* ---------- Responsivo ---------- */
@media (max-width: 860px) {
  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 20px;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav .btn { margin-top: 14px; justify-content: center; }
  .nav-toggle { display: inline-block; }
  .contact-grid { grid-template-columns: 1fr; }
  .ba-pair { grid-template-columns: 1fr; }
  .ba-pair .ph + .ph { border-left: none; border-top: 1px solid var(--border); }
}
