/* Belo e Jô Cabeleireiros — sage green · ivory · brushed brass */
:root {
  --sage: #5c7a6b;
  --sage-dark: #3f5649;
  --sage-light: #8faf9a;
  --brass: #c9a962;
  --brass-dark: #a88b42;
  --brass-light: #dfc98a;
  --ivory: #f5f1e8;
  --ivory-warm: #faf8f3;
  --ivory-deep: #ebe4d4;
  --ink: #1e2a24;
  --ink-muted: #4a5c52;
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --shadow-sm: 0 2px 14px rgba(60, 90, 75, 0.08);
  --shadow-md: 0 10px 32px rgba(60, 90, 75, 0.12);
  --shadow-lg: 0 24px 56px rgba(60, 90, 75, 0.16);
  --shadow-card: 0 4px 22px rgba(60, 90, 75, 0.1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', system-ui, -apple-system, sans-serif;
  --header-h: 76px;
  --mobile-bar-h: 64px;
  --transition: 0.26s ease;
}

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

html { scroll-behavior: smooth; font-size: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory-warm);
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--mobile-bar-h);
}

@media (min-width: 768px) { body { padding-bottom: 0; } }

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

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

:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; }

h1, h2, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 8vw, 4.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: var(--space-sm); }
h3 { font-size: clamp(1.05rem, 2.4vw, 1.35rem); margin-bottom: 0.5rem; }

.container { width: min(1180px, 100% - 2rem); margin-inline: auto; }
.container--wide { width: min(1320px, 100% - 2rem); margin-inline: auto; }
.text-center { text-align: center; }
.text-muted { color: var(--ink-muted); }
.mb-0 { margin-bottom: 0; }
.mb-xl { margin-bottom: var(--space-xl); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 300;
  background: var(--ivory-warm);
  border-bottom: 1px solid rgba(92, 122, 107, 0.14);
  height: var(--header-h);
}

.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: var(--space-sm);
  width: min(1320px, 100% - 2rem); margin-inline: auto;
}

.logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; color: var(--ink); flex-shrink: 0;
}

.logo__mark {
  width: 46px; height: 46px;
  background: linear-gradient(145deg, var(--sage) 0%, var(--sage-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--ivory); border: 2px solid var(--brass); box-shadow: var(--shadow-sm);
}

.logo__text { display: flex; flex-direction: column; line-height: 1.1; }

.logo__name {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  color: var(--sage-dark); text-transform: uppercase; letter-spacing: 0.04em;
}

.logo__tag {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brass-dark);
}

.header-cta { display: none; align-items: center; gap: 0.5rem; flex-shrink: 0; }
@media (min-width: 1024px) { .header-cta { display: flex; } }

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 48px; height: 48px; background: transparent;
  border: 2px solid var(--sage); border-radius: var(--radius-sm);
  cursor: pointer; flex-shrink: 0; z-index: 310;
}

.nav-toggle__bar {
  display: block; width: 22px; height: 2px; margin-inline: auto;
  background: var(--sage); transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) { .nav-toggle { display: none; } }

.site-nav {
  display: none; position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  width: 100%; min-height: calc(100dvh - var(--header-h));
  z-index: 250; background: var(--ivory-warm);
  padding: var(--space-lg) var(--space-md) var(--space-xl);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}

.site-nav.is-open, body.nav-open .site-nav { display: block; }

.site-nav__list { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; }

.site-nav__link {
  display: block; padding: 1rem 1.1rem;
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 500;
  color: var(--ink); text-decoration: none; text-transform: uppercase;
  letter-spacing: 0.06em; border-radius: var(--radius-sm); min-height: 48px;
  border-bottom: 1px solid rgba(92, 122, 107, 0.12);
}

.site-nav__link:hover, .site-nav__link[aria-current="page"] {
  background: var(--ivory); color: var(--sage-dark);
}

