/* ===================================================================
   Headmasters Aclimação — cabelo & estética
   Paleta tirada do próprio salão: madeira, cobre dos pendentes,
   concreto claro e o espresso do letreiro.
   =================================================================== */

:root {
  --ink: #271b11;
  --ink-soft: #5c4b3b;
  --paper: #faf5ee;
  --paper-2: #f1e8dc;
  --line: #e3d7c7;
  --copper: #b26e42;
  --copper-dark: #96562e;
  --copper-light: #d9a97f;
  --dusk: #1d1410;
  --star: #e0921f;
  --wa: #23a55a;
  --wa-dark: #1c8a4b;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --radius: 20px;
  --shadow-soft: 0 20px 50px -20px rgba(70, 45, 22, 0.28);
  --shadow-card: 0 10px 30px -14px rgba(70, 45, 22, 0.22);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--copper-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }

:focus-visible {
  outline: 2.5px solid var(--copper);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

/* ---------- Type ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 480;
  line-height: 1.04;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 em, h2 em {
  font-style: italic;
  font-weight: 420;
  color: var(--copper);
}

h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h3 { font-size: 1.35rem; font-weight: 540; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-dark);
  margin-bottom: 14px;
}

.eyebrow-light { color: var(--copper-light); }

.section { padding-block: clamp(72px, 9vw, 130px); }

.section-head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 64px); }

.section-lead { margin-top: 16px; color: var(--ink-soft); font-size: 1.1rem; }

.stars { color: var(--star); letter-spacing: 2px; font-size: 0.95rem; }

/* ---------- Botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.25s;
}

.btn::after {          /* brilho que varre no hover */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.35) 50%, transparent 65%);
  transform: translateX(-110%);
  transition: transform 0.7s var(--ease-out);
  pointer-events: none;
}

.btn:hover::after { transform: translateX(110%); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-copper {
  background: linear-gradient(160deg, var(--copper) 0%, var(--copper-dark) 100%);
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(150, 86, 46, 0.55);
}
.btn-copper:hover { box-shadow: 0 18px 34px -10px rgba(150, 86, 46, 0.6); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--copper-light); background: rgba(178,110,66,0.06); }

.btn-ghost-light { color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.35); }
.btn-ghost-light:hover { box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }

.btn-cream { background: var(--paper); color: var(--ink); box-shadow: 0 14px 30px -12px rgba(0,0,0,0.4); }

.btn-wa {
  background: linear-gradient(160deg, var(--wa) 0%, var(--wa-dark) 100%);
  color: #fff;
  width: 100%;
  justify-content: center;
  box-shadow: 0 12px 26px -10px rgba(28, 138, 75, 0.5);
}

.btn-small { padding: 11px 22px; font-size: 0.92rem; }

.ic-wa { width: 20px; height: 20px; flex: none; }

/* ---------- Topbar ---------- */

.topbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 60;
  transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}

.topbar.is-scrolled {
  background: rgba(250, 245, 238, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.topbar-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 14px clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark { width: 34px; height: 34px; color: var(--copper); flex: none; }

.brand-name {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-name em {
  font-style: normal;
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--copper-dark);
}

.nav { display: flex; gap: 26px; margin-inline: auto; }

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -5px;
  height: 2px;
  background: var(--copper);
  transition: right 0.3s var(--ease-out);
}

.nav a:hover::after { right: 0; }

.topbar-actions { display: flex; align-items: center; gap: 18px; margin-left: auto; }

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}

.phone-link svg { width: 17px; height: 17px; color: var(--copper); }
.phone-link:hover { color: var(--copper-dark); }

/* ---------- Hero ---------- */

.hero {
  padding-top: clamp(120px, 15vh, 170px);
  padding-bottom: clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}

/* fios de cabelo desenhados ao fundo */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(52% 44% at 82% 18%, rgba(217, 169, 127, 0.16), transparent 70%),
    radial-gradient(40% 36% at 8% 90%, rgba(178, 110, 66, 0.1), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  position: relative;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 6vw, 4.7rem);
  margin-bottom: 18px;
  position: relative;
}

