/* ========================================
   SALÃO.COM – PREMIUM BARBERSHOP CSS
   Design: Dark Luxury Gold
======================================== */

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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #A07830;
  --gold-glow: rgba(201,168,76,0.25);
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #181818;
  --dark3: #222222;
  --dark4: #2A2A2A;
  --text: #F0EDE6;
  --text-muted: #A09880;
  --text-dim: #6B6050;
  --white: #FFFFFF;
  --green-wpp: #25D366;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-gold: 0 0 30px rgba(201,168,76,0.15);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.5);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-script: 'Dancing Script', cursive;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- GOLD TEXT ---- */
.gold-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ---- SELECTION ---- */
::selection { background: var(--gold); color: var(--black); }

/* ========================================
   NAVBAR
======================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.6);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  mix-blend-mode: lighten;
  transition: transform var(--transition), filter var(--transition);
  filter: brightness(1.05) contrast(1.05);
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.08) rotate(-3deg);
  filter: brightness(1.2) contrast(1.1);
}

.nav-logo-text {
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
  transition: color var(--transition);
}
.nav-logo-dot {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.01em;
}
.nav-logo:hover .nav-logo-name { color: var(--gold); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  border-radius: 40px;
  transition: color var(--transition), background var(--transition);
  text-transform: uppercase;
}
.nav-links a:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.btn-nav {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

/* Botão Área do Barbeiro (ghost discreto) */
.btn-nav-barber {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 40px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color .2s, color .2s, background .2s;
  min-height: 38px;
  box-sizing: border-box;
}
.btn-nav-barber:hover {
  border-color: rgba(201,168,76,0.45);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================
   HERO – 2 colunas premium
======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 30% 50%, rgba(201,168,76,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 55%),
    linear-gradient(160deg, #0D0D0D 0%, #111111 60%, #0A0A0A 100%);
  padding-top: 80px; /* navbar height */
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: particleFloat linear infinite;
  opacity: 0;
}
@keyframes particleFloat {
  0%   { transform: translateY(100vh) translateX(0);   opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.25; }
  100% { transform: translateY(-10vh) translateX(20px); opacity: 0; }
}

/* ── Layout interno: 2 colunas ── */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  box-sizing: border-box;
}

/* ── COLUNA ESQUERDA ── */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: 40px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  background: rgba(201,168,76,0.06);
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease both;
}
.hero-badge svg { color: var(--gold); flex-shrink: 0; }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 22px;
  animation: fadeInUp 0.9s ease 0.1s both;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.8;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.3s both;
  margin-bottom: 44px;
}

/* ── INFO BAR ── */
.hero-info-bar {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 18px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  width: 100%;
  box-sizing: border-box;
  animation: fadeInUp 0.9s ease 0.45s both;
}
.hib-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.hib-icon {
  width: 36px; height: 36px;
  min-width: 36px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.hib-item > div strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.hib-item > div span {
  display: block;
  font-size: 0.68rem;
  color: var(--text-dim);
  line-height: 1.4;
}
.hib-divider {
  width: 1px;
  height: 36px;
  background: rgba(201,168,76,0.15);
  margin: 0 16px;
  flex-shrink: 0;
}

/* ── COLUNA DIREITA: frame da imagem ── */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 1s ease 0.2s both;
}

.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  overflow: visible;
}
.hero-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: 20% 8%;
  border-radius: 24px;
  display: block;
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.2),
    0 24px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(201,168,76,0.12);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.hero-img-frame:hover .hero-img {
  transform: scale(1.02);
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.35),
    0 32px 100px rgba(0,0,0,0.8),
    0 0 80px rgba(201,168,76,0.2);
}

/* Glow dourado atrás da imagem */
.hero-img-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.18) 0%, transparent 70%);
  border-radius: 30px;
  z-index: 0;
  pointer-events: none;
}

/* Badge flutuante sobre a imagem */
.hero-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(13,13,13,0.85);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 10px;
  backdrop-filter: blur(12px);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  animation: fadeInUp 1s ease 0.8s both;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease 1.2s both;
  z-index: 3;
}
.hero-scroll-indicator span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0);   opacity: 1; }
  50%       { transform: rotate(45deg) translateY(5px); opacity: 0.5; }
}

/* Keyframes de entrada */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── BOTÕES ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  min-height: 44px;
  box-sizing: border-box;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201,168,76,0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(240,237,230,0.25);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  white-space: nowrap;
  min-height: 44px;
  box-sizing: border-box;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* ── RESPONSIVIDADE MOBILE ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px 100px;
    text-align: center;
  }
  .hero-left {
    align-items: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-right {
    order: -1; /* Imagem acima no mobile */
  }
  .hero-img {
    height: 280px;
  }
  .hero-img-frame {
    max-width: 100%;
  }
  .hero-info-bar {
    flex-wrap: wrap;
    gap: 12px;
  }
  .hib-divider { display: none; }
  .hib-item { flex: none; min-width: calc(50% - 6px); }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }
  .hero-img { height: 220px; }
  .hib-item { min-width: 100%; }
  .hero-info-bar { padding: 14px 16px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}