@media (min-width: 1024px) {
  .site-nav {
    display: block; position: static; min-height: auto; width: auto;
    background: transparent; padding: 0; overflow: visible; flex: 1;
  }
  .site-nav__list { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 0.125rem; }
  .site-nav__link {
    padding: 0.5rem 0.5rem; font-family: var(--font-body); font-size: 0.78rem;
    font-weight: 600; min-height: 48px; display: inline-flex; align-items: center; border-bottom: none;
  }
}

body.nav-open { overflow: hidden; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 48px; min-width: 48px; padding: 0.75rem 1.4rem;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 700;
  text-decoration: none; border-radius: var(--radius-sm); border: 2px solid transparent; cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn--whatsapp { background: var(--whatsapp); color: var(--white); border-color: var(--whatsapp); }
.btn--whatsapp:hover { background: var(--whatsapp-dark); border-color: var(--whatsapp-dark); color: var(--white); }
.btn--brass { background: linear-gradient(135deg, var(--brass) 0%, var(--brass-dark) 100%); color: var(--ink); border-color: var(--brass-dark); }
.btn--brass:hover { background: var(--brass-dark); color: var(--ivory); }
.btn--outline { background: transparent; color: var(--sage-dark); border-color: var(--sage); }
.btn--outline:hover { background: var(--sage); color: var(--ivory); }
.btn--sm { min-height: 40px; padding: 0.45rem 0.9rem; font-size: 0.85rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

/* Editorial hero */
.hero-editorial { padding-block: var(--space-xl) 0; background: var(--ivory); }
.hero-editorial__content { padding-bottom: var(--space-lg); }

.hero-editorial__kicker {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.92rem; font-weight: 700; color: var(--sage-dark);
  background: var(--white); padding: 0.4rem 0.85rem; border-radius: 999px;
  border: 1px solid rgba(201, 169, 98, 0.45); margin-bottom: var(--space-sm); box-shadow: var(--shadow-sm);
}

.hero-editorial__promise {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem); color: var(--ink-muted);
  max-width: 52ch; margin-bottom: var(--space-lg); font-weight: 500;
}

.hero-editorial__band { width: 100%; position: relative; overflow: hidden; }
.hero-editorial__band img { width: 100%; height: clamp(240px, 42vw, 520px); object-fit: cover; }
.hero-editorial__band::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(30, 42, 36, 0.35) 100%);
  pointer-events: none;
}

.hero-editorial__stamp {
  position: absolute; bottom: var(--space-md); left: var(--space-md);
  background: var(--sage-dark); color: var(--ivory); padding: 0.65rem 1.2rem;
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  border-left: 4px solid var(--brass); box-shadow: var(--shadow-md);
}

@media (min-width: 900px) {
  .hero-editorial__stamp { left: max(1rem, calc((100vw - 1320px) / 2 + 1rem)); }
}

.hero--inner {
  background: var(--ivory); padding-block: var(--space-xl);
  border-bottom: 1px solid rgba(92, 122, 107, 0.12);
}

.hero__promise { font-size: 1.1rem; color: var(--ink-muted); max-width: 62ch; }

.breadcrumb {
  font-size: 0.85rem; color: var(--ink-muted); margin-bottom: var(--space-sm);
}

.breadcrumb a { color: var(--sage); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { color: var(--brass-dark); }

/* Trust bar */
.trust-bar { background: var(--sage-dark); color: var(--ivory); padding-block: var(--space-md); }
.trust-bar__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }
@media (min-width: 640px) { .trust-bar__grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { text-align: center; padding: var(--space-sm); }
.trust-item__value {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; color: var(--brass-light); line-height: 1.1;
}
.trust-item__label { font-size: 0.78rem; font-weight: 600; opacity: 0.92; margin-top: 0.25rem; }

/* Sections */
.section { padding-block: var(--space-xl); }
.section--ivory { background: var(--ivory); }

.section__label {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-dark); margin-bottom: 0.5rem;
}

.section__lead { font-size: 1.05rem; color: var(--ink-muted); max-width: 68ch; }

/* Service cards */
.service-grid { display: grid; gap: var(--space-md); }
@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-card); border: 1px solid rgba(201, 169, 98, 0.22);
  display: flex; flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card__img { aspect-ratio: 3 / 2; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; }
