/* ============================================================
   DILL BLACK — Barbearia · estilo escuro premium (preto + dourado)
   ============================================================ */

:root {
  --bg:        #0b0b0d;
  --bg-2:      #0f0f12;
  --panel:     #141418;
  --panel-2:   #17171c;
  --line:      rgba(201, 162, 75, 0.16);
  --line-soft: rgba(255, 255, 255, 0.07);

  --gold:        #c9a24b;
  --gold-bright: #e7c777;
  --gold-deep:   #8f6c24;
  --gold-grad: linear-gradient(135deg, #8f6c24 0%, #d8b65f 38%, #f5e7b8 52%, #c39a3f 72%, #8f6c24 100%);

  --text:  #ece9e2;
  --cream: #f4ecda;
  --muted: #8f8c84;
  --faint: #57554f;

  --font-display: 'Oswald', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-quote: 'Cormorant Garamond', serif;

  --overlay: 0.62;             /* hero darkening, tweakable */
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* image-slot empty-state — make the drop hint legible on dark surfaces */
image-slot::part(frame) { background: rgba(201, 162, 75, 0.045); }
image-slot::part(empty) { color: rgba(201, 162, 75, 0.72); }

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

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 13px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.h-section {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.02;
  font-size: clamp(38px, 5.5vw, 66px);
  margin: 0;
  width: 100%;
  color: var(--cream);
}
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section { position: relative; padding: clamp(80px, 11vw, 140px) 0; overflow: hidden; }
.section-head { max-width: 640px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.section-head.center { margin: 0 auto; text-align: center; align-items: center; }
.lead { color: var(--muted); font-size: 18px; max-width: 56ch; width: 100%; margin: 0; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }

/* skull watermark */
.watermark {
  position: absolute;
  pointer-events: none;
  opacity: 0.05;
  filter: grayscale(1) brightness(1.4);
  mix-blend-mode: screen;
  z-index: 0;
}
body.no-skull .watermark { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 14px;
  padding: 16px 30px;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold-grad);
  color: #1a1407;
  box-shadow: 0 8px 30px -10px rgba(201, 162, 75, 0.5);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -10px rgba(201, 162, 75, 0.65); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, padding 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
  padding: 11px 28px;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand img { width: 46px; height: 46px; transition: width 0.4s var(--ease), height 0.4s var(--ease); }
.nav.scrolled .brand img { width: 40px; height: 40px; }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word b {
  font-family: var(--font-display); font-weight: 700; font-size: 19px;
  letter-spacing: 0.18em; color: var(--cream); text-transform: uppercase;
  white-space: nowrap;
}
.brand-word span {
  font-family: var(--font-display); font-weight: 400; font-size: 9.5px;
  letter-spacing: 0.46em; color: var(--gold); text-transform: uppercase; margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-family: var(--font-display); font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 13px; color: var(--text); opacity: 0.82;
  position: relative; padding: 4px 0; transition: opacity 0.3s, color 0.3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.nav-links a:hover { opacity: 1; color: var(--gold-bright); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--cream); cursor: pointer; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 85% at 78% 16%, rgba(201,162,75,0.16), transparent 58%),
    radial-gradient(90% 70% at 18% 92%, rgba(201,162,75,0.07), transparent 55%),
    linear-gradient(160deg, #16161b 0%, #0d0d10 55%, #08080a 100%);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 78% 18%, rgba(201,162,75,0.10), transparent 55%),
    linear-gradient(90deg, rgba(8,8,10,calc(var(--overlay) + 0.18)) 0%, rgba(8,8,10,var(--overlay)) 45%, rgba(8,8,10,calc(var(--overlay) - 0.18)) 100%),
    linear-gradient(0deg, var(--bg) 2%, transparent 38%);
}
.hero-content { position: relative; z-index: 3; padding: 130px 28px 80px; max-width: 760px; }
.hero h1 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(40px, 6.6vw, 86px); line-height: 0.94; letter-spacing: 0.005em;
  margin: 22px 0 0; color: var(--cream);
  display: flex; flex-direction: column;
}
.hero h1 .l1, .hero h1 .l2 { display: block; }
.hero h1 .l2 { white-space: nowrap; padding-bottom: 0.08em; }
.hero-sub { color: var(--muted); font-size: clamp(17px, 2vw, 21px); margin-top: 24px; max-width: 48ch; }
.hero-cta { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 26px; margin-top: 44px;
  flex-wrap: wrap; color: var(--muted); font-size: 14px;
}
.hero-trust .div { width: 1px; height: 26px; background: var(--line-soft); }
.stars { color: var(--gold-bright); letter-spacing: 2px; font-size: 15px; }
.trust-item b { color: var(--cream); font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: 0.04em; }
.trust-item { display: flex; align-items: center; gap: 9px; white-space: nowrap; }
.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  color: var(--faint); font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.3em; font-size: 10px; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint .bar { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: scrollpulse 2.4s var(--ease) infinite; }
@keyframes scrollpulse { 0%,100%{ opacity: 0.3; transform: scaleY(0.6); } 50%{ opacity: 1; transform: scaleY(1); } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2); overflow: hidden; padding: 20px 0;
  position: relative; z-index: 5;
}
.marquee-track { display: flex; gap: 46px; width: max-content; animation: marquee 38s linear infinite; }
.marquee.rev .marquee-track { animation-direction: reverse; }
.marquee span {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.22em; font-size: 17px; color: var(--cream); opacity: 0.78;
  display: inline-flex; align-items: center; gap: 46px; white-space: nowrap;
}
.marquee span i { color: var(--gold); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SERVICES (menu style)
   ============================================================ */
.services { background: var(--bg); }
.menu-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px 88px;
  margin-top: 64px; position: relative; z-index: 2;
}
.menu-group h3 {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.2em; font-size: 15px; color: var(--gold);
  margin: 0 0 22px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
}
.menu-group h3 .num { color: var(--faint); font-size: 12px; }
.menu-item { display: flex; align-items: baseline; gap: 12px; padding: 14px 0; border-bottom: 1px dashed var(--line-soft); }
.menu-item:last-child { border-bottom: 0; }
.mi-main { flex: 1; min-width: 0; }
.mi-name { font-family: var(--font-display); font-weight: 500; font-size: 19px; letter-spacing: 0.04em; color: var(--cream); text-transform: uppercase; }
.mi-desc { color: var(--muted); font-size: 14px; margin-top: 3px; }
.mi-dots { flex: 1; border-bottom: 1px dotted var(--faint); transform: translateY(-5px); min-width: 18px; }
.mi-price { font-family: var(--font-quote); font-weight: 600; font-size: 26px; color: var(--gold-bright); white-space: nowrap; }
.mi-price small { font-family: var(--font-body); font-size: 13px; color: var(--muted); margin-left: 3px; }
.services-note { margin-top: 50px; color: var(--faint); font-size: 13.5px; display: flex; align-items: center; gap: 10px; }

/* ============================================================
   TEAM
   ============================================================ */
.team { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 64px; position: relative; z-index: 2; }
.barber { position: relative; }
.barber .photo {
  position: relative; aspect-ratio: 3 / 4; overflow: hidden; border-radius: 3px;
  border: 1px solid var(--line);
}
.barber .photo image-slot { width: 100%; height: 100%; }
.barber .photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(0deg, rgba(8,8,10,0.85) 0%, transparent 42%);
}
.barber-info { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 2; }
.barber-info .role { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.24em; font-size: 11px; color: var(--gold); }
.barber-info .name { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 26px; color: var(--cream); margin-top: 4px; line-height: 1; }
.barber-info .spec { color: var(--muted); font-size: 13.5px; margin-top: 8px; }
.barber .ig { position: absolute; top: 16px; right: 16px; z-index: 3; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: rgba(8,8,10,0.5); backdrop-filter: blur(6px); color: var(--cream); transition: all 0.3s; }
.barber .ig:hover { border-color: var(--gold); color: var(--gold-bright); }
.barber .ig svg { width: 17px; height: 17px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--bg); }
.reviews-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.rating-badge { display: flex; align-items: center; gap: 20px; }
.rating-num { font-family: var(--font-display); font-weight: 700; font-size: 76px; line-height: 0.8; color: var(--cream); }
.rating-meta .stars { font-size: 22px; }
.rating-meta .src { color: var(--muted); font-size: 13.5px; margin-top: 8px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; position: relative; z-index: 2; }
.review-card { background: var(--panel); border: 1px solid var(--line); border-radius: 4px; padding: 34px 30px; position: relative; transition: border-color 0.4s, transform 0.4s var(--ease); }
.review-card:hover { border-color: rgba(201,162,75,0.4); transform: translateY(-4px); }
.review-card .q { font-family: var(--font-quote); font-size: 22px; line-height: 1.45; color: var(--cream); font-weight: 500; }
.review-card .stars { font-size: 14px; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 13px; margin-top: 26px; }
.review-author .av { width: 42px; height: 42px; border-radius: 50%; background: var(--gold-grad); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #1a1407; font-size: 17px; }
.review-author .who b { display: block; font-family: var(--font-display); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; font-size: 14px; color: var(--cream); }
.review-author .who span { font-size: 12.5px; color: var(--muted); }

/* reviews carousel */
.reviews-carousel { position: relative; margin-top: 56px; z-index: 2; }
.review-track {
  display: flex; gap: 24px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px;
  margin: -4px;
}
.review-track::-webkit-scrollbar { display: none; }
.review-track:focus-visible { outline: 1px solid var(--gold); outline-offset: 6px; border-radius: 4px; }
.review-track .review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  display: flex; flex-direction: column;
}
.review-track .review-card .review-author { margin-top: auto; }
.carousel-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 32px; }
.car-arrow {
  width: 46px; height: 46px; flex: none;
  border: 1px solid var(--line); border-radius: 50%;
  background: transparent; color: var(--cream);
  display: grid; place-items: center; cursor: pointer;
  transition: border-color .3s, color .3s, transform .3s var(--ease), opacity .3s;
}
.car-arrow svg { width: 18px; height: 18px; }
.car-arrow:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }
.car-arrow:disabled { opacity: .3; cursor: default; transform: none; }
.car-dots { display: flex; align-items: center; gap: 9px; }
.car-dot {
  width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%;
  background: var(--line-soft); cursor: pointer;
  transition: background .3s, width .3s var(--ease);
}
.car-dot:hover { background: var(--muted); }
.car-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
@media (max-width: 900px) { .review-track .review-card { flex-basis: calc((100% - 24px) / 2); } }
@media (max-width: 680px) { .review-track .review-card { flex-basis: 100%; } }

