/* ============================================================
   Barbearia Valter Cortes — style.css
   Tema escuro com dourado | Desde 1995
   ============================================================ */

/* ------------------------------------------------------------
   1. TOKENS / CSS VARIABLES
------------------------------------------------------------ */
:root {
  /* Brand colors — dourado barbearia */
  --clr-accent:       #C9A84C;
  --clr-accent-light: #E0C97A;
  --clr-accent-dark:  #9A7830;

  /* Backgrounds */
  --clr-bg:           #080808;
  --clr-surface:      #111111;
  --clr-surface-2:    #191919;
  --clr-surface-3:    #222222;

  /* Text */
  --clr-text:         #F5F0E8;
  --clr-text-muted:   #9C9080;
  --clr-text-faint:   #4a4035;

  /* Borders */
  --clr-border:       #2a2218;
  --clr-border-hover: rgba(201, 168, 76, 0.5);

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-base:    'DM Sans', system-ui, sans-serif;
  --fw-light:   300;
  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semi:    600;
  --fw-bold:    700;
  --fw-black:   800;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --max-width:    1200px;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-full:  9999px;

  /* Transitions */
  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:       cubic-bezier(0.4, 0, 1, 1);
  --duration:      0.4s;
  --duration-slow: 0.7s;

  /* Shadows */
  --shadow-sm:    0 2px 12px rgba(0, 0, 0, 0.7);
  --shadow-md:    0 8px 32px rgba(0, 0, 0, 0.8);
  --shadow-lg:    0 24px 64px rgba(0, 0, 0, 0.9);
  --glow-accent:  0 0 32px rgba(201, 168, 76, 0.3);
  --glow-sm:      0 0 16px rgba(201, 168, 76, 0.2);
}

/* ------------------------------------------------------------
   2. RESET & BASE
------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-base);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 { font-family: var(--font-heading); }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ------------------------------------------------------------
   3. LAYOUT UTILITIES
------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
}

.section-title em {
  font-style: italic;
  color: var(--clr-accent);
  -webkit-text-fill-color: var(--clr-accent);
}

.section-desc {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
}

/* ------------------------------------------------------------
   4. BUTTONS
------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.01em;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.btn--accent {
  background: var(--clr-accent);
  color: #080808;
}
.btn--accent:hover {
  background: var(--clr-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--glow-accent);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}
.btn--ghost:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  font-weight: var(--fw-bold);
}
.btn--whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(37, 211, 102, 0.45);
}

.btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ------------------------------------------------------------
   5. ANIMATIONS
------------------------------------------------------------ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease),
              transform var(--duration-slow) var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.35s; }
.delay-4 { transition-delay: 0.5s; }

/* ------------------------------------------------------------
   6. NAVBAR
------------------------------------------------------------ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--duration) var(--ease),
              padding var(--duration) var(--ease);
}

.navbar.scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--clr-border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.navbar__logo { flex-shrink: 0; line-height: 0; }
.navbar__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-left: auto;
}
.navbar__nav a {
  font-size: 0.9rem;
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  transition: color var(--duration) var(--ease);
}
.navbar__nav a:hover { color: var(--clr-text); }

.navbar__cta { margin-left: var(--space-sm); }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  transition: all var(--duration) var(--ease);
  border-radius: 2px;
}
.navbar__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------------
   7. HERO
------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
  background: #080808;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.55;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(8,8,8,0.82) 45%, rgba(8,8,8,0.4) 100%),
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: var(--space-3xl) var(--space-md);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
  background: rgba(255,255,255,0.03);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--clr-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--clr-accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--clr-accent); }
  50%       { opacity: 0.6; box-shadow: 0 0 20px var(--clr-accent); }
}

.hero__title {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}
.hero__title em {
  font-style: italic;
  color: var(--clr-accent);
  -webkit-text-fill-color: var(--clr-accent);
}

.hero__since {
  font-family: var(--font-base);
  font-size: 0.95rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-md);
  opacity: 0.9;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  font-weight: var(--fw-light);
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  color: var(--clr-text-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, var(--clr-accent), transparent);
}

/* ------------------------------------------------------------
   8. STATS
------------------------------------------------------------ */
.stats {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--space-xl) 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.stat-item {
  text-align: center;
  padding: var(--space-md);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--clr-accent);
  line-height: 1;
}

.stat-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-accent);
}

.stat-item p {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  font-weight: var(--fw-medium);
}

/* ------------------------------------------------------------
   9. SERVICES
------------------------------------------------------------ */
.services {
  padding: var(--space-3xl) 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  padding: var(--space-lg);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  transition: all var(--duration) var(--ease);
}