/* ========================================
   SECTION COMMONS
======================================== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 40px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  background: rgba(201,168,76,0.06);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ========================================
   ABOUT
======================================== */
.about {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper { position: relative; }

.about-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  z-index: 1;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}
.about-image-frame:hover .about-img { transform: scale(1.04); }

.about-image-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  background: rgba(10,10,10,0.85);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
}
.about-image-badge span { font-size: 1.5rem; }
.about-image-badge p {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text-muted);
}
.about-image-badge p strong { color: var(--gold); font-weight: 600; }

.about-experience-card {
  position: absolute;
  top: 32px; right: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 40px rgba(201,168,76,0.35);
  animation: floatCard 3s ease-in-out infinite;
}
.exp-icon { font-size: 1.6rem; }
.about-experience-card strong { font-weight: 700; font-size: 0.9rem; display: block; }
.about-experience-card p { font-size: 0.75rem; margin-top: 2px; opacity: 0.8; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-content { }
.about-content .section-tag { display: block; margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 24px; }

.about-text {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 0.975rem;
}
.about-text strong { color: var(--gold); }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.feature-icon { color: var(--gold); font-size: 0.7rem; }

.about-hours {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.about-hours strong { color: var(--text); }
.hours-icon { font-size: 1.8rem; flex-shrink: 0; }

/* ========================================
   SERVICES
======================================== */
.services {
  padding: 120px 0;
  background: var(--black);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.services-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 40px;
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
  background: transparent;
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

/* Grid: estritamente 2 colunas no desktop */
.services-grid {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.services-grid *,
.services-grid *::before,
.services-grid *::after { box-sizing: border-box; }

/* Card horizontal: ícone à esquerda, texto à direita */
.service-card {
  position: relative;
  box-sizing: border-box;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.service-card:hover {
  border-color: rgba(201,168,76,0.4);
  background: #1e1e1e;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35), 0 0 0 1px rgba(201,168,76,0.08);
}
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  border-color: rgba(201,168,76,0.28);
  background: linear-gradient(135deg, rgba(201,168,76,0.07) 0%, #1a1a1a 50%);
}

/* Badge: Popular / Top */
.sc-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sc-badge.popular {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #111;
}
.sc-badge.top {
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
}

/* Ícone SVG */
.sc-icon-wrap {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.sc-icon-wrap svg {
  width: 22px; height: 22px;
  stroke: currentColor;
}
.service-card:hover .sc-icon-wrap {
  background: rgba(201,168,76,0.14);
  border-color: rgba(201,168,76,0.35);
}

/* Conteúdo texto */
.sc-body {
  flex: 1;
  min-width: 0;
  text-align: left;
}
.sc-body h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.35;
}
.sc-body p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Tag de categoria */
.sc-tag {
  display: inline-block;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.28);
  padding: 3px 9px;
  border-radius: 20px;
}
.sc-tag-premium {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.4);
}

/* Legado (compatibilidade com classe hidden do filtro) */
.service-card.hidden { display: none; }

/* =============================================
   RESPONSIVIDADE: mobile → 1 coluna
============================================= */
@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}




/* ========================================
   BOOKING – Novo sistema de fluxo v2
======================================== */
.booking {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
}
.booking::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.booking::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Fluxo de etapas */
.bk-flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bk-step {
  box-sizing: border-box;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px;
  transition: border-color .3s, opacity .3s, transform .3s;
}
.bk-step-hidden {
  display: none !important;
}
.bk-step-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.bk-step-head h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px;
  line-height: 1.3;
}
.bk-sub {
  font-size: .78rem;
  color: var(--text-muted);
  margin: 0;
}
.bk-num {
  width: 34px; height: 34px;
  min-width: 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  flex-shrink: 0;
}

/* ── CATEGORY TABS ── */
.svc-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.svc-cat {
  box-sizing: border-box;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 8px 16px;
  min-height: 44px;
  cursor: pointer;
  transition: all .2s;
}
.svc-cat:hover {
  border-color: rgba(201,168,76,.4);
  color: var(--gold);
}
.svc-cat.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: transparent;
  color: #111;
}

