﻿/* ===========================================================
   Barbearia Soares — versão simples (HTML + CSS + JS)
   Dark + champagne gold
   =========================================================== */

:root {
  --bg:        #0E0D0B;
  --bg-2:      #141310;
  --bg-3:      #1B1A16;
  --line:      #2A2823;
  --line-2:    #3A372F;
  --ink:       #F2EFE6;
  --ink-2:     #C8C3B3;
  --ink-3:     #807B6E;
  --gold:      #D4AF7A;
  --gold-2:    #E8C892;
  --gold-line: rgba(212, 175, 122, 0.32);

  --serif:  "Cormorant Garamond", Georgia, serif;
  --sans:   "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --script: "Italianno", cursive;

  --r-md: 12px;
  --r-lg: 20px;
  --shadow-card: 0 30px 60px -30px rgba(0,0,0,.7);
}

* { box-sizing: border-box; min-width: 0; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100vw;
}
html { overflow-x: hidden; }

img { max-width: 100%; height: auto; display: block; }
.about__media-card img,
.barber__photo img { width: 100%; height: 100%; object-fit: cover; }

button, input, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 11px;
  color: var(--gold);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
  margin-right: 12px;
  vertical-align: middle;
  transform: translateY(-2px);
}

.section {
  position: relative;
  padding: 120px 32px;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 2;
}

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  background: rgba(14, 13, 11, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding .3s, border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--line); padding: 12px 40px; }
.nav__logo { height: 38px; transition: height .3s; }
.nav.scrolled .nav__logo { height: 32px; }

.nav__links {
  display: flex; gap: 36px;
  list-style: none; margin: 0; padding: 0;
}
.nav__links a {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  transition: color .2s;
}
.nav__links a:hover { color: var(--gold); }
.nav__links a::after {
  content: ""; position: absolute;
  left: 50%; bottom: 0; height: 1px; width: 0;
  background: var(--gold);
  transition: width .25s, left .25s;
}
.nav__links a:hover::after { width: 100%; left: 0; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
}
.nav__cta:hover { background: var(--gold); color: var(--bg); }

.nav__burger {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--ink);
  position: relative;
}
.nav__burger span::before,
.nav__burger span::after {
  content: ""; position: absolute; left: 0;
  width: 22px; height: 1px; background: var(--ink);
  transition: transform .25s;
}
.nav__burger span::before { top: -7px; }
.nav__burger span::after  { top:  7px; }
.nav.open .nav__burger span { background: transparent; }
.nav.open .nav__burger span::before { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__burger span::after  { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav { padding: 14px 20px; }
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__cta { display: none; }
}

.mobile-menu {
  position: fixed; inset: 0; top: 68px;
  background: rgba(14,13,11,.96);
  backdrop-filter: blur(20px);
  z-index: 49;
  transform: translateY(-110%);
  transition: transform .35s ease;
  padding: 40px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}
.mobile-menu a span {
  color: var(--gold);
  margin-right: 18px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.2em;
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid; place-items: center;
  padding: 120px 32px 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(14,13,11,0.88), rgba(14,13,11,0.78) 40%, rgba(14,13,11,0.95)),
    url("assets/interior-chairs.jpg") center 30% / cover no-repeat;
}
.hero__inner { text-align: center; max-width: 920px; position: relative; }
.hero__logo {
  max-width: 360px;
  margin: 0 auto 28px;
  filter: drop-shadow(0 8px 40px rgba(212,175,122,.18));
}
.hero__tag {
  font-family: var(--script);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--gold);
  margin: 12px 0 4px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.02;
  margin: 8px 0 24px;
  text-wrap: balance;
}
.hero__title em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero__sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero__meta {
  display: flex; justify-content: center; gap: 36px;
  margin-top: 60px;
  flex-wrap: wrap;
  color: var(--ink-3);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__meta strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  text-transform: none;
  margin-bottom: 4px;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 36px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #1A1408;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 18px 40px -16px rgba(212,175,122,.55);
  transition: transform .25s, box-shadow .25s;
}
.btn-primary:hover { transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 30px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
}
.btn-ghost:hover { background: rgba(212,175,122,.12); border-color: var(--gold); }

