/* ========== VARIABLES CSS ========== */
:root {
  --negro: #000000;
  --dorado-oscuro: #8C6A3B;
  --dorado: #B08A57;
  --dorado-claro: #D4AF7A;
  --dorado-brillo: #E6C89C;
  --blanco: white;
  --gris-oscuro: #1a1a1a;
  --gris: #333;
  --gris-claro: #f5f5f5;
}



/* ========== RESET Y BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--negro);
  color: var(--blanco);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  -webkit-tap-highlight-color: transparent;
}

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

/* ========== HEADER ========== */
.header {
  background: linear-gradient(135deg, var(--negro) 0%, var(--gris-oscuro) 100%);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(176, 138, 87, 0.3);
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 1.8rem;
  color: var(--dorado);
  letter-spacing: 2px;
  margin-bottom: 0;
}

.logo .tagline {
  font-size: 0.75rem;
  color: var(--dorado-claro);
  letter-spacing: 3px;
  margin-top: -5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: var(--blanco);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.nav-menu a:hover {
  color: var(--dorado);
}

.btn-agendar {
  background: linear-gradient(135deg, var(--dorado-oscuro), var(--dorado));
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  color: var(--blanco) !important;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(176, 138, 87, 0.3);
  transition: all 0.3s;
}

.btn-agendar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(176, 138, 87, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--dorado);
  transition: all 0.3s;
  border-radius: 2px;
}

/* ========== HERO SECTION ========== */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
              url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?w=1920') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--dorado);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  letter-spacing: 3px;
  animation: fadeInDown 1s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--dorado-claro);
  margin-bottom: 2rem;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease 0.3s backwards;
}

.btn-primary {
  background: linear-gradient(135deg, var(--dorado-oscuro), var(--dorado));
  color: var(--blanco);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(176, 138, 87, 0.4);
  animation: fadeInUp 1s ease 0.6s backwards;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(176, 138, 87, 0.6);
}

.btn-primary:active {
  transform: scale(0.95);
}

/* ========== LUXURY GALLERY - DISEÑO PREMIUM ========== */
/* ========== NUESTROS ESTILOS SIGNATURE ========== */
.luxury-gallery {
  padding: 6rem 0 4rem;
  background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}

.luxury-gallery::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dorado), transparent);
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.header-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--dorado), transparent);
  margin: 0 auto 1.5rem;
}

.gallery-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-family: var(--fuente-titulo);
  color: var(--dorado);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.gallery-subtitle {
  color: var(--dorado-claro);
  opacity: 0.7;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

/* ── Tabs de navegación ──────────────────────────────── */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.tab-btn {
  background: transparent;
  border: 1px solid rgba(176,138,87,0.25);
  border-radius: 30px;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s;
  color: var(--dorado-claro);
}

.tab-btn .tab-number {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--dorado);
  opacity: 0.7;
  font-family: monospace;
}

.tab-btn .tab-name {
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}

.tab-btn:hover {
  border-color: var(--dorado);
  background: rgba(176,138,87,0.08);
  color: var(--blanco);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--dorado-oscuro), var(--dorado));
  border-color: transparent;
  color: #fff;
}

.tab-btn.active .tab-number {
  color: rgba(255,255,255,0.8);
  opacity: 1;
}

/* ── Paneles de contenido ────────────────────────────── */
.servicios-signature-container {
  position: relative;
  min-height: 280px;
}

.sig-panel {
  display: none;
  animation: sigFadeIn 0.35s ease;
}

.sig-panel.active {
  display: block;
}

@keyframes sigFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Grid de tarjetas ────────────────────────────────── */
.sig-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

