/* ===========================================================
   Modelo de site — Barbearia Navalha & Co. (vitrine da Bluhertz)
   Tema: grafite + dourado. Bebas Neue (títulos) + Inter (texto).
   Depende de modelos.css (reset, barra e rodapé da Bluhertz).
   =========================================================== */
:root {
  --bg: #0e0f11;
  --bg-2: #141517;
  --bg-3: #1b1d21;
  --line: rgba(255, 255, 255, .08);
  --gold: #d4a24c;
  --gold-2: #e8c273;
  --gold-3: #b8862f;
  --ink: #1a1408;
  --text: #f2ede4;
  --muted: #a9a49b;
  --ok: #4ade80;
  --display: "Bebas Neue", "Oswald", Impact, "Arial Narrow", sans-serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 18px;
  --container: 1120px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --mb-h: 48px; /* altura da barra da Bluhertz; o JS mede a real */
}

html { scroll-padding-top: calc(var(--mb-h) + 84px); }
body { background: var(--bg); color: var(--text); font-family: var(--sans); overflow-x: hidden; }
h1, h2, h3, h4, p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 600; }

/* ---------- Acessibilidade ---------- */
:focus-visible { outline: 3px solid var(--gold-2); outline-offset: 3px; } /* sem border-radius aqui: o outline já acompanha o raio do próprio elemento */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip {
  position: fixed; left: 50%; top: 10px; z-index: 100;
  transform: translate(-50%, -300%);
  background: var(--gold); color: var(--ink);
  font-weight: 700; padding: 10px 20px; border-radius: 999px; text-decoration: none;
  transition: transform .25s var(--ease);
}
.skip:focus { transform: translate(-50%, 0); }

/* ---------- Utilidades ---------- */
.wrap { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.gold {
  background: linear-gradient(120deg, #f3d99a, #d4a24c 50%, #b8862f);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: .74rem; line-height: 1; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }

/* Botões: fonte display, cantos retos — cara de letreiro de barbearia */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-size: 1.25rem; letter-spacing: .08em; line-height: 1;
  padding: 16px 28px 13px; border-radius: 6px; text-decoration: none; white-space: nowrap;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s, color .25s, background .25s;
}
.btn--gold {
  background: linear-gradient(120deg, #e8c273, #d4a24c 55%, #b8862f);
  color: var(--ink); box-shadow: 0 14px 30px -12px rgba(212, 162, 76, .6);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(212, 162, 76, .8); }
.btn--ghost { background: transparent; color: var(--text); border-color: rgba(255, 255, 255, .22); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }
.btn--sm { font-size: 1.05rem; padding: 11px 18px 9px; }
.btn--lg { font-size: 1.4rem; padding: 18px 34px 15px; }

/* ---------- Cabeçalho do site-modelo (gruda logo abaixo da barra da Bluhertz) ---------- */
.bh {
  position: sticky; top: var(--mb-h); z-index: 40;
  background: rgba(14, 15, 17, .86);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--line);
}
.bh__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 72px; }
.bh__brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.bh__mark { width: 40px; height: 40px; color: var(--gold); flex-shrink: 0; }
.bh__name { font-family: var(--display); font-size: 1.6rem; letter-spacing: .06em; line-height: 1; padding-top: 3px; white-space: nowrap; }
.bh__name em { font-style: normal; color: var(--gold); }
.bh__nav ul { display: flex; align-items: center; gap: 2px; }
.bh__nav a:not(.btn) {
  display: block; padding: 10px 13px; border-radius: 8px; text-decoration: none;
  font-weight: 500; font-size: .93rem; color: rgba(242, 237, 228, .85);
  transition: color .2s, background .2s;
}
.bh__nav a:not(.btn):hover, .bh__nav a.is-active { color: var(--gold-2); background: rgba(255, 255, 255, .05); }
.bh__nav .btn { margin-left: 10px; }
.bh__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.bh__toggle span { width: 26px; height: 2px; border-radius: 2px; background: var(--text); transition: transform .3s, opacity .3s; }
.bh__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bh__toggle.is-open span:nth-child(2) { opacity: 0; }
.bh__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 110px) 0 clamp(64px, 8vw, 120px); }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 55% at 82% 28%, rgba(212, 162, 76, .2), transparent 70%),
    radial-gradient(45% 45% at 8% 92%, rgba(212, 162, 76, .09), transparent 70%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .025) 0, rgba(255, 255, 255, .025) 2px, transparent 2px, transparent 14px);
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero__title { font-family: var(--display); font-weight: 400; font-size: clamp(3rem, 10vw, 7rem); line-height: .92; letter-spacing: .02em; }
.hero__title small { display: block; font-size: .42em; letter-spacing: .14em; color: var(--muted); margin-bottom: 6px; }
.hero__lead { color: var(--muted); font-size: clamp(1.05rem, 1.4vw, 1.25rem); max-width: 540px; margin: 22px 0 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 32px; color: var(--muted); font-size: .9rem; }
.hero__proof li::before { content: "◆"; color: var(--gold); font-size: .55em; margin-right: 9px; vertical-align: 2px; }
.hero__proof strong { color: var(--text); }