.quote-mark {
  color: var(--copper-light);
  font-style: italic;
  font-weight: 300;
}

.hero-attribution {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1.16rem;
  color: var(--ink-soft);
  max-width: 33em;
  margin-bottom: 34px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.proof-score {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 560;
  color: var(--ink);
  line-height: 1;
}

.proof-stars { display: inline-flex; gap: 3px; }

.proof-stars i {
  width: 16px; height: 16px;
  background: var(--star);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.proof-stars i.half {
  background: linear-gradient(90deg, var(--star) 0 70%, var(--line) 70%);
}

.proof-text a { color: var(--copper-dark); }

/* colagem de fotos */
.hero-media {
  position: relative;
  min-height: 480px;
}

.hero-photo {
  position: absolute;
  inset: 0 0 8% 12%;
  border-radius: 30px 160px 30px 30px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-photo-small {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38%;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  overflow: hidden;
  border: 6px solid var(--paper);
  box-shadow: var(--shadow-soft);
}

.hero-photo-small img { width: 100%; height: 100%; object-fit: cover; }

.hero-chip {
  position: absolute;
  top: 8%;
  right: -2%;
  max-width: 240px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
  transition: opacity 0.5s, transform 0.5s var(--ease-out);
}

.hero-chip.is-swapping { opacity: 0; transform: translateY(8px); }

.hero-chip-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.35;
  margin-top: 4px;
}

.hero-chip-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ---------- Marquee ---------- */

.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding-block: 16px;
  background: var(--paper-2);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 480;
  white-space: nowrap;
}

.marquee-track span i { font-style: italic; color: var(--copper-dark); }

.marquee-track b { color: var(--copper-light); font-weight: 400; }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Serviços ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px -18px rgba(70, 45, 22, 0.32);
}

.service-card figure { aspect-ratio: 4 / 3; overflow: hidden; }

.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.service-card:hover img { transform: scale(1.06); }

.service-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-body p { color: var(--ink-soft); font-size: 0.95rem; margin: 8px 0 16px; }

.service-cta {
  margin-top: auto;
  align-self: flex-start;
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--copper-dark);
  cursor: pointer;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.service-cta span { transition: transform 0.3s var(--ease-out); }
.service-cta:hover span { transform: translateX(4px); }

.service-card-featured {
  grid-column: span 2;
  background: linear-gradient(150deg, var(--dusk), #3a2415);
  color: var(--paper);
}

.service-card-featured h3 { color: var(--paper); }
.service-card-featured p { color: rgba(250, 245, 238, 0.75); }
.service-card-featured .service-cta { color: var(--copper-light); }
.service-card-featured figure { aspect-ratio: 21 / 9; }

/* ---------- Galeria ---------- */

.gallery { background: var(--paper-2); }

.gallery-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px clamp(20px, calc((100vw - var(--container)) / 2 + 40px), 50vw) 24px;
  scroll-snap-type: x proximity;
  scroll-padding-inline: clamp(20px, calc((100vw - var(--container)) / 2 + 40px), 50vw);
  scrollbar-width: thin;
  scrollbar-color: var(--copper-light) transparent;
}

.gallery-scroll figure {
  flex: none;
  width: clamp(220px, 26vw, 300px);
  scroll-snap-align: start;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.gallery-scroll figure:nth-child(even) { margin-top: 26px; }

.gallery-scroll img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.gallery-scroll figure:hover img { transform: scale(1.05); }

.gallery-scroll figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 30px 16px 12px;
  background: linear-gradient(transparent, rgba(29, 20, 16, 0.75));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.gallery-hint {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin-top: 6px;
  padding-inline: 20px;
}

/* ---------- Avaliações ---------- */

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) 2fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}

.reviews-head { position: sticky; top: 110px; }

.reviews-score {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-block: 24px 12px;
}

.score-big {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 520;
  line-height: 1;
}

.reviews-score p { font-size: 0.88rem; color: var(--ink-soft); margin-top: 4px; }

.reviews-note { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 24px; }

.reviews-grid {
  columns: 2;
  column-gap: 22px;
}