/* ── Tarjeta individual ──────────────────────────────── */
.sig-card {
  background: linear-gradient(145deg, #161616, #0d0d0d);
  border: 1px solid rgba(176,138,87,0.25);
  border-radius: 16px;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  /* image clips cleanly at card corners */
  isolation: isolate;
}

.sig-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--dorado), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.sig-card:hover {
  transform: translateY(-5px);
  border-color: rgba(176,138,87,0.6);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.sig-card:hover::before {
  opacity: 1;
}

/* ── Variante Gold ───────────────────────────────────── */
.sig-card.gold {
  background: linear-gradient(145deg, #1a1408, #0f0d06);
  border-color: rgba(212,175,55,0.35);
}

.sig-card.gold::before {
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.sig-card.gold:hover {
  border-color: #D4AF37;
  box-shadow: 0 16px 40px rgba(212,175,55,0.15);
}

/* ── Header de tarjeta ───────────────────────────────── */
.sig-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sig-num {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--dorado);
  opacity: 0.6;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.sig-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  background: rgba(176,138,87,0.15);
  border: 1px solid rgba(176,138,87,0.3);
  color: var(--dorado);
}

.gold-badge {
  background: rgba(212,175,55,0.15);
  border-color: rgba(212,175,55,0.4);
  color: #D4AF37;
}

/* ── Contenido de tarjeta ────────────────────────────── */
.sig-title {
  font-family: var(--fuente-titulo);
  font-size: 1.2rem;
  color: var(--blanco);
  line-height: 1.3;
  margin: 0;
}

.sig-desc {
  color: #888;
  font-size: 0.85rem;
  line-height: 1.7;
  flex: 1;
}

.sig-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(176,138,87,0.12);
}

.sig-duration {
  font-size: 0.8rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.sig-duration i {
  color: var(--dorado);
  opacity: 0.7;
}

.sig-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dorado);
  letter-spacing: 0.02em;
}

/* ── Botón reservar ──────────────────────────────────── */
.sig-btn-reservar {
  width: 100%;
  padding: 0.8rem;
  background: linear-gradient(135deg, var(--dorado-oscuro), var(--dorado));
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: 0.05em;
  margin-top: auto;
}

.sig-btn-reservar:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(176,138,87,0.4);
}

.sig-card.gold .sig-btn-reservar {
  background: linear-gradient(135deg, #a07820, #D4AF37);
}

.sig-card.gold .sig-btn-reservar:hover {
  box-shadow: 0 8px 20px rgba(212,175,55,0.4);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
  .category-tabs {
    gap: 0.4rem;
  }
  .tab-btn .tab-name {
    font-size: 0.72rem;
  }
  .tab-btn {
    padding: 0.45rem 0.85rem;
  }
  .sig-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .tab-btn .tab-name {
    display: none;
  }
  .tab-btn {
    width: 40px;
    height: 40px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }
  .tab-btn .tab-number {
    font-size: 0.7rem;
    opacity: 1;
  }
}


.gallery-end {
    margin-top: 3rem; /* Reducido de 5rem */
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.end-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dorado), transparent);
}

.end-text {
    color: var(--dorado-claro);
    font-size: 0.9rem;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* Animaciones adicionales */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.slide-details::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(176, 138, 87, 0.1),
        transparent
    );
    animation: shimmer 3s infinite;
    pointer-events: none;
}

/* Efecto de hover en preview items */
.preview-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(176, 138, 87, 0.05));
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.preview-item:hover::after,
.preview-item.active::after {
    opacity: 1;
}

/* Texto final minimalista */
.gallery-end-text {
    margin-top: 2rem; /* Reducido de 5rem */
    text-align: center;
}

.gallery-end-text p {
    color: var(--dorado-claro);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* Pulse en botones */
@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(176, 138, 87, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(176, 138, 87, 0.5);
    }
}

.btn-reservar-style {
    animation: buttonPulse 2s ease-in-out infinite;
}

.btn-reservar-style:hover {
    animation: none;
}


/* ========== SERVICIOS SECTION ========== */
.servicios {
    padding: 4rem 0; /* Reducido de 5rem */
    background: linear-gradient(180deg, var(--negro) 0%, var(--gris-oscuro) 50%, var(--negro) 100%);
    margin-top: -2rem; /* Agregar margen negativo para acercar */
}

.section-title {
  font-size: 2.5rem;
  color: var(--dorado);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--dorado), transparent);
}

.categoria-servicios {
  margin-bottom: 4rem;
  animation: slideInLeft 0.6s ease;
}