/* ============================================================
   BOOKING
   ============================================================ */
.booking { background: var(--bg-2); border-top: 1px solid var(--line); }
.booking-wrap { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 50px; align-items: start; margin-top: 56px; }
.booking-info .info-row { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line-soft); }
.booking-info .info-row > div:last-child { flex: 1; min-width: 0; }
.booking-info .info-row:first-child { padding-top: 0; }
.info-row .ico { width: 42px; height: 42px; flex: none; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--gold); }
.info-row .ico svg { width: 18px; height: 18px; }
.info-row .label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.2em; font-size: 11px; color: var(--gold); }
.info-row .val { color: var(--cream); margin-top: 3px; font-size: 15.5px; }
.info-row .val .closed { color: var(--faint); }
.booking-frame {
  position: relative; border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(201,162,75,0.10), transparent 60%),
    var(--panel);
  min-height: 560px; display: flex; align-items: center; justify-content: center;
}
.book-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 20px; padding: 56px 44px; max-width: 440px;
}
.book-card-logo img { width: 92px; height: 92px; filter: drop-shadow(0 8px 30px rgba(201,162,75,0.28)); }
.book-card-title {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.04em; line-height: 0.98; font-size: clamp(30px, 4vw, 42px);
  color: var(--cream); margin: 0; width: 100%;
}
.book-card-desc { color: var(--muted); font-size: 16px; margin: 0; width: 100%; max-width: 34ch; line-height: 1.6; }
.book-card-btn { margin-top: 6px; padding: 17px 38px; font-size: 15px; }
.book-card-foot {
  display: flex; align-items: center; gap: 10px; margin-top: 8px;
  color: var(--faint); font-size: 13px;
}
.book-card-foot .stars { font-size: 13px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 44px; }
.footer-brand img { width: 78px; height: 78px; }
.footer-brand p { color: var(--muted); font-size: 14.5px; margin: 20px 0 0; max-width: 30ch; }
.foot-col h5 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.22em; font-size: 12px; color: var(--gold); margin: 6px 0 20px; }
.foot-col a, .foot-col p { display: block; color: var(--muted); font-size: 14.5px; margin: 0 0 12px; transition: color 0.3s; }
.foot-col a:hover { color: var(--gold-bright); }
.hours-row { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; color: var(--muted); padding: 7px 0; }
.hours-row b, .hours-row span { white-space: nowrap; }
.hours-row.open b { color: var(--cream); font-weight: 500; }
.hours-row.shut span:last-child { color: var(--faint); }
.foot-map { border: 1px solid var(--line); border-radius: 6px; overflow: hidden; height: 200px; background: #15171c; }
.foot-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(0.9) contrast(0.86) hue-rotate(180deg); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 64px; padding: 26px 0; border-top: 1px solid var(--line-soft); color: var(--faint); font-size: 13px; }
.footer-bottom .socials { display: flex; gap: 14px; }
.footer-bottom .socials a { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--muted); transition: all 0.3s; }
.footer-bottom .socials a:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }
.footer-bottom .socials svg { width: 16px; height: 16px; }

/* ============================================================
   reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .scroll-hint .bar { animation: none; }
}

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 900px) {
  .menu-grid { grid-template-columns: 1fr; gap: 44px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .booking-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(8,8,10,0.97); backdrop-filter: blur(14px); padding: 26px 28px; gap: 20px;
    border-bottom: 1px solid var(--line); align-items: flex-start;
  }
  .nav-toggle { display: grid; place-items: center; }
  .nav-right .btn-agendar-text { display: none; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust .div { display: none; }
  .brand-word span { display: none; }
  .watermark { display: none; }
}