.review-card {
  break-inside: avoid;
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 28px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.review-card:hover {
  transform: translateY(-4px) rotate(-0.4deg);
  box-shadow: 0 22px 44px -18px rgba(70, 45, 22, 0.3);
}

.review-card p {
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 420;
  line-height: 1.5;
  margin-block: 12px 14px;
}

.review-card footer {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.review-card footer::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--copper-light);
  vertical-align: middle;
  margin-right: 10px;
}

/* ---------- Visita / mapa ---------- */

.visit {
  position: relative;
  color: var(--paper);
  padding-block: clamp(80px, 10vw, 140px);
  overflow: hidden;
}

.visit-bg { position: absolute; inset: 0; }

.visit-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 65%; }

.visit-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 13, 9, 0.93) 30%, rgba(20, 13, 9, 0.55) 70%, rgba(20, 13, 9, 0.75));
}

.visit-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}

.visit h2 { color: var(--paper); margin-bottom: 22px; }
.visit h2 em { color: var(--copper-light); }

.visit address {
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 26px;
}

.hours { max-width: 340px; margin-bottom: 26px; }

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 9px;
  border-bottom: 1px solid rgba(250, 245, 238, 0.18);
  font-size: 0.98rem;
}

.hours dt { color: rgba(250, 245, 238, 0.72); }
.hours dd { font-weight: 700; }

.visit-badge {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--copper-light);
  margin-bottom: 30px;
}

.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.6);
  border: 5px solid rgba(250, 245, 238, 0.12);
}

.visit-map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  filter: saturate(0.85);
}

/* ---------- CTA final ---------- */

.final-cta {
  background: linear-gradient(160deg, var(--copper-dark), var(--copper) 65%, var(--copper-light));
  color: #fff;
  text-align: center;
  padding-block: clamp(70px, 9vw, 120px);
}

.final-cta h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 14px; }
.final-cta h2 em { color: var(--dusk); }
.final-cta p { margin-bottom: 30px; font-size: 1.1rem; opacity: 0.95; }
.final-cta p a { color: #fff; font-weight: 700; }

/* ---------- Footer ---------- */

.footer { background: var(--dusk); color: rgba(250, 245, 238, 0.8); padding-top: 60px; }

/* folga extra para nada ficar atrás da barra fixa / FAB */
.footer-fine { margin-bottom: 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand { display: flex; gap: 12px; align-items: flex-start; }
.footer-brand .brand-mark { color: var(--copper-light); }
.footer-brand strong { display: block; color: var(--paper); font-size: 1.15rem; }
.footer-brand span { font-size: 0.85rem; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-cols h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 12px;
}

.footer-cols a { display: block; color: rgba(250, 245, 238, 0.85); text-decoration: none; margin-bottom: 8px; }
.footer-cols a:hover { color: #fff; text-decoration: underline; }
.footer-cols p { font-size: 0.98rem; }

.footer-fine {
  border-top: 1px solid rgba(250, 245, 238, 0.12);
  padding: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(250, 245, 238, 0.45);
}

/* ---------- FAB + barra mobile ---------- */

.fab {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 55;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(160deg, var(--wa), var(--wa-dark));
  color: #fff;
  cursor: pointer;
  box-shadow: 0 14px 30px -8px rgba(28, 138, 75, 0.6);
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease-out);
}

.fab:hover { transform: scale(1.08); }
.fab svg { width: 30px; height: 30px; }

/* barra e FAB se recolhem quando o rodapé aparece */
.fab, .mobile-bar { transition: transform 0.4s var(--ease-out), opacity 0.4s; }

.fab.is-hidden, .mobile-bar.is-hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.fab-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--wa);
  animation: fab-pulse 2.6s ease-out infinite;
}

@keyframes fab-pulse {
  0% { transform: scale(1); opacity: 0.9; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}

.fab-tip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  translate: 0 -50%;
  background: var(--dusk);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, translate 0.4s var(--ease-out);
}

.fab:hover .fab-tip,
.fab.show-tip .fab-tip { opacity: 1; translate: -4px -50%; }

.mobile-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 55;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(250, 245, 238, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}

.mobile-bar-cta { flex: 1; justify-content: center; }

.mobile-bar-phone {
  width: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1.5px var(--line);
  color: var(--copper-dark);
}