.categoria-titulo {
  font-size: 1.8rem;
  color: var(--dorado-claro);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.categoria-titulo i {
  color: var(--dorado);
  font-size: 2rem;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.servicio-card {
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  border: 1px solid var(--dorado-oscuro);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.servicio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(176, 138, 87, 0.1), transparent);
  transition: left 0.5s;
}

.servicio-card:hover::before {
  left: 100%;
}

.servicio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(176, 138, 87, 0.3);
  border-color: var(--dorado);
}

.servicio-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--dorado), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.servicio-card:hover::after {
  opacity: 1;
}

.servicio-card.promocion {
  border: 2px solid var(--dorado);
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
}

.servicio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.servicio-header h4 {
  font-size: 1.2rem;
  color: var(--blanco);
}

.precio {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dorado);
}

.duracion {
  color: var(--dorado-claro);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.duracion i {
  margin-right: 0.5rem;
}

.badge-promo {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--dorado);
  color: var(--negro);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.btn-reservar {
  width: 100%;
  background: linear-gradient(135deg, var(--dorado-oscuro), var(--dorado));
  color: var(--blanco);
  border: none;
  padding: 0.8rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
}

.btn-reservar:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(176, 138, 87, 0.5);
}

.btn-reservar:active {
  transform: scale(0.95);
}


/* ========== BARBEROS SECTION ========== */
.barberos {
  padding: 5rem 0;
  background: var(--negro);
}

.barberos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.barbero-card {
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  border: 1px solid var(--dorado-oscuro);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  animation: zoomIn 0.5s ease;
}

.barbero-card:hover {
  transform: translateY(-10px);
  border-color: var(--dorado);
  box-shadow: 0 15px 40px rgba(176, 138, 87, 0.3);
}

.barbero-img {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--dorado-oscuro), var(--dorado));
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--blanco);
  box-shadow: 0 5px 20px rgba(176, 138, 87, 0.4);
}

.barbero-card h3 {
  color: var(--dorado);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.especialidad {
  color: var(--dorado-claro);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.rating {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
}

.rating i {
  color: var(--dorado);
  font-size: 1rem;
}

/* ========== CONTACTO SECTION ========== */
.contacto {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--negro) 0%, var(--gris-oscuro) 100%);
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contacto-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s;
  padding: 1rem;
  border-radius: 10px;
}

.info-item:hover {
  background: rgba(176, 138, 87, 0.1);
  transform: translateX(10px);
}

.info-item i {
  font-size: 2rem;
  color: var(--dorado);
  min-width: 40px;
}

.info-item h4 {
  color: var(--dorado);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.info-item p {
  color: var(--dorado-claro);
  line-height: 1.8;
}

.mapa {
  border-radius: 15px;
  overflow: hidden;
  height: 400px;
  border: 2px solid var(--dorado-oscuro);
  box-shadow: 0 5px 20px rgba(176, 138, 87, 0.3);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--negro);
  border-top: 1px solid var(--dorado-oscuro);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--dorado);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-section h4 {
  color: var(--dorado);
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--dorado-claro);
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--dorado-oscuro), var(--dorado));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanco);
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-links a:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(176, 138, 87, 0.5);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: var(--dorado-claro);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.footer-section ul li a::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--dorado);
  transition: left 0.3s;
}

.footer-section ul li a:hover::before {
  left: 5px;
}

.footer-section ul li a:hover {
  color: var(--dorado);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--dorado-oscuro);
  color: var(--dorado-claro);
}

/* ========== MODAL DE RESERVA ========== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  overflow-y: auto;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  border: 2px solid var(--dorado-oscuro);
  border-radius: 20px;
  padding: 3rem;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 50px rgba(176, 138, 87, 0.3);
  animation: slideUp 0.4s ease;
}

.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: #0d0d0d;
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--dorado-oscuro), var(--dorado));
  border-radius: 10px;
}

.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--dorado);
  cursor: pointer;
  transition: all 0.3s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(176, 138, 87, 0.1);
}

.close-modal:hover {
  transform: rotate(90deg);
  background: rgba(176, 138, 87, 0.2);
}

.paso-reserva h2 {
  color: var(--dorado);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.paso-reserva h3 {
  color: var(--dorado-claro);
  margin: 2rem 0 1.5rem;
  font-size: 1.3rem;
}

.duracion-info,
.profesional-info {
  color: var(--dorado-claro);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.duracion-info span,
.profesional-info span {
  color: var(--dorado);
  font-weight: 600;
}

/* ========== BARBEROS SELECCIÓN ========== */
.barberos-seleccion {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.barbero-opcion {
  background: linear-gradient(145deg, #252525, #0d0d0d);
  border: 2px solid var(--dorado-oscuro);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.barbero-opcion:hover {
  border-color: var(--dorado);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(176, 138, 87, 0.3);
}

.barbero-opcion.seleccionado {
  border-color: var(--dorado);
  background: linear-gradient(145deg, var(--dorado-oscuro), #1a1a1a);
}

.barbero-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--dorado-oscuro), var(--dorado));
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--blanco);
}