/* ===========================================================
   SOBRE
   =========================================================== */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about__media-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--bg-2);
}
.about__media-card--tall { grid-row: 1 / span 2; aspect-ratio: 3 / 5; }
.about__media-card--wide { aspect-ratio: 4 / 3; }
.about__media-card--badge {
  background: linear-gradient(180deg, #16140F, #0E0D0B);
  border: 1px solid var(--gold-line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  aspect-ratio: 4 / 3;
}
.about__media-card--badge .badge-num {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
}
.about__media-card--badge .badge-sub {
  margin-top: 14px;
  font-family: var(--script);
  color: var(--ink);
  font-size: 24px;
}
.about__media-card--badge .badge-label {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.about__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  margin: 18px 0 10px;
  text-wrap: balance;
}
.about__title em { color: var(--gold); font-style: italic; font-weight: 400; }
.about__body { color: var(--ink-2); font-size: 17px; line-height: 1.8; }
.about__body p { margin: 0 0 20px; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.about__stats > div {
  padding: 24px 16px 0;
  border-right: 1px solid var(--line);
}
.about__stats > div:last-child { border-right: 0; }
.about__stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 38px;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}
.about__stats span {
  display: block;
  color: var(--ink-3);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ===========================================================
   GALERIA
   =========================================================== */
.gallery__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  margin-bottom: 48px;
}
.gallery__head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  margin: 14px 0 0;
}
.gallery__head h2 em { color: var(--gold); font-style: italic; font-weight: 400; }
.gallery__head p {
  color: var(--ink-2);
  margin: 18px 0 0;
  max-width: 560px;
}
.gallery__counter {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold);
  font-style: italic;
  display: inline-flex; align-items: center; gap: 14px;
}
.gallery__counter::before { content: ""; width: 40px; height: 1px; background: var(--gold); }

.gallery__grid {
  column-count: 4;
  column-gap: 14px;
}
@media (max-width: 1100px) { .gallery__grid { column-count: 3; } }
@media (max-width: 720px)  { .gallery__grid { column-count: 2; } }
@media (max-width: 460px)  { .gallery__grid { column-count: 1; } }

.gallery__item {
  display: block;
  break-inside: avoid;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--bg-2);
  border: 1px solid var(--line);
  cursor: zoom-in;
  width: 100%;
  padding: 0;
  min-height: 160px;
  transition: border-color .3s, transform .3s;
}
.gallery__item:hover { border-color: var(--gold-line); transform: translateY(-2px); }
.gallery__item img {
  width: 100%; height: auto;
  transition: transform 1s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__cta { text-align: center; margin-top: 44px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(8,7,6,.92);
  backdrop-filter: blur(20px);
  z-index: 200;
  display: grid; place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  padding: 60px 80px;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox__img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-md);
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: transparent;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: all .25s;
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold); color: #1A1408; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__counter {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--gold);
}

/* ===========================================================
   DEPOIMENTOS
   =========================================================== */
.testimonials__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.testimonials__head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  margin: 14px 0 0;
}
.testimonials__head h2 em { color: var(--gold); font-style: italic; font-weight: 400; }
.testimonials__head p { color: var(--ink-2); margin: 18px 0 0; }