/* Grupos de categoria na lista de serviços (modo Todos) */
.svc-cat-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}
.svc-cat-group + .svc-cat-group {
  margin-top: 12px;
  padding-top: 4px;
}
.svc-cat-group-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.svc-cat-group-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.svc-cat-group-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201,168,76,0.3), transparent);
}
.svc-cat-group-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ── MULTI-SELECT SERVICE BUTTONS ── */
.svc-ms-grid {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.svc-ms-btn {
  box-sizing: border-box;
  position: relative;
  background: rgba(255,255,255,.03);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  padding: 12px 36px 12px 14px;
  min-height: 44px;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.svc-ms-btn:hover {
  border-color: rgba(201,168,76,.35);
  background: rgba(201,168,76,.05);
}
.svc-ms-btn.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,.1);
  color: var(--gold);
}
.svc-ms-check {
  position: absolute;
  top: 10px; right: 10px;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,.4);
  display: flex; align-items: center; justify-content: center;
  color: transparent;
  transition: all .2s;
}
.svc-ms-btn.selected .svc-ms-check {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
}

/* Selected summary bar */
.svc-sel-bar {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 8px;
  padding: 10px 14px;
  line-height: 1.4;
  word-break: break-word;
}
.svc-sel-bar svg { flex-shrink: 0; }

/* ── BARBERS GRID ── */
.barbers-pick {
  min-height: 80px;
}
.barbers-pick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.bpk-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
  color: var(--text-muted);
  font-size: .85rem;
}
.bpk-spinner {
  width: 28px; height: 28px;
  border: 3px solid rgba(201,168,76,.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.bp-card {
  box-sizing: border-box;
  background: rgba(255,255,255,.03);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
  min-height: 44px;
  position: relative;
  text-align: center;
}
.bp-card:hover {
  border-color: rgba(201,168,76,.4);
  background: rgba(201,168,76,.05);
  transform: translateY(-3px);
}
.bp-card.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,.1);
}
.bp-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,.3);
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,.1);
  flex-shrink: 0;
  transition: border-color .2s;
}
.bp-card.selected .bp-avatar { border-color: var(--gold); }
.bp-avatar img { width: 100%; height: 100%; object-fit: cover; }
.bp-initials {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}
.bp-info { display: flex; flex-direction: column; gap: 2px; }
.bp-info strong {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.bp-info span {
  font-size: .7rem;
  color: var(--text-muted);
  line-height: 1.3;
}
.bp-check {
  position: absolute;
  top: 8px; right: 8px;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,.35);
  display: flex; align-items: center; justify-content: center;
  color: transparent;
  transition: all .2s;
}
.bp-card.selected .bp-check {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
}

/* Fields row */
.bk-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}


}
.step-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

/* Service Select */
.service-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 6px;
}
.service-select-grid::-webkit-scrollbar { width: 4px; }
.service-select-grid::-webkit-scrollbar-track { background: transparent; }
.service-select-grid::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.3); border-radius: 2px; }

.svc-btn {
  padding: 10px 12px;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: left;
  transition: all var(--transition);
  line-height: 1.3;
}
.svc-btn:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.3);
  color: var(--gold);
}
.svc-btn.selected {
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.1));
  border-color: var(--gold);
  color: var(--gold);
}

/* Calendar */
.calendar-wrapper {
  background: var(--dark3);
  border-radius: var(--radius-md);
  padding: 20px;
}
.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cal-nav-btn {
  width: 34px; height: 34px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.cal-nav-btn:hover {
  background: var(--gold);
  color: var(--black);
}
.calendar-nav h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-transform: capitalize;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.cal-day-header {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 4px 0;
}
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-muted);
  border: 1px solid transparent;
}
.cal-day:hover:not(.disabled):not(.past) {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border-color: rgba(201,168,76,0.3);
}
.cal-day.selected {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(201,168,76,0.35);
}
.cal-day.today { border-color: rgba(201,168,76,0.5); color: var(--gold); }
.cal-day.disabled, .cal-day.past {
  color: var(--text-dim);
  cursor: not-allowed;
  opacity: 0.35;
}
.cal-day.empty { cursor: default; }
.cal-day.sunday { color: rgba(200,80,80,0.6); }
.cal-day.sunday:hover:not(.disabled):not(.past) { background: rgba(200,80,80,0.1); border-color: rgba(200,80,80,0.3); color: rgba(200,80,80,0.8); }

/* Time Grid */
.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 4px;
}
.time-grid::-webkit-scrollbar { width: 4px; }
.time-grid::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.3); border-radius: 2px; }

.time-slot {
  padding: 10px 6px;
  text-align: center;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid;
}
.time-slot.available {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.25);
  color: var(--gold);
}
.time-slot.available:hover {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold);
  transform: scale(1.04);
}
.time-slot.available.selected {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: transparent;
  color: var(--black);
  box-shadow: 0 4px 14px rgba(201,168,76,0.3);
}
.time-slot.occupied {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.06);
  color: var(--text-dim);
  cursor: not-allowed;
  text-decoration: line-through;
}