.barbero-opcion h4 {
  color: var(--dorado);
  margin-bottom: 0.5rem;
}

.barbero-opcion p {
  color: var(--dorado-claro);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.btn-seleccionar {
  background: linear-gradient(135deg, var(--dorado-oscuro), var(--dorado));
  color: var(--blanco);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.btn-seleccionar:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(176, 138, 87, 0.5);
}

/* ========== CALENDARIO ========== */
.calendario-container {
  margin: 2rem 0;
}

.calendario-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--dorado-oscuro), var(--dorado));
  border-radius: 10px;
}

.calendario-header h4 {
  color: var(--blanco);
  font-size: 1.3rem;
  margin: 0;
}

.btn-mes {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--blanco);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.2rem;
}

.btn-mes:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.calendario {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid var(--dorado-oscuro);
}

.dia-semana {
  text-align: center;
  padding: 0.5rem;
  color: var(--dorado);
  font-weight: 600;
  font-size: 0.85rem;
}

.dia {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #252525, #0d0d0d);
  border: 1px solid var(--dorado-oscuro);
  border-radius: 8px;
  color: var(--dorado-claro);
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

.dia:hover:not(.disabled) {
  background: linear-gradient(135deg, var(--dorado-oscuro), var(--dorado));
  color: var(--blanco);
  transform: scale(1.1);
  border-color: var(--dorado);
}

.dia.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: #0d0d0d;
}

.dia.seleccionado {
  background: linear-gradient(135deg, var(--dorado-oscuro), var(--dorado));
  color: var(--blanco);
  border-color: var(--dorado);
  font-weight: 700;
}

.dia.otro-mes {
  opacity: 0.2;
}

/* ========== HORARIOS ========== */
.horarios-container {
  margin-top: 2rem;
}

.horarios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.horario-btn {
  padding: 1rem;
  background: linear-gradient(145deg, #252525, #0d0d0d);
  border: 2px solid var(--dorado-oscuro);
  border-radius: 10px;
  color: var(--dorado-claro);
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  font-size: 1rem;
}

.horario-btn:hover:not(.ocupado) {
  background: linear-gradient(135deg, var(--dorado-oscuro), var(--dorado));
  color: var(--blanco);
  border-color: var(--dorado);
  transform: translateY(-3px);
}

.horario-btn.ocupado {
  background: rgba(180, 30, 30, 0.12) !important;
  border: 2px solid rgba(200, 40, 40, 0.5) !important;
  color: #c0392b !important;
  cursor: not-allowed !important;
  text-decoration: line-through;
  opacity: 0.75;
  position: relative;
}

.horario-btn.ocupado::before {
  content: '\\2715';
  position: absolute;
  top: 4px;
  right: 7px;
  font-size: 0.65rem;
  color: #c0392b;
  font-weight: 900;
}

.horario-btn.seleccionado {
  background: linear-gradient(135deg, var(--dorado-oscuro), var(--dorado));
  color: var(--blanco);
  border-color: var(--dorado);
}

/* ========== CONFIRMACIÓN ========== */
.confirmacion-detalles {
  background: #1a1a1a;
  border: 1px solid var(--dorado-oscuro);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
}

.detalle-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(176, 138, 87, 0.2);
}

.detalle-item:last-child {
  border-bottom: none;
}

.detalle-item h4 {
  color: var(--dorado-claro);
  font-weight: 500;
  font-size: 1rem;
}