.hero__visual { position: relative; display: flex; justify-content: flex-start; align-items: flex-end; min-height: 420px; padding-left: 4%; }
.pole { width: min(58%, 250px); height: auto; filter: drop-shadow(0 34px 44px rgba(212, 162, 76, .22)); }
.pole__stripes { animation: poleSpin 2.6s linear infinite; }
@keyframes poleSpin { to { transform: translateY(-72px); } }

.slots {
  position: absolute; right: 0; bottom: 6%; width: min(100%, 268px);
  background: rgba(20, 21, 23, .88);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 162, 76, .32); border-radius: 14px; padding: 16px 18px;
  box-shadow: 0 26px 50px -20px rgba(0, 0, 0, .85);
}
.slots__head { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .85rem; }
.slots__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, .55); }
  70% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.slots__list { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.slot {
  font-family: var(--display); font-size: 1.1rem; letter-spacing: .06em; line-height: 1;
  padding: 8px 12px 6px; border-radius: 6px;
  background: rgba(255, 255, 255, .06); border: 1px solid var(--line);
}
.slot--hot { background: rgba(212, 162, 76, .16); border-color: rgba(212, 162, 76, .5); color: var(--gold-2); }
.slots__link { font-size: .85rem; font-weight: 600; color: var(--gold); text-decoration: none; }
.slots__link:hover { text-decoration: underline; }

/* ---------- Faixa dourada em movimento ---------- */
.strip {
  background: linear-gradient(90deg, #b8862f, #d4a24c 40%, #e8c273 50%, #d4a24c 60%, #b8862f);
  color: var(--ink); overflow: hidden; padding: 12px 0;
  border-top: 1px solid rgba(0, 0, 0, .25); border-bottom: 1px solid rgba(0, 0, 0, .25);
}
.strip__track { display: flex; width: max-content; gap: 34px; animation: marquee 30s linear infinite; }
.strip__set { display: flex; align-items: center; gap: 34px; white-space: nowrap; font-family: var(--display); font-size: 1.3rem; letter-spacing: .14em; line-height: 1; padding-top: 2px; }
.strip__set i { font-style: normal; font-size: .6em; opacity: .7; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Seções ---------- */
.section { position: relative; padding: clamp(64px, 8vw, 104px) 0; }
.section--alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__head { text-align: center; max-width: 660px; margin: 0 auto clamp(36px, 5vw, 56px); }
.section__title { font-family: var(--display); font-weight: 400; font-size: clamp(2.4rem, 5.4vw, 4rem); line-height: .96; letter-spacing: .02em; }
.section__sub { color: var(--muted); margin-top: 14px; font-size: 1.02rem; }
.section__cta { text-align: center; margin-top: clamp(28px, 4vw, 44px); }

/* ---------- Serviços ---------- */
.services { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #1a1c20, #131417);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px 22px;
  transition: transform .3s var(--ease), border-color .3s;
}
.service::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, #e8c273, #b8862f); opacity: 0; transition: opacity .3s;
}
.service:hover { transform: translateY(-4px); border-color: rgba(212, 162, 76, .45); }
.service:hover::before { opacity: 1; }
.service--hot { border-color: rgba(212, 162, 76, .45); }
.service--hot::before { opacity: 1; }
.service__flag {
  position: absolute; top: 18px; right: 18px;
  font-weight: 700; font-size: .66rem; line-height: 1; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); background: var(--gold); padding: 6px 9px; border-radius: 4px;
}
.service__icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(212, 162, 76, .12); border: 1px solid rgba(212, 162, 76, .25); color: var(--gold);
  margin-bottom: 18px;
}
.service__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service h3 { font-family: var(--display); font-weight: 400; font-size: 1.75rem; letter-spacing: .04em; line-height: 1; }
.service p { color: var(--muted); font-size: .95rem; margin: 10px 0 16px; }
.service__time {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 600; color: var(--gold-2);
  background: rgba(212, 162, 76, .1); padding: 6px 11px; border-radius: 999px;
}
.service__time svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Por que aqui ---------- */
.why { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.why__intro { position: sticky; top: calc(var(--mb-h) + 96px); }
.why__intro .btn { margin-top: 26px; }
.why__item {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 22px; align-items: start;
  padding: 26px 0; border-top: 1px solid var(--line);
}
.why__item:last-child { border-bottom: 1px solid var(--line); }
.why__num { font-family: var(--display); font-size: 2.6rem; line-height: .9; color: var(--gold); min-width: 52px; }
.why__item h3 { font-family: var(--display); font-weight: 400; font-size: 1.7rem; letter-spacing: .04em; line-height: 1; }
.why__item p { color: var(--muted); margin-top: 8px; }
.why__icon {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(212, 162, 76, .35); color: var(--gold); background: rgba(212, 162, 76, .08);
}
.why__icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.why__checks { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.why__checks li {
  font-size: .82rem; font-weight: 600; color: var(--text);
  background: rgba(255, 255, 255, .05); border: 1px solid var(--line);
  padding: 8px 12px; border-radius: 999px;
}
.why__checks li::before { content: "◆"; color: var(--gold); font-size: .55em; margin-right: 8px; vertical-align: 2px; }

/* ---------- Equipe ---------- */
.team { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.barber {
  text-align: center; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 22px 26px; transition: transform .3s var(--ease), border-color .3s;
}
.barber:hover { transform: translateY(-4px); border-color: rgba(212, 162, 76, .4); }
.barber__avatar { width: 132px; height: 132px; margin: 0 auto 18px; }
.barber__avatar svg { width: 100%; height: 100%; }
.barber h3 { font-family: var(--display); font-weight: 400; font-size: 2rem; letter-spacing: .06em; line-height: 1; }
.barber__role { color: var(--gold); font-weight: 700; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; margin-top: 8px; }
.barber__bio { color: var(--muted); font-size: .95rem; margin-top: 12px; }
.barber__tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 16px; }
.barber__tags li { font-size: .76rem; font-weight: 600; color: var(--gold-2); background: rgba(212, 162, 76, .1); border: 1px solid rgba(212, 162, 76, .22); padding: 5px 10px; border-radius: 999px; }

/* ---------- Horários ---------- */
.hours { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.status {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 22px;
  padding: 10px 16px; border-radius: 999px; font-weight: 600; font-size: .9rem;
  background: rgba(255, 255, 255, .05); border: 1px solid var(--line);
}
.status__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.status--open .status__dot { background: var(--ok); box-shadow: 0 0 0 4px rgba(74, 222, 128, .18); }
.status--closed .status__dot { background: #f87171; box-shadow: 0 0 0 4px rgba(248, 113, 113, .18); }
.hours__table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.hours__table th, .hours__table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.hours__table thead th { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); background: rgba(212, 162, 76, .07); }
.hours__table tbody th { font-weight: 600; }
.hours__table tbody td { font-family: var(--display); font-size: 1.35rem; letter-spacing: .05em; color: var(--text); padding-top: 14px; padding-bottom: 12px; }
.hours__table tbody tr:last-child th, .hours__table tbody tr:last-child td { border-bottom: 0; }
.hours__table .closed { color: var(--muted); }
.hours__table tr.is-today { background: rgba(212, 162, 76, .1); }
.hours__table tr.is-today th::after {
  content: "hoje"; margin-left: 10px; font-family: var(--sans); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); background: var(--gold); padding: 3px 7px; border-radius: 4px; vertical-align: 2px;
}
.hours__note { color: var(--muted); font-size: .85rem; margin-top: 14px; }

/* ---------- Contato + mapa em CSS ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.contact__list { margin-top: 26px; }
.contact__list li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-top: 1px solid var(--line); }
.contact__list li:last-child { border-bottom: 1px solid var(--line); }
.contact__ico {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0; display: grid; place-items: center;
  background: rgba(212, 162, 76, .12); border: 1px solid rgba(212, 162, 76, .25); color: var(--gold);
}
.contact__ico svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact__list strong { display: block; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 2px; }
.contact__list span { color: var(--muted); }
.contact__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 26px; }
.contact__hint { color: var(--muted); font-size: .85rem; }

.map {
  position: relative; width: 100%; aspect-ratio: 335 / 300; /* mesma proporção da cena (335×300): nunca corta e a composição é igual em toda largura */
  border-radius: var(--radius); overflow: hidden;
  background: #191b1f; border: 1px solid rgba(212, 162, 76, .25);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .9);
}
.map__scene {
  position: absolute; left: 0; top: 0; width: 335px; height: 300px;
  transform-origin: 0 0; transform: scale(var(--map-scale, 1));
}
.map__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(#2a2d33, #2a2d33 6px, transparent 6px),
    linear-gradient(90deg, #2a2d33, #2a2d33 6px, transparent 6px);
  background-size: 100% 68px, 92px 100%;
  background-position: 0 27px, 37px 0;
}
.map__ave {
  position: absolute; left: -10%; top: 74%; width: 130%; height: 20px;
  background: #34373e; transform: rotate(-14deg); transform-origin: center;
}
.map__ave::after { content: ""; position: absolute; left: 0; right: 0; top: 9px; border-top: 2px dashed rgba(212, 162, 76, .35); }
.map__park {
  position: absolute; left: 6%; top: 8%; width: 24%; height: 26%;
  border-radius: 46% 54% 58% 42% / 52% 40% 60% 48%;
  background: rgba(86, 140, 90, .28); border: 1px solid rgba(86, 140, 90, .45);
}
.map__park span, .map__label {
  position: absolute; font-size: .66rem; font-weight: 600; letter-spacing: .06em; color: #a8a39a;
  white-space: nowrap;
}
.map__park span { left: 50%; top: 50%; transform: translate(-50%, -50%); }
.map__label { background: #191b1f; padding: 1px 6px; border-radius: 3px; }
.map__label--h { left: 100px; top: 166px; transform: translateY(-50%); }
.map__label--v { left: 224px; top: 52px; transform: translate(-50%, -50%) rotate(-90deg); transform-origin: center; } /* caixa centrada em (224,52): sobre a rua vertical, acima do quarteirão dourado */
.map__block {
  position: absolute; left: 232px; top: 104px; width: 62px; height: 46px; border-radius: 4px;
  background: rgba(212, 162, 76, .18); border: 1.5px solid var(--gold);
}
.map__pin { position: absolute; left: 263px; top: 127px; width: 40px; height: 40px; transform: translate(-50%, -100%); }
.map__pin svg { width: 40px; height: 40px; position: relative; z-index: 1; filter: drop-shadow(0 6px 8px rgba(0, 0, 0, .6)); }
.map__pulse {
  position: absolute; left: 50%; bottom: -6px; width: 22px; height: 22px; border-radius: 50%;
  transform: translateX(-50%); background: rgba(212, 162, 76, .35);
  animation: mapPulse 2.2s ease-out infinite;
}
@keyframes mapPulse { 0% { transform: translateX(-50%) scale(.6); opacity: .9; } 100% { transform: translateX(-50%) scale(2.6); opacity: 0; } }
.map__card {
  position: absolute; left: 14px; bottom: 14px; max-width: calc(100% - 84px);
  display: flex; align-items: center; gap: 8px;
  background: rgba(14, 15, 17, .92); border: 1px solid rgba(212, 162, 76, .35); border-radius: 10px;
  padding: 9px 12px; font-size: .78rem; font-weight: 600;
}
.map__card b { color: var(--gold); font-weight: 700; }
.map__zoom { position: absolute; right: 14px; bottom: 14px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.map__zoom span { width: 30px; height: 30px; display: grid; place-items: center; background: rgba(14, 15, 17, .92); color: var(--text); font-weight: 700; }
.map__zoom span + span { border-top: 1px solid var(--line); }
.map::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, .45)); }

/* ---------- Rodapé da barbearia ---------- */
.bf { background: #0a0b0d; border-top: 1px solid var(--line); padding: 40px 0 28px; }
.bf__inner { display: grid; grid-template-columns: 1.2fr auto; gap: 24px 48px; align-items: center; }
.bf__brand { display: flex; align-items: center; gap: 12px; }
.bf__brand .bh__mark { width: 36px; height: 36px; }
.bf__brand strong { font-family: var(--display); font-weight: 400; font-size: 1.5rem; letter-spacing: .06em; line-height: 1; display: block; }
.bf__brand small { color: var(--muted); font-size: .82rem; }
.bf__nav { display: flex; flex-wrap: wrap; gap: 4px 18px; }
.bf__nav a { color: rgba(242, 237, 228, .8); text-decoration: none; font-size: .9rem; }
.bf__nav a:hover { color: var(--gold-2); }
.bf__copy { grid-column: 1 / -1; color: var(--muted); font-size: .82rem; border-top: 1px solid var(--line); padding-top: 18px; }

/* ---------- Revelar ao rolar (só quando o JS está ativo) ---------- */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.services .reveal:nth-child(2), .team .reveal:nth-child(2) { transition-delay: .08s; }
.services .reveal:nth-child(3), .team .reveal:nth-child(3) { transition-delay: .16s; }
.services .reveal:nth-child(4) { transition-delay: .06s; }
.services .reveal:nth-child(5) { transition-delay: .14s; }
.services .reveal:nth-child(6) { transition-delay: .22s; }

/* ---------- Responsivo ---------- */
/* Tablet paisagem / notebook pequeno: a coluna do hero encolhe e o cartão de horários invadia o poste
   (vai até 1140px para cobrir navegadores com barra de rolagem clássica de 15px) */
@media (max-width: 1140px) and (min-width: 981px) {
  .hero__visual { padding-left: 0; }
  .pole { width: min(48%, 210px); }
  .slots { width: min(100%, 240px); }
}

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__lead { max-width: 620px; }
  .hero__visual { min-height: 0; flex-direction: column; align-items: center; gap: 18px; padding-left: 0; }
  .pole { width: 150px; }
  .slots { position: static; width: min(100%, 340px); }
  .services, .team { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team .barber:last-child { grid-column: 1 / -1; width: 100%; max-width: 420px; justify-self: center; } /* 3 barbeiros em 2 colunas: o último ocupa a linha inteira, centralizado */
  .why, .hours, .contact { grid-template-columns: 1fr; gap: 36px; }
  .why__intro { position: static; }
}

@media (max-width: 860px) {
  /* No celular só a barra da Bluhertz fica grudada; o cabeçalho do modelo rola com a página (senão são ~170px fixos no topo) */
  .bh { position: relative; top: auto; }
  html { scroll-padding-top: calc(var(--mb-h) + 24px); }
  .bh__nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--bg); border-bottom: 1px solid var(--line);
    box-shadow: 0 30px 40px -20px rgba(0, 0, 0, .85);
    padding: 10px 20px 18px;
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: transform .3s var(--ease), opacity .3s var(--ease), visibility .3s;
  }
  .bh__nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .bh__nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .bh__nav a:not(.btn) { padding: 14px 12px; font-size: 1rem; }
  .bh__nav .btn { margin: 10px 0 0; }
  .bh__toggle { display: flex; }
}

@media (max-width: 600px) {
  .hero { padding: 40px 0 56px; }
  .hero__actions .btn { width: 100%; }
  .hero__proof { gap: 8px 18px; font-size: .85rem; }
  .services, .team { grid-template-columns: 1fr; }
  .team .barber:last-child { max-width: none; }
  .service, .barber { padding: 22px 20px 20px; }
  .why__item { grid-template-columns: auto minmax(0, 1fr); gap: 16px; padding: 22px 0; }
  .why__icon { display: none; }
  .why__num { font-size: 2.1rem; min-width: 40px; }
  .hours__table th, .hours__table td { padding: 13px 14px; }
  .hours__table tbody td { font-size: 1.2rem; }
  .contact__actions .btn { width: 100%; }
  .bf__inner { grid-template-columns: 1fr; }
  .strip__set { font-size: 1.1rem; }
}

@media (max-width: 380px) {
  .hero__title { font-size: 2.8rem; }
  .bh__name { font-size: 1.35rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