.time-legend {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 14px;
}
.legend-available, .legend-occupied {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 3px;
}
.legend-available { background: rgba(201,168,76,0.4); border: 1px solid var(--gold); }
.legend-occupied { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }

/* Confirm Step */
.confirm-step { grid-column: span 2; }

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input {
  width: 100%;
  padding: 14px 18px;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-group input::placeholder { color: var(--text-dim); }

.confirm-step form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.booking-summary {
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  padding: 20px;
}
.booking-summary h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem;
}
.summary-item:last-child { border-bottom: none; }
.summary-item span { color: var(--text-muted); }
.summary-item strong { color: var(--text); }

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--green-wpp);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  width: 100%;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.35);
}

/* Booking Success */
.booking-success {
  text-align: center;
  padding: 80px 40px;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-xl);
  margin-top: 24px;
}
.success-icon { font-size: 4rem; margin-bottom: 20px; }
.booking-success h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.booking-success p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

/* ========================================
   CONTACT
======================================== */
.contact {
  padding: 100px 0;
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.contact-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}
.contact-icon { font-size: 2.4rem; margin-bottom: 16px; }
.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.contact-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap var(--transition);
}
.contact-link:hover { gap: 10px; }
.instagram-link { color: var(--gold); }

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 48px 0 0;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-logo-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-logo-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.footer-logo-text { display: flex; align-items: baseline; gap: 1px; }
.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.footer-logo-dot {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-tagline {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin: 0;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ========================================
   FLOATING WHATSAPP BUTTON
======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wpp);
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition), padding var(--transition);
  overflow: hidden;
}
.whatsapp-float span {
  white-space: nowrap;
  transition: max-width var(--transition), opacity var(--transition);
  max-width: 100px;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition);
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(37,211,102,0.5);
}
.whatsapp-float:hover::before { opacity: 1; }

/* Pulse ring */
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid var(--green-wpp);
  animation: pulseRing 2.5s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ========================================
   INSTAGRAM BUTTON (NAVBAR + FLOAT)
======================================== */
/* Ícone Instagram na navbar */
.btn-nav-ig {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-muted);
  background: transparent;
  transition: all .2s ease;
  flex-shrink: 0;
}
.btn-nav-ig:hover {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  color: white;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(220,39,67,0.4);
}

/* Botão flutuante Instagram */
.instagram-float {
  position: fixed;
  bottom: 100px; right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(188,24,136,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
  text-decoration: none;
}
.instagram-float span {
  white-space: nowrap;
  max-width: 100px;
}
.instagram-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(188,24,136,0.55);
}
.instagram-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid rgba(188,24,136,0.7);
  animation: pulseRing 2.8s ease-out infinite;
  animation-delay: 0.4s;
}

@media (max-width: 480px) {
  .instagram-float span { display: none; }
  .instagram-float { padding: 14px; border-radius: 50%; bottom: 96px; }
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-frame { aspect-ratio: 4/3; max-height: 320px; }
  .about-img { object-position: center 20%; }

  /* Card amarelo (Excelencia) - menor no tablet/mobile */
  .about-experience-card {
    right: 8px;
    top: 16px;
    padding: 10px 14px;
    gap: 7px;
    border-radius: 10px;
  }
  .exp-icon { font-size: 1.1rem; }
  .about-experience-card strong { font-size: 0.75rem; }
  .about-experience-card p { font-size: 0.65rem; }

  /* Card escuro (badge) - menor e reposicionado */
  .about-image-badge {
    bottom: 12px;
    left: 12px;
    padding: 10px 12px;
    gap: 8px;
  }
  .about-image-badge span { font-size: 1.1rem; }
  .about-image-badge p { font-size: 0.68rem; }

  .contact-grid { grid-template-columns: 1fr; }
  .barbers-pick-grid { grid-template-columns: repeat(2, 1fr); }
}


@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 999;
  }
  .nav-links.open a {
    font-size: 1.4rem;
    padding: 12px 32px;
  }
  .hamburger { display: flex; }
  .hamburger.open { z-index: 1000; position: relative; }

  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .about-features { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }

  /* Booking mobile */
  .bk-step { padding: 20px 16px; }
  .svc-ms-grid { grid-template-columns: 1fr; gap: 8px; }
  .barbers-pick-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bp-avatar { width: 52px; height: 52px; }
  .bk-fields-row { grid-template-columns: 1fr; gap: 12px; }

  /* Services section */
  .services-grid { grid-template-columns: 1fr; }
  .time-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .time-grid { grid-template-columns: repeat(3, 1fr); }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
  .barbers-pick-grid { grid-template-columns: 1fr 1fr; }
  .svc-cats { gap: 6px; }
  .svc-cat { padding: 7px 12px; font-size: .72rem; }
}