.detalle-item p {
  color: var(--dorado);
  font-weight: 600;
  font-size: 1.1rem;
}

/* ========== DATOS CLIENTE ========== */
.datos-cliente {
  margin: 2rem 0;
}

.datos-cliente h3 {
  color: var(--dorado);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--dorado-claro);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(145deg, #252525, #0d0d0d);
  border: 2px solid var(--dorado-oscuro);
  border-radius: 10px;
  color: var(--blanco);
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--dorado);
  box-shadow: 0 0 15px rgba(176, 138, 87, 0.3);
}

.form-group input::placeholder {
  color: rgba(176, 138, 87, 0.5);
}

/* ========== BOTONES DE NAVEGACIÓN ========== */
.botones-navegacion {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.botones-confirmacion {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: flex-end;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--dorado);
  color: var(--dorado);
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
}

.btn-secondary:hover {
  background: var(--dorado);
  color: var(--negro);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: scale(0.95);
}

/* ========== CONFIRMACIÓN EXITOSA ========== */
.confirmacion-exitosa {
  text-align: center;
  padding: 2rem;
}

.confirmacion-exitosa i {
  font-size: 5rem;
  color: var(--dorado);
  margin-bottom: 1.5rem;
  animation: scaleIn 0.5s ease;
}

.confirmacion-exitosa h2 {
    color: var(--dorado);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.confirmacion-exitosa > p {
  color: var(--dorado-claro);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.resumen-cita {
  background: #1a1a1a;
  border: 1px solid var(--dorado-oscuro);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: left;
}

.resumen-cita p {
  color: var(--dorado-claro);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.resumen-cita strong {
  color: var(--dorado);
  margin-right: 0.5rem;
}

.resumen-cita span {
  color: var(--blanco);
  font-weight: 600;
}

.mensaje-recordatorio {
  color: var(--dorado-claro);
  font-style: italic;
  margin: 1.5rem 0;
}

/* ========== NOTIFICACIONES ========== */
.notificacion {
  position: fixed;
  top: 100px;
  right: 30px;
  background: linear-gradient(135deg, var(--dorado-oscuro), var(--dorado));
  color: var(--blanco);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(176, 138, 87, 0.5);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: slideInRight 0.4s ease;
  max-width: 400px;
}

.notificacion-error {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.notificacion i {
  font-size: 1.5rem;
}

.notificacion span {
  flex: 1;
}

/* ========== ANIMACIONES ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateX(400px);
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ========== SCROLLBAR PERSONALIZADO ========== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--negro);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--dorado-oscuro), var(--dorado));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--dorado), var(--dorado-claro));
}

/* ========== ACCESIBILIDAD ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

button:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 2px solid var(--dorado);
  outline-offset: 2px;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablets */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

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

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

  .contacto-grid {
    gap: 2rem;
  }
}

/* Móviles */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: var(--negro);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    border-top: 2px solid var(--dorado-oscuro);
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero {
    margin-top: 70px;
    height: 80vh;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .container {
    padding: 0 15px;
  }

  .section-title {
    font-size: 2rem;
  }

  .categoria-titulo {
    font-size: 1.3rem;
  }

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

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

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .modal-content {
    padding: 2rem 1.5rem;
    width: 95%;
    max-height: 85vh;
  }

  .barberos-seleccion {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .calendario {
    gap: 0.3rem;
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  .dia {
    font-size: 0.85rem;
  }

  .horarios-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .horario-btn {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .detalle-item {
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-start;
  }

  .botones-confirmacion {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .notificacion {
    right: 15px;
    left: 15px;
    max-width: none;
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  .logo h1 {
    font-size: 1.3rem;
  }

  .logo .tagline {
    font-size: 0.65rem;
  }

  .hero-title {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-primary {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .servicio-header h4 {
    font-size: 1rem;
  }

  .precio {
    font-size: 1.1rem;
  }

  .barbero-img {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }

  .barbero-avatar {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .paso-reserva h2 {
    font-size: 1.2rem;
  }

  .paso-reserva h3 {
    font-size: 1.1rem;
  }

  .calendario-header h4 {
    font-size: 1rem;
  }

  .btn-mes {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

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

  .confirmacion-exitosa h2 {
    font-size: 1.5rem;
  }

  .confirmacion-exitosa i {
    font-size: 3rem;
  }

  .resumen-cita p {
    font-size: 0.95rem;
  }

  .footer-content {
    gap: 2rem;
  }

  .footer-section h3 {
    font-size: 1.2rem;
  }
}

/* ========== MODO IMPRESIÓN ========== */
@media print {
  .header,
  .footer,
  .btn-reservar,
  .btn-primary,
  .btn-secondary {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .servicio-card,
  .barbero-card {
    border: 1px solid #ccc;
    page-break-inside: avoid;
  }

  .confirmacion-detalles {
    border: 2px solid #000;
  }
}
/* ========== BARBERO PLACEHOLDER ========== */
.barbero-placeholder {
  background: linear-gradient(135deg, #555, #333) !important;
  opacity: 0.6;
}

.barbero-card .barbero-placeholder {
  animation: pulse 2s infinite;
}

.barbero-deshabilitado {
  opacity: 0.5;
  cursor: not-allowed !important;
}

.barbero-deshabilitado:hover {
  transform: none !important;
  border-color: var(--dorado-oscuro) !important;
  box-shadow: none !important;
}

.barbero-deshabilitado .btn-seleccionar {
  background: linear-gradient(135deg, #555, #333) !important;
  cursor: not-allowed;
  opacity: 0.6;
}

.barbero-deshabilitado .btn-seleccionar:hover {
  transform: none !important;
  box-shadow: none !important;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.8;
  }
}


/* ========== BTN LOGIN NAV ========== */
.btn-login {
  background: transparent;
  border: 1.5px solid var(--dorado);
  padding: 0.6rem 1.3rem;
  border-radius: 25px;
  color: var(--dorado) !important;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-login:hover {
  background: linear-gradient(135deg, var(--dorado-oscuro), var(--dorado));
  color: var(--blanco) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(176, 138, 87, 0.4);
}

/* ========== SERVICE CARD IMAGES ========== */
.servicio-img-wrapper {
  position: relative;
  width: calc(100% + 4rem);
  margin: -2rem -2rem 1.5rem -2rem;
  height: 180px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.servicio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.85) saturate(0.9);
}

.servicio-card:hover .servicio-img {
  transform: scale(1.07);
}

.servicio-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(13, 13, 13, 0.85) 100%
  );
  pointer-events: none;
}

/* Gold top-border accent on image */
.servicio-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--dorado), transparent);
}

@media (max-width: 768px) {
  .btn-login {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .servicio-img-wrapper {
    height: 150px;
  }
}

/* ========== CONFIRMACIÓN WHATSAPP ========== */
.confirmacion-exitosa {
  text-align: center;
  padding: 1rem 0.5rem;
}

.confirm-check-icon {
  font-size: 4rem;
  color: var(--dorado);
  margin-bottom: 1rem;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.confirm-subtitulo {
  color: var(--dorado-claro);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.resumen-cita {
  background: linear-gradient(145deg, #1a1a1a, #111);
  border: 1px solid var(--dorado-oscuro);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.resumen-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(176, 138, 87, 0.15);
  color: var(--blanco);
  font-size: 0.92rem;
  text-align: left;
}

.resumen-item:last-child {
  border-bottom: none;
}

.resumen-item i {
  color: var(--dorado);
  width: 20px;
  min-width: 20px;
  text-align: center;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.resumen-item span {
  display: inline;
  line-height: 1.4;
}

.whatsapp-instruccion {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.whatsapp-instruccion i {
  color: #25D366;
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.whatsapp-instruccion p {
  color: #aaa;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.whatsapp-instruccion p strong {
  color: #25D366;
}

.btn-whatsapp-confirmar {
  width: 100%;
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: #fff;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  margin-bottom: 0.75rem;
}

.btn-whatsapp-confirmar i {
  font-size: 1.2rem;
}

.btn-whatsapp-confirmar:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-confirmar:active {
  transform: scale(0.97);
}

.btn-omitir-ws {
  background: transparent;
  border: none;
  color: #666;
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.3rem;
  transition: color 0.2s;
  width: 100%;
}

.btn-omitir-ws:hover {
  color: #999;
}

/* ========== BARBERO FOTO ========== */
.barbero-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* ========== HERO SOCIAL LINKS ========== */
.hero-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero-social-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dorado-claro);
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-social-label::before,
.hero-social-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dorado));
}

.hero-social-label::after {
  background: linear-gradient(90deg, var(--dorado), transparent);
}

.hero-social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-social-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid transparent;
  backdrop-filter: blur(6px);
  letter-spacing: 0.02em;
}

.hero-social-btn i {
  font-size: 1rem;
}

.hero-social-btn.instagram {
  background: rgba(225, 48, 108, 0.15);
  border-color: rgba(225, 48, 108, 0.4);
  color: #f77;
}
.hero-social-btn.instagram:hover {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
}

.hero-social-btn.facebook {
  background: rgba(24, 119, 242, 0.15);
  border-color: rgba(24, 119, 242, 0.4);
  color: #7ab4f5;
}
.hero-social-btn.facebook:hover {
  background: #1877f2;
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.hero-social-btn.tiktok {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  color: #eee;
}
.hero-social-btn.tiktok:hover {
  background: linear-gradient(135deg, #010101, #69c9d0);
  border-color: #69c9d0;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(105, 201, 208, 0.35);
}

.hero-social-btn.whatsapp {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.35);
  color: #5dde8a;
}
.hero-social-btn.whatsapp:hover {
  background: linear-gradient(135deg, #128C7E, #25D366);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 480px) {
  .hero-social-links {
    gap: 0.6rem;
  }
  .hero-social-btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.82rem;
  }
  .hero-social-btn span {
    display: none;
  }
  .hero-social-btn {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

/* ========== FOTO EN BARBERO-AVATAR (modal reserva) ========== */
.barbero-avatar .barbero-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* estilos ocupado consolidados arriba */

/* ========== IMÁGENES EN SIG-CARDS ========== */
.sig-img-wrapper {
  width: calc(100% + 3.6rem);
  margin: -1.8rem -1.8rem 1.2rem -1.8rem;
  height: 190px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  position: relative;
  flex-shrink: 0;
}

.sig-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.82) saturate(0.85);
}

.sig-card:hover .sig-img {
  transform: scale(1.06);
}

.sig-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 35%,
    rgba(10, 10, 10, 0.88) 100%
  );
  pointer-events: none;
}

/* Gold cards get a warm tint overlay */
.sig-card.gold .sig-img {
  filter: brightness(0.80) saturate(0.75) sepia(0.15);
}

/* Golden shimmer line at top of image */
.sig-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--dorado), transparent);
  z-index: 2;
}

.sig-card.gold .sig-img-wrapper::after {
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

@media (max-width: 768px) {
  .sig-img-wrapper {
    height: 160px;
    width: calc(100% + 3.2rem);
    margin: -1.6rem -1.6rem 1rem -1.6rem;
  }
}

/* ========== SELECT DE SERVICIO EN PASO 3 ========== */
.detalle-item--full {
  grid-column: 1 / -1;
}

.servicio-select {
  width: 100%;
  background: linear-gradient(145deg, #1a1a1a, #111);
  border: 1.5px solid var(--dorado-oscuro);
  border-radius: 10px;
  color: var(--blanco);
  font-size: 0.92rem;
  font-family: inherit;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  margin-top: 0.4rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b08a57' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.servicio-select:focus {
  outline: none;
  border-color: var(--dorado);
  box-shadow: 0 0 0 3px rgba(176, 138, 87, 0.15);
}

.servicio-select:hover {
  border-color: var(--dorado);
}

.servicio-select option,
.servicio-select optgroup {
  background: #1a1a1a;
  color: var(--blanco);
}

.servicio-select optgroup {
  color: var(--dorado);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* Precio destacado cuando se selecciona servicio */
.detalle-item--highlight p {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dorado);
  letter-spacing: 0.02em;
}

/* Íconos en los h4 de detalle-item */
.detalle-item h4 i {
  color: var(--dorado);
  margin-right: 0.4rem;
  font-size: 0.85em;
  opacity: 0.8;
}