.service-card:hover {
  border-color: var(--clr-border-hover);
  background: var(--clr-surface-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--glow-sm);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  color: var(--clr-accent);
  transition: background var(--duration) var(--ease);
}
.service-card:hover .service-card__icon { background: rgba(201, 168, 76, 0.18); }
.service-card__icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--clr-text);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

/* ------------------------------------------------------------
   10. PLANS
------------------------------------------------------------ */
.plans {
  padding: var(--space-3xl) 0;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 1140px;
  margin: 0 auto;
  align-items: start;
}

.plan-card {
  padding: var(--space-xl) var(--space-lg);
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.plan-card--featured {
  border-color: var(--clr-accent);
  box-shadow: var(--glow-accent);
}

.plan-card--featured::after {
  content: 'Mais Popular';
  position: absolute;
  top: 18px;
  right: -30px;
  background: var(--clr-accent);
  color: #080808;
  font-size: 0.65rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 40px;
  transform: rotate(45deg);
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-md), var(--glow-accent);
}

.plan-name {
  font-family: var(--font-base);
  font-size: 0.75rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1;
  margin-bottom: 4px;
}

.plan-price sup {
  font-size: 1.6rem;
  vertical-align: super;
  font-weight: var(--fw-semi);
  color: var(--clr-text-muted);
}

.plan-period {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-lg);
}

.plan-divider {
  width: 40px;
  height: 2px;
  background: var(--clr-accent);
  margin: 0 auto var(--space-lg);
  border-radius: 2px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--space-lg);
  text-align: left;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--clr-text-muted);
}

.plan-features svg {
  width: 16px;
  height: 16px;
  color: var(--clr-accent);
  flex-shrink: 0;
}

.plan-features li strong {
  color: var(--clr-text);
  font-weight: var(--fw-semi);
}

/* ------------------------------------------------------------
   11. ABOUT
------------------------------------------------------------ */
.about {
  padding: var(--space-3xl) 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about__visual { position: relative; }

.about__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
}

.about__real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease);
}
.about__img-wrap:hover .about__real-img { transform: scale(1.04); }

.about__badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--clr-accent);
  color: #080808;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md), var(--glow-accent);
}
.badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about__badge-float span:last-child {
  font-size: 0.75rem;
  font-weight: var(--fw-semi);
}

.about__text .section-title { text-align: left; margin-bottom: var(--space-md); }

.about__text p {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}
.about__text p strong { color: var(--clr-text); }

.about__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}
.about__list svg {
  width: 16px;
  height: 16px;
  color: var(--clr-accent);
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   12. CTA BANNER
------------------------------------------------------------ */
.cta-banner {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
}

.cta-banner__content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.cta-banner__content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}
.cta-banner__content h2 em {
  font-style: italic;
  color: var(--clr-accent);
  -webkit-text-fill-color: var(--clr-accent);
}

.cta-banner__content p {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
}

/* ------------------------------------------------------------
   13. CONTACT
------------------------------------------------------------ */
.contact {
  padding: var(--space-3xl) 0;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact__info .section-title {
  text-align: left;
  margin-bottom: var(--space-md);
}
.contact__info > p {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-lg);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.contact__details li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.contact__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-sm);
  color: var(--clr-accent);
}
.contact__icon svg { width: 22px; height: 22px; }

.contact__details strong {
  display: block;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact__details a, .contact__details span {
  font-size: 0.95rem;
  font-weight: var(--fw-medium);
  color: var(--clr-text);
  transition: color var(--duration) var(--ease);
}
.contact__details a:hover { color: var(--clr-accent); }

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  aspect-ratio: 1;
  background: var(--clr-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--clr-text-muted);
  text-align: center;
  padding: var(--space-lg);
}
.contact__map-placeholder svg { width: 48px; height: 48px; color: var(--clr-accent); }
.contact__map-placeholder p { font-size: 0.9rem; line-height: 1.6; }

/* ------------------------------------------------------------
   14. FOOTER
------------------------------------------------------------ */
.footer {
  background: #050505;
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-2xl);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.footer__logo-link { display: inline-block; line-height: 0; }
.footer__logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-top: var(--space-sm);
  line-height: 1.7;
  max-width: 260px;
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text-muted);
  transition: all var(--duration) var(--ease);
}
.footer__social a:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}
.footer__social svg { width: 18px; height: 18px; }