.service-card__body { padding: var(--space-md); flex: 1; display: flex; flex-direction: column; }
.service-card__price {
  font-size: 0.8rem; font-weight: 700; color: var(--brass-dark);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.35rem;
}
.service-card__body p { flex: 1; color: var(--ink-muted); font-size: 0.95rem; }

/* Benefits */
.benefits-grid { display: grid; gap: var(--space-md); }
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  background: var(--white); padding: var(--space-md); border-radius: var(--radius-md);
  border-top: 4px solid var(--brass); box-shadow: var(--shadow-sm);
}

.benefit-card__num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  color: var(--sage-light); line-height: 1; margin-bottom: 0.5rem;
}

.benefit-card p { color: var(--ink-muted); font-size: 0.95rem; }

/* Rating & testimonials */
.rating-banner {
  display: flex; align-items: center; gap: var(--space-md);
  background: var(--white); padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md); border: 2px solid var(--brass);
  margin-bottom: var(--space-lg); box-shadow: var(--shadow-sm);
}

.rating-banner__score {
  font-family: var(--font-display); font-size: 3.2rem; font-weight: 700;
  color: var(--sage-dark); line-height: 1;
}

.testimonials-grid { display: grid; gap: var(--space-md); }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  background: var(--white); padding: var(--space-md); border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); border-left: 4px solid var(--sage);
}

.testimonial__stars { color: var(--brass); font-size: 1rem; margin-bottom: 0.5rem; }
.testimonial__text { font-style: italic; color: var(--ink-muted); font-size: 0.95rem; margin-bottom: var(--space-sm); }
.testimonial__author { font-size: 0.85rem; font-weight: 700; color: var(--sage-dark); }

/* Gallery */
.gallery-preview, .gallery-grid { display: grid; gap: var(--space-sm); grid-template-columns: repeat(2, 1fr); }

@media (min-width: 768px) {
  .gallery-preview { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; }
  .gallery-preview .gallery-item--wide { grid-row: span 2; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item { position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.gallery-item--wide img { aspect-ratio: auto; min-height: 100%; }

.gallery-item__caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 0.5rem 0.75rem;
  background: linear-gradient(transparent, rgba(63, 86, 73, 0.88));
  color: var(--ivory); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
}

/* Location */
.location-block { display: grid; gap: var(--space-xl); align-items: start; }
@media (min-width: 900px) { .location-block { grid-template-columns: 1fr 1fr; } }

.hours-table { width: 100%; border-collapse: collapse; margin: var(--space-md) 0; }
.hours-table th, .hours-table td { padding: 0.6rem 0; text-align: left; border-bottom: 1px solid rgba(92, 122, 107, 0.12); }
.hours-table th { font-weight: 700; color: var(--sage-dark); width: 45%; }

.map-embed { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); border: 2px solid var(--brass); }
.map-embed iframe, .footer__map iframe { width: 100%; height: 320px; border: 0; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }

.faq-item {
  background: var(--white); border-radius: var(--radius-sm);
  border: 1px solid rgba(92, 122, 107, 0.14); overflow: hidden;
}

.faq-item__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-sm); padding: 1rem 1.1rem; min-height: 48px;
  background: transparent; border: none;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  color: var(--ink); text-align: left; cursor: pointer;
}

.faq-item__icon { font-size: 1.4rem; color: var(--brass); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { display: none; padding: 0 1.1rem 1rem; color: var(--ink-muted); }
.faq-item.is-open .faq-item__answer { display: block; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: var(--ivory); padding-block: var(--space-xl); text-align: center;
}

.cta-band h2 { color: var(--ivory); }
.cta-band p { max-width: 52ch; margin: 0 auto var(--space-lg); opacity: 0.94; }

/* Footer */
.site-footer { background: var(--ink); color: var(--ivory); padding-block: var(--space-xl) var(--space-lg); }
.footer-grid { display: grid; gap: var(--space-lg); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.footer__title {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: var(--brass-light); margin-bottom: var(--space-sm); text-transform: uppercase; letter-spacing: 0.06em;
}

.footer__nap p, .footer__list li { font-size: 0.9rem; margin-bottom: 0.4rem; opacity: 0.88; }
.footer__list { list-style: none; }
.footer__list a { color: var(--ivory); text-decoration: none; }
.footer__list a:hover { color: var(--brass-light); }
.footer__map { margin-top: var(--space-sm); border-radius: var(--radius-sm); overflow: hidden; }
.footer__map iframe { height: 160px; }

.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-sm);
  margin-top: var(--space-lg); padding-top: var(--space-md);
  border-top: 1px solid rgba(245, 241, 232, 0.15); font-size: 0.8rem; opacity: 0.7;
}