.mobile-bar-phone svg { width: 22px; height: 22px; }

/* ---------- Concierge ---------- */

.concierge { position: fixed; inset: 0; z-index: 100; display: grid; place-items: end center; }

.concierge[hidden] { display: none; }

@media (min-width: 640px) { .concierge { place-items: center; } }

.concierge-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(29, 20, 16, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s;
}

.concierge.is-open .concierge-backdrop { opacity: 1; }

.concierge-sheet {
  position: relative;
  width: min(520px, 100%);
  max-height: 92dvh;
  overflow-y: auto;
  background: var(--paper);
  border-radius: 26px 26px 0 0;
  padding: 34px 30px 30px;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.45s var(--ease-out), opacity 0.35s;
}

@media (min-width: 640px) { .concierge-sheet { border-radius: 26px; } }

.concierge.is-open .concierge-sheet { transform: translateY(0); opacity: 1; }

.concierge-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--paper-2);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.concierge-close:hover { background: var(--line); transform: rotate(90deg); }

.concierge-sheet h3 { font-size: 1.7rem; margin-bottom: 6px; }
.concierge-sub { color: var(--ink-soft); margin-bottom: 20px; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 20px; }

.chip {
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.2s var(--ease-out);
}

.chip:hover { border-color: var(--copper-light); transform: translateY(-1px); }

.chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.concierge-name { display: block; margin-bottom: 20px; }

.concierge-name span {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.concierge-name em { font-weight: 400; color: var(--ink-soft); }

.concierge-name input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.25s;
}

.concierge-name input:focus { outline: none; border-color: var(--copper); }

.wa-preview {
  background: #e7dfd2 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M15 12c4 0 6 3 6 6M40 34c-4 1-7-1-8-4M22 48c2-3 6-4 9-2' stroke='%23d8cbb8' fill='none' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 18px;
}

.wa-bubble {
  position: relative;
  background: #dcf8c6;
  border-radius: 4px 14px 14px 14px;
  padding: 12px 15px;
  font-size: 0.97rem;
  line-height: 1.45;
  color: #1b2b20;
  box-shadow: 0 1px 2px rgba(0,0,0,0.12);
  max-width: 92%;
}

.wa-time {
  display: block;
  text-align: right;
  font-size: 0.72rem;
  color: #7d8b80;
  margin-top: 6px;
  padding-right: 6px;
}

.concierge-alt { text-align: center; font-size: 0.9rem; color: var(--ink-soft); margin-top: 16px; }

/* ---------- Reveal on scroll ---------- */

.reveal, .reveal-media {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-media { transform: translateY(0) scale(0.97); }

.reveal.is-in, .reveal-media.is-in {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.4s; }

/* ---------- Responsivo ---------- */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-featured { grid-column: span 2; }
  .nav { display: none; }
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { min-height: 0; height: 420px; order: -1; display: none; }
  .hero { padding-top: 110px; }
  .hero-media-mobile-show { display: block; }
  .reviews-layout { grid-template-columns: 1fr; }
  .reviews-head { position: static; }
  .reviews-grid { columns: 1; }
  .visit-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .topbar-actions .btn, .phone-link span { display: none; }
  .phone-link { font-size: 0; gap: 0; }
  .phone-link svg { width: 20px; height: 20px; }
  .mobile-bar { display: flex; }
  .fab { display: none; }
  body { padding-bottom: 0; }
  .footer-fine { padding-bottom: calc(88px + env(safe-area-inset-bottom)); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-featured { grid-column: auto; }
  .footer-cols { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  /* no mobile mostramos só a foto principal, sem colagem */
  .hero-media {
    display: block;
    height: auto;
    order: 2;
  }
  .hero-photo {
    position: relative;
    inset: auto;
    aspect-ratio: 4 / 3;
    border-radius: 24px 90px 24px 24px;
  }
  .hero-photo-small, .hero-chip { display: none; }
}

/* ---------- Movimento reduzido ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
  .fab-ring { animation: none; }
  .reveal, .reveal-media {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn::after { display: none; }
  * { transition-duration: 0.01ms !important; }
}