.footer__links h4 {
  font-family: var(--font-base);
  font-size: 0.8rem;
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a, .footer__links span {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  transition: color var(--duration) var(--ease);
}
.footer__links a:hover { color: var(--clr-text); }

.footer__bottom {
  border-top: 1px solid var(--clr-border);
  padding: var(--space-md) 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}
.footer__bottom p {
  font-size: 0.8rem;
  color: var(--clr-text-faint);
}

/* ------------------------------------------------------------
   15. VIRTUAL TOUR
------------------------------------------------------------ */
.virtual-tour {
  padding: var(--space-3xl) 0 var(--space-3xl);
  border-top: 1px solid var(--clr-border);
  background: var(--clr-surface);
}

.virtual-tour__chrome {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--clr-surface-2);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-bottom: none;
  padding: 10px 20px;
  margin-top: var(--space-xl);
}

.virtual-tour__chrome-dots {
  display: flex;
  gap: 6px;
}

.virtual-tour__chrome-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clr-surface-3);
}

.virtual-tour__chrome-dots span:first-child {
  background: var(--clr-accent);
  box-shadow: 0 0 8px rgba(201,168,76,0.6);
}

.virtual-tour__chrome-label {
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 4px;
}

.virtual-tour__frame {
  width: 100%;
  height: 560px;
  margin-top: 0;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-top: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 80px rgba(201,168,76,0.05);
}

.virtual-tour__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

@media (max-width: 768px) {
  .virtual-tour__frame { height: 400px; }
}
@media (max-width: 480px) {
  .virtual-tour__frame { height: 300px; }
}

/* --- Service card photo ------------------------------------ */
.service-card__photo {
  position: relative;
  margin: calc(-1 * var(--space-lg)) calc(-1 * var(--space-lg)) var(--space-md);
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--clr-surface-3);
  flex-shrink: 0;
}

.service-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: brightness(0.75) saturate(0.8);
}

.service-card:hover .service-card__photo img {
  transform: scale(1.07);
  filter: brightness(0.95) saturate(1);
}

/* --- Price table card (avulsos) ---------------------------- */
.price-table-card__sub {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
  text-align: center;
}

.price-table-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-lg);
  text-align: left;
}

.price-table-card__list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 9px 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.82rem;
}

.price-table-card__list li:last-child { border-bottom: none; }

.price-table-card__list li span:first-child {
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  line-height: 1.35;
}

.price-table-card__list li span:last-child {
  color: var(--clr-accent);
  font-weight: var(--fw-semi);
  font-family: var(--font-heading);
  font-size: 1rem;
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
}

/* --- Service price badge ----------------------------------- */
.service-card__price {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(8, 8, 8, 0.72);
  border: 1px solid var(--clr-border-hover);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-accent-light);
  line-height: 1;
  transition: all var(--duration) var(--ease);
}

.service-card:hover .service-card__price {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #080808;
}

/* "a partir de" nas linhas da tabela avulsa */
.price-table-card__list li span:last-child em {
  display: block;
  font-family: var(--font-base);
  font-style: normal;
  font-size: 0.6rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-text-faint);
  line-height: 1;
  margin-bottom: 3px;
}

/* --- Tabela oficial (foto) ---------------------------------- */
.price-board {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: 1140px;
  margin: var(--space-2xl) auto 0;
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--clr-border);
}

.price-board__text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-text);
  margin: var(--space-sm) 0 var(--space-md);
}

.price-board__text h3 em {
  font-style: italic;
  color: var(--clr-accent);
}

.price-board__text > p {
  font-size: 0.98rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.price-board__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--space-lg);
}

.price-board__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--clr-text-muted);
}

.price-board__list svg {
  width: 16px;
  height: 16px;
  color: var(--clr-accent);
  flex-shrink: 0;
}

.price-board__figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  background: var(--clr-surface-3);
  box-shadow: var(--shadow-lg), var(--glow-sm);
  line-height: 0;
}

.price-board__figure img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s var(--ease);
}

.price-board__figure:hover img { transform: scale(1.03); }