.rating-card {
  background: linear-gradient(180deg, #16140F, #0E0D0B);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-md);
  padding: 24px 26px;
}
.rating-card__top { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.rating-card__brand {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.rating-card__score {
  font-family: var(--serif);
  font-size: 64px;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
}
.rating-card__count { color: var(--ink-3); font-size: 13px; margin: 8px 0 18px; }
.rating-card__cta { width: 100%; justify-content: center; padding: 14px 22px; }

.stars { display: inline-flex; gap: 2px; color: var(--gold); margin-top: 4px; }
.stars svg { width: 16px; height: 16px; fill: currentColor; }

.reviews-wrap { position: relative; margin: 0 -32px; padding: 0 32px; }
.reviews {
  display: flex; gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 28px;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}
.reviews::-webkit-scrollbar { height: 6px; }
.reviews::-webkit-scrollbar-thumb { background: var(--gold-line); border-radius: 3px; }

.review {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .25s, transform .25s;
}
.review:hover { border-color: var(--gold-line); transform: translateY(-2px); }
.review__head { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; }
.review__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-3);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 500;
  color: var(--gold);
  border: 1px solid var(--gold-line);
}
.review__name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.review__when {
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 2px;
}
.review__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.review__text::before { content: "\201C"; color: var(--gold); font-size: 28px; line-height: 0; margin-right: 4px; vertical-align: -10px; }
.review__text::after  { content: "\201D"; color: var(--gold); font-size: 28px; line-height: 0; margin-left: 2px; vertical-align: -10px; }

.reviews-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(14,13,11,.9);
  border: 1px solid var(--gold-line);
  color: var(--gold);
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: all .25s;
}
.reviews-nav:hover { background: var(--gold); color: #1A1408; }
.reviews-nav--prev { left: -8px; }
.reviews-nav--next { right: -8px; }

/* ===========================================================
   AGENDAR
   =========================================================== */
.booking {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.booking__head { text-align: center; margin-bottom: 60px; }
.booking__head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  margin: 14px 0 12px;
}
.booking__head h2 em { color: var(--gold); font-style: italic; font-weight: 400; }
.booking__head p { color: var(--ink-2); max-width: 560px; margin: 0 auto; }

.booking__card {
  background: linear-gradient(180deg, #16140F, #0E0D0B);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  padding: 48px;
  max-width: 940px;
  margin: 0 auto;
  position: relative;
}
.booking__card::before {
  content: ""; position: absolute;
  inset: 16px;
  border: 1px solid var(--gold-line);
  border-radius: calc(var(--r-lg) - 6px);
  pointer-events: none;
  opacity: .35;
}

.step + .step { margin-top: 36px; padding-top: 36px; border-top: 1px dashed var(--line-2); }
.step__label {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
  position: relative;
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}
.step__title { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.step__hint {
  margin-left: auto;
  color: var(--ink-3);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Service tiles */
.services { display: flex; flex-direction: column; gap: 26px; position: relative; }
.services__group-title {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 14px;
}
.services__group-title::after {
  content: "";
  flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}
.services__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.service {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  transition: all .2s;
}
.service:hover { border-color: var(--gold-line); background: #1F1D17; }
.service.selected {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212,175,122,.08), transparent 60%), var(--bg-3);
  box-shadow: 0 0 0 1px var(--gold) inset;
}
.service__check {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
}
.service.selected .service__check { background: var(--gold); border-color: var(--gold); }
.service.selected .service__check::after {
  content: "";
  width: 5px; height: 9px;
  border: solid #1A1408;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}
.service__body { display: flex; flex-direction: column; gap: 3px; }
.service__name { font-family: var(--serif); font-size: 17px; font-weight: 500; line-height: 1.2; }
.service__duration { font-size: 11px; color: var(--ink-3); letter-spacing: 0.14em; text-transform: uppercase; }
.service__price { font-family: var(--serif); font-size: 17px; color: var(--gold); font-weight: 500; white-space: nowrap; }

/* Barber */
.barbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.barber {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 16px 18px;
  cursor: pointer;
  text-align: center;
  transition: all .25s;
}
.barber:hover { border-color: var(--gold-line); background: #1F1D17; }
.barber.selected {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212,175,122,.10), transparent 70%), var(--bg-3);
  box-shadow: 0 0 0 1px var(--gold) inset;
}
.barber__photo {
  width: 86px; height: 86px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  margin-bottom: 10px;
  background: #100E0B;
  transition: border-color .25s, transform .35s;
}
.barber.selected .barber__photo { border-color: var(--gold); transform: scale(1.04); }
.barber__glyph {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  color: var(--gold);
  background: var(--bg-3);
}
.barber__glyph svg { width: 50%; height: 50%; }
.barber__name { font-family: var(--serif); font-size: 22px; font-weight: 500; line-height: 1.1; }
.barber__role { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.barber__tag { font-size: 12px; color: var(--ink-3); margin-top: 4px; font-style: italic; font-family: var(--serif); }
.barber__check {
  position: absolute;
  top: 14px; right: 14px;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
}
.barber.selected .barber__check { background: var(--gold); border-color: var(--gold); }
.barber.selected .barber__check::after {
  content: "";
  width: 5px; height: 9px;
  border: solid #1A1408;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

/* Calendar */
.calendar {
  display: flex; gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}
.calendar::-webkit-scrollbar { height: 6px; }
.calendar::-webkit-scrollbar-thumb { background: var(--gold-line); border-radius: 3px; }
.day {
  flex: 0 0 78px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 8px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
}
.day:hover:not(.day--closed) { border-color: var(--gold-line); }
.day.selected {
  background: linear-gradient(180deg, rgba(212,175,122,.12), transparent), var(--bg-3);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold) inset;
}
.day--closed { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.day__weekday { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px; }
.day.selected .day__weekday { color: var(--gold); }
.day__num { font-family: var(--serif); font-size: 26px; font-weight: 500; line-height: 1; }
.day__month { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin-top: 6px; }

/* Time slots */
.times {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 8px;
}
.time {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 6px;
  text-align: center;
  cursor: pointer;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
  transition: all .15s;
}
.time:hover { border-color: var(--gold-line); color: var(--ink); }
.time.selected { background: var(--gold); color: #1A1408; border-color: var(--gold); font-weight: 600; }
.times__empty {
  grid-column: 1 / -1;
  color: var(--ink-3);
  text-align: center;
  padding: 24px;
  font-style: italic;
  font-family: var(--serif);
  font-size: 18px;
}

/* Form fields */
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.field label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3); }
.field input {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--ink);
  font-size: 15px;
  transition: border-color .2s;
}
.field input:focus { outline: none; border-color: var(--gold); }
.field input[aria-invalid="true"] { border-color: #C26666; }
.field__error { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #C26666; }
.fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.booking__submit {
  margin-top: 40px;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.booking__summary {
  width: 100%;
  background: rgba(212,175,122,.04);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-md);
  padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.booking__summary-text { font-family: var(--serif); font-size: 18px; }
.booking__summary-text small {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.booking__total { font-family: var(--serif); font-size: 26px; color: var(--gold); }

.btn-whats {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 20px 40px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #1A1408;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 18px 40px -16px rgba(212,175,122,.55);
  transition: transform .25s;
}
.btn-whats:disabled {
  opacity: .35;
  cursor: not-allowed;
  background: var(--bg-3);
  color: var(--ink-3);
  box-shadow: none;
}
.btn-whats:not(:disabled):hover { transform: translateY(-2px); }

/* ===========================================================
   HORÁRIOS
   =========================================================== */
.hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hours__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  margin: 14px 0 18px;
  text-wrap: balance;
}
.hours__title em { color: var(--gold); font-style: italic; font-weight: 400; }
.hours__lede { color: var(--ink-2); margin-bottom: 36px; }
.hours__contact { display: flex; flex-direction: column; gap: 14px; }
.hours__contact a {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--ink-2);
  transition: color .2s;
}
.hours__contact a:hover { color: var(--gold); }
.hours__contact svg { color: var(--gold); }

.schedule {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  position: relative;
}
.schedule::before {
  content: ""; position: absolute; inset: 12px;
  border: 1px solid var(--gold-line);
  border-radius: calc(var(--r-lg) - 6px);
  opacity: .35;
  pointer-events: none;
}
.schedule__head { text-align: center; font-family: var(--script); color: var(--gold); font-size: 30px; }
.schedule__sub {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 28px;
}
.schedule__list { list-style: none; padding: 0; margin: 0; }
.schedule__list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px dotted var(--line-2);
  font-size: 16px;
}
.schedule__list li:last-child { border-bottom: 0; }
.schedule__list li.is-today { color: var(--gold); }
.schedule__list li.is-today::before {
  content: "HOJE";
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  background: var(--gold);
  color: #1A1408;
  padding: 2px 6px;
  border-radius: 3px;
  margin-right: 10px;
  font-weight: 600;
}
.schedule__list .day-name { font-family: var(--serif); font-size: 19px; }
.schedule__list .day-hours { color: var(--ink-2); }
.schedule__list .day-hours.closed { color: var(--ink-3); font-style: italic; }
.schedule__list li.is-today .day-hours { color: var(--gold); }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  background: #0A0908;
  border-top: 1px solid var(--line);
  padding: 80px 32px 40px;
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 60px;
}
.footer__logo { height: 70px; margin-bottom: 20px; }
.footer__tag { font-family: var(--script); color: var(--gold); font-size: 26px; margin: 0 0 6px; }
.footer__address { color: var(--ink-3); font-size: 14px; line-height: 1.7; }
.footer h4 {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 12px; }
.footer ul a {
  color: var(--ink-2);
  font-size: 15px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: color .2s;
}
.footer ul a:hover { color: var(--gold); }
.footer ul svg { color: var(--gold); }

.footer__socials { display: flex; gap: 12px; margin-top: 16px; }
.footer__socials a {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  display: grid; place-items: center;
  color: var(--gold);
  transition: all .25s;
}
.footer__socials a:hover { background: var(--gold); color: #1A1408; transform: translateY(-2px); }

.footer__base {
  max-width: 1280px;
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* WhatsApp FAB */
.fab-whats {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 60;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2BD86C, #1AAE53);
  display: grid; place-items: center;
  color: white;
  box-shadow: 0 14px 30px -10px rgba(43,216,108,.45);
  transition: transform .2s;
}
.fab-whats:hover { transform: scale(1.06); }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s, transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 920px) {
  .about      { grid-template-columns: 1fr; gap: 48px; }
  .hours      { grid-template-columns: 1fr; gap: 48px; }
  .testimonials__head { grid-template-columns: 1fr; gap: 36px; align-items: start; }
  .barbers    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 720px) {

  /* Geral */
  .section { padding: 60px 20px; }

  /* Hero */
  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero__logo { max-width: 240px; margin-bottom: 18px; }
  .hero__tag { font-size: clamp(22px, 5.5vw, 32px); }
  .hero__title { font-size: clamp(34px, 10vw, 52px); margin: 6px 0 20px; }
  .hero__sub { font-size: 15px; margin-bottom: 28px; }
  .hero__meta { gap: 18px 24px; margin-top: 44px; justify-content: center; flex-wrap: wrap; }
  .hero__meta > div { flex: 0 0 calc(50% - 12px); text-align: center; }
  .hero__meta strong { font-size: 18px; }
  .btn-primary { padding: 15px 28px; font-size: 12px; letter-spacing: 0.2em; }
  .btn-ghost   { padding: 14px 22px; font-size: 11px; letter-spacing: 0.18em; }

  /* Eyebrow simetrico em todas as secoes */
  .section .eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
  }
  .section .eyebrow::before { margin-right: 0; transform: none; }
  .section .eyebrow::after  { content: ""; display: block; width: 28px; height: 1px; background: var(--gold); }

  /* Sobre */
  .about__media { gap: 10px; }
  .about__media-card--badge { padding: 16px; }
  .about__media-card--badge .badge-num { font-size: 38px; }
  .about__media-card--badge .badge-sub { font-size: 18px; }
  .about__media-card--badge .badge-label { font-size: 10px; }
  .about > div:last-child { text-align: center; }
  .about__title { font-size: clamp(28px, 8vw, 44px); margin: 16px 0 10px; }
  .about__body { font-size: 15px; line-height: 1.75; text-align: left; }
  .about__stats { grid-template-columns: repeat(3, 1fr); margin-top: 28px; }
  .about__stats > div { padding: 16px 6px 0; text-align: center; }
  .about__stats strong { font-size: 24px; }
  .about__stats span { font-size: 9px; }

  /* Galeria */
  .gallery__head { flex-direction: column; align-items: center; text-align: center; gap: 16px; margin-bottom: 32px; }
  .gallery__head-left { text-align: center; }
  .gallery__head h2 { font-size: clamp(28px, 8vw, 44px); margin: 10px 0 0; }
  .gallery__head p { text-align: center; max-width: 100%; margin: 12px 0 0; }
  .gallery__counter { font-size: 14px; }
  .gallery__counter::before { width: 20px; }
  .gallery__grid.is-collapsed .gallery__item:nth-child(n+4) { display: none; }
  .gallery__grid.is-collapsed + .gallery__ver-mais { display: block !important; }

  /* Depoimentos */
  .testimonials__head { text-align: center; }
  .testimonials__head-left { text-align: center; }
  .testimonials__head h2 { font-size: clamp(28px, 8vw, 44px); }
  .testimonials__head p { text-align: center; }
  .rating-card { padding: 22px; }
  .rating-card__score { font-size: 52px; }
  .review { padding: 20px; gap: 12px; flex-basis: 84%; }
  .review__text { font-size: 15px; }
  .review__name { font-size: 15px; }
  .reviews-wrap { margin: 0 -20px; padding: 0 20px; }
  .reviews-nav { display: none; }

  /* Agendamento */
  .booking__head { margin-bottom: 36px; }
  .booking__head h2 { font-size: clamp(28px, 8vw, 44px); }
  .booking__head p { font-size: 14px; }
  .booking__card { padding: 26px 18px; border-radius: 18px; }
  .booking__card::before { inset: 8px; border-radius: 12px; }

  .step + .step { margin-top: 26px; padding-top: 26px; }
  .step__label { flex-wrap: nowrap; gap: 12px; margin-bottom: 16px; align-items: center; }
  .step__num { width: 30px; height: 30px; font-size: 13px; flex-shrink: 0; }
  .step__title { font-size: 16px; flex: 1; }
  .step__hint { display: none; }

  .services { gap: 22px; }
  .services__group-title { font-size: 10px; }
  .services__list { grid-template-columns: 1fr; gap: 10px; }
  .service { padding: 16px 14px; border-radius: 10px; min-height: 60px; gap: 14px; align-items: center; }
  .service__check { width: 20px; height: 20px; flex-shrink: 0; }
  .service__name { font-size: 15px; }
  .service__duration { font-size: 11px; }
  .service__price { font-size: 16px; }

  .barbers { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .barber { padding: 18px 10px 16px; border-radius: 12px; }
  .barber__photo { width: 72px; height: 72px; margin-bottom: 10px; }
  .barber__name { font-size: 17px; }
  .barber__role { font-size: 9px; }
  .barber__tag { font-size: 11px; }
  .barber__check { width: 20px; height: 20px; top: 12px; right: 12px; }

  .calendar { gap: 8px; padding-bottom: 10px; }
  .day { flex: 0 0 68px; padding: 12px 6px; border-radius: 10px; }
  .day__weekday { font-size: 9px; letter-spacing: 0.14em; margin-bottom: 6px; }
  .day__num { font-size: 24px; }
  .day__month { font-size: 9px; letter-spacing: 0.12em; margin-top: 6px; }

  .times { grid-template-columns: repeat(auto-fill, minmax(76px, 1fr)); gap: 8px; }
  .time { padding: 13px 6px; font-size: 14px; border-radius: 8px; min-height: 46px; display: grid; place-items: center; }
  .times__empty { padding: 32px 16px; font-size: 16px; }

  .fields-row { grid-template-columns: 1fr; gap: 12px; }
  .field { margin-bottom: 12px; gap: 7px; }
  .field label { font-size: 10px; }
  .field input { height: 52px; font-size: 15px; padding: 14px 16px; border-radius: 10px; }

  .booking__submit { gap: 16px; margin-top: 30px; }
  .booking__summary { flex-direction: column; align-items: flex-start; gap: 4px; padding: 14px 16px; border-radius: 10px; }
  .booking__summary-text { font-size: 15px; }
  .booking__summary-text small { font-size: 10px; }
  .booking__total { font-size: 22px; }
  .btn-whats { width: 100%; justify-content: center; padding: 18px 20px; font-size: 13px; height: 56px; letter-spacing: 0.2em; border-radius: 14px; }

  /* Horarios */
  .hours > div:first-child { text-align: center; }
  .hours__title { font-size: clamp(28px, 8vw, 44px); margin: 16px 0 18px; }
  .hours__lede { text-align: center; font-size: 15px; margin-bottom: 30px; }
  .hours__contact { align-items: center; gap: 16px; }
  .schedule { padding: 28px 22px; border-radius: 16px; }
  .schedule__head { font-size: 26px; }
  .schedule__list li { padding: 13px 0; font-size: 14px; }
  .schedule__list .day-name { font-size: 15px; }

  /* Footer */
  .footer { padding: 52px 20px 28px; }
  .footer__inner { text-align: center; gap: 36px; }
  .footer__logo { margin: 0 auto 16px; height: 54px; }
  .footer__tag { font-size: 22px; }
  .footer__address { font-size: 14px; }
  .footer__socials { justify-content: center; }
  .footer h4 { text-align: center; }
  .footer ul { text-align: center; }
  .footer ul a { justify-content: center; }
  .footer__base { flex-direction: column; text-align: center; gap: 8px; margin-top: 40px; }

  /* Misc */
  .fab-whats { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .nav { padding: 12px 16px; }
  .mobile-menu { top: 58px; padding: 32px 20px; }
  .mobile-menu a { font-size: 24px; padding: 16px 0; }
}
@media (max-width: 460px) {
  .barbers { grid-template-columns: 1fr; }
  .hero__meta > div { flex: 0 0 100%; }
}
@media (max-width: 380px) {
  .section { padding: 52px 14px; }
  .hero { padding: 84px 14px 48px; }
  .hero__logo { max-width: 200px; }
  .day { flex: 0 0 60px; }
  .booking__card { padding: 20px 14px; }
}