.footer__bottom a { color: var(--brass-light); text-decoration: none; }

/* Mobile bar */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
  display: flex; height: var(--mobile-bar-h);
  box-shadow: 0 -4px 20px rgba(60, 90, 75, 0.18);
}

@media (min-width: 768px) { .mobile-bar { display: none; } }

.mobile-bar__btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  min-height: 48px; font-weight: 700; font-size: 0.88rem;
  text-decoration: none; text-align: center; padding: 0.5rem;
}

.mobile-bar__btn--wa { background: var(--whatsapp); color: var(--white); }
.mobile-bar__btn--tel { background: var(--sage-dark); color: var(--ivory); }

/* Inner page extras */
.service-detail {
  background: var(--white); padding: var(--space-md); border-radius: var(--radius-md);
  margin-bottom: var(--space-md); border-left: 4px solid var(--sage); box-shadow: var(--shadow-sm);
}

.service-detail__meta { font-size: 0.82rem; font-weight: 700; color: var(--brass-dark); margin-bottom: 0.35rem; }
.service-detail p { color: var(--ink-muted); margin-bottom: var(--space-sm); }

.agende-options { display: grid; gap: var(--space-md); }
@media (min-width: 768px) { .agende-options { grid-template-columns: repeat(3, 1fr); } }

.agende-card {
  background: var(--white); padding: var(--space-lg); border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); border: 1px solid rgba(92, 122, 107, 0.12);
}

.agende-card--featured {
  border: 2px solid var(--brass);
  background: linear-gradient(180deg, var(--ivory) 0%, var(--white) 100%);
}

.agende-card__icon { font-size: 2rem; margin-bottom: var(--space-sm); }

.team-grid { display: grid; gap: var(--space-md); }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.team-card__img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.team-card__body { padding: var(--space-md); }
.team-card__role { font-size: 0.82rem; font-weight: 700; color: var(--brass-dark); margin-bottom: 0.5rem; }
.team-card__body p { color: var(--ink-muted); font-size: 0.92rem; }

.split { display: grid; gap: var(--space-xl); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split__img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 3px solid var(--brass); }

.timeline { display: grid; gap: var(--space-md); }
@media (min-width: 768px) { .timeline { grid-template-columns: repeat(2, 1fr); } }

.timeline__item {
  background: var(--white); padding: var(--space-md); border-radius: var(--radius-md);
  border-top: 3px solid var(--sage);
}

.timeline__year {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--brass); margin-bottom: 0.35rem;
}

.timeline__item p { color: var(--ink-muted); font-size: 0.95rem; }

.brand-ribbon {
  display: inline-block; background: var(--sage-dark); color: var(--ivory);
  padding: 0.4rem 1rem; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.85rem; margin-top: var(--space-sm);
}

.review-card {
  background: var(--white); padding: var(--space-md); border-radius: var(--radius-md);
  margin-bottom: var(--space-md); border-left: 4px solid var(--brass); box-shadow: var(--shadow-sm);
}

.review-card p { color: var(--ink-muted); margin-bottom: 0.5rem; }

.legal-content h2 { margin-top: var(--space-lg); font-size: 1.25rem; }
.legal-content p, .legal-content li { color: var(--ink-muted); margin-bottom: var(--space-sm); }
.legal-content ul { padding-left: 1.25rem; margin-bottom: var(--space-sm); }

ol { padding-left: 1.25rem; color: var(--ink-muted); }
ol li { margin-bottom: 0.5rem; }