@media (max-width: 1024px) {
  .plans__grid { grid-template-columns: 1fr 1fr; }
  .price-board  { grid-template-columns: 1fr; gap: var(--space-lg); }
  .price-board__figure { max-width: 460px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .plans__grid { grid-template-columns: 1fr; max-width: 440px; }
}

/* ------------------------------------------------------------
   16. REVIEWS
------------------------------------------------------------ */
.reviews {
  padding: var(--space-3xl) 0;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.reviews__overall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.reviews__score {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
}

.reviews__stars {
  display: flex;
  gap: 3px;
}
.reviews__stars svg {
  width: 22px;
  height: 22px;
  color: #FBBC04;
}

.reviews__count {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin-top: 4px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.review-card {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: all var(--duration) var(--ease);
}

.review-card:hover {
  border-color: var(--clr-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-sm);
  position: relative;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent-dark), var(--clr-accent));
  color: #080808;
  font-weight: var(--fw-bold);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__header strong {
  display: block;
  font-size: 0.9rem;
  color: var(--clr-text);
  font-weight: var(--fw-semi);
}

.review-card__stars {
  display: flex;
  gap: 2px;
}
.review-card__stars svg {
  width: 13px;
  height: 13px;
  color: #FBBC04;
}

.review-card__google {
  width: 18px;
  height: 18px;
  margin-left: auto;
  flex-shrink: 0;
}

.review-card__text {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  font-style: italic;
}

@media (max-width: 1024px) {
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__score { font-size: 3rem; }
}

/* ------------------------------------------------------------
   16. FLOATING WHATSAPP BUTTON
------------------------------------------------------------ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5);
  transition: all var(--duration) var(--ease);
  animation: float-in 0.6s var(--ease) both;
}

@keyframes float-in {
  from { opacity: 0; transform: scale(0.6) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.65);
}

.whatsapp-float svg { width: 34px; height: 34px; color: #fff; }

/* ------------------------------------------------------------
   15b. TEAM / BARBEIROS
------------------------------------------------------------ */
.team {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 940px;
  margin: 0 auto;
}

.barber-card {
  display: flex;
  flex-direction: column;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.barber-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-md), var(--glow-sm);
}

.barber-card__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--clr-surface-3);
}

.barber-card__photo img {
  --zoom: 1;
  /* --shift sobe (negativo) ou desce a foto dentro da moldura,
     em % da altura do card. Fica fora do scale, então o valor
     é o deslocamento real na tela e não muda no hover. */
  --shift: 0%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
  transform: translateY(var(--shift)) scale(var(--zoom));
  transform-origin: 50% 35%;
  filter: brightness(0.88) saturate(0.95);
  transition: transform 0.7s var(--ease), filter var(--duration) var(--ease);
}

.barber-card:hover .barber-card__photo img {
  transform: translateY(var(--shift)) scale(calc(var(--zoom) * 1.05));
  filter: brightness(1) saturate(1);
}

/* Foto do Valter é um plano mais aberto: aproxima e sobe 20% pra
   alinhar a linha dos olhos com a do Lipe. */
.barber-card--valter .barber-card__photo img {
  --zoom: 1.41;
  --shift: -20%;
  object-position: 50% 30%;
}

.barber-card__photo::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.92), transparent);
  pointer-events: none;
}

.barber-card__ig-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(8, 8, 8, 0.7);
  border: 1px solid var(--clr-border-hover);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--clr-accent-light);
  transition: all var(--duration) var(--ease);
}

.barber-card__ig-badge svg { width: 19px; height: 19px; }

.barber-card__ig-badge:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #080808;
  transform: scale(1.08);
}

.barber-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-lg);
  margin-top: -44px;
  position: relative;
  z-index: 2;
}

.barber-card__role {
  font-family: var(--font-base);
  font-size: 0.7rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 6px;
}

.barber-card__name {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--clr-text);
  margin-bottom: var(--space-md);
}

.barber-card__actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-top: auto;
}

.barber-card__ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--clr-border);
  background: var(--clr-surface-2);
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  font-weight: var(--fw-medium);
  text-decoration: none;
  transition: all var(--duration) var(--ease);
}

.barber-card__ig svg { width: 17px; height: 17px; flex-shrink: 0; }

.barber-card__ig:hover {
  color: var(--clr-accent);
  border-color: var(--clr-accent);
  background: rgba(201, 168, 76, 0.08);
}

.barber-card__book {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: var(--clr-accent);
  color: #080808;
  font-size: 0.85rem;
  font-weight: var(--fw-semi);
  text-decoration: none;
  transition: all var(--duration) var(--ease);
}

.barber-card__book:hover {
  background: var(--clr-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--glow-sm);
}

@media (max-width: 700px) {
  .team__grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* ------------------------------------------------------------
   16. RESPONSIVE
------------------------------------------------------------ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner  { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}

@media (max-width: 768px) {
  :root {
    --space-xl:  2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }

  .navbar__nav, .navbar__cta { display: none; }
  .navbar__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-xl);
  }
  .navbar__nav.open a {
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    color: var(--clr-text);
  }
  .navbar__hamburger { display: flex; z-index: 101; }

  .stats__grid    { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: 1fr; }

  .about__inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .about__badge-float { bottom: -16px; right: 16px; }

  .contact__inner { grid-template-columns: 1fr; }

  .footer__inner  { grid-template-columns: 1fr 1fr; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .footer__inner { grid-template-columns: 1fr; }
  .stats__grid   { grid-template-columns: repeat(2, 1fr); }

  .whatsapp-float { bottom: 20px; right: 20px; width: 56px; height: 56px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}
