:root {
  --primary-bg-color: #111111;
  --secondary-bg-color: #1a1a1a;
  --accent-color: #D4AF37;
  --text-primary-color: #FFFFFF;
  --text-secondary-color: #CCCCCC;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--primary-bg-color);
  color: var(--text-primary-color);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
}

a {
  color: var(--text-primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

/* ---------------- NAVBAR ---------------- */
#main-nav {
  position: sticky;
  top: 0;
  background-color: rgba(17, 17, 17, 0.95);
  padding: 15px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.nav-logo {
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.nav-links a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1em;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: #000000;
  text-shadow: 0 0 5px #ff2d55, 0 0 10px #ff2d55, 0 0 20px #ff2d55;
}

.cta-button {
  background-color: var(--accent-color);
  color: #111;
  font-family: 'Bebas Neue', sans-serif;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #b8941f;
  color: #111;
}

/* ---------------- HERO ---------------- */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url('assets/images/web/puestos.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden; /* <- Añade esta línea */
}


.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('assets/images/web/puestos.jpg');
  background-size: 110%;
  background-position: center;
  animation: ken-burns 15s infinite alternate ease-in-out;
  z-index: 0;
}
@keyframes ken-burns {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.hero-section h1, .hero-section h2, .hero-buttons {
  z-index: 2;
  position: relative;
}
.hero-section h1 {
  font-size: clamp(2.5em, 6vw, 5em);
  margin-bottom: 20px;
}
.hero-section h2 {
  font-size: clamp(1.2em, 3vw, 2.5em);
  margin-bottom: 40px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
}

/* ---------------- BUTTONS ---------------- */
.button,
.button.primary {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1em;
  transition: all 0.3s ease;
}

.button:hover,
.button.primary:hover {
  background-color: var(--accent-color);
  color: #111;
}

/* ---------------- SECTIONS ---------------- */
section {
  padding: 80px 5%;
}

section:nth-of-type(even) {
  background-color: var(--secondary-bg-color);
}

section:nth-of-type(odd) {
  background-color: var(--primary-bg-color);
}

section h3 {
  font-size: clamp(2em, 5vw, 4em);
  margin-bottom: 60px;
  text-align: center;
  color: var(--accent-color);
  position: relative;
}

section h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* ---------------- ABOUT ---------------- */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

.about-image, .about-text {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.about-text p {
  color: var(--text-secondary-color);
  font-size: 1.1em;
  line-height: 1.8;
}
.logo-neon-container {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.logo-neon {
  width: 250px;
  height: auto;
  filter: drop-shadow(0 0 6px #FFD700)
          drop-shadow(0 0 12px #FFD700)
          drop-shadow(0 0 20px #FFD700);
  transition: transform 0.3s ease;
}

.logo-neon:hover {
  transform: scale(1.05);
}

/* ---------------- SERVICIOS ---------------- */
/* ---------------- SERVICIOS SUPERPUESTOS ---------------- */
.services-section {
  background-color: #111;
  padding: 80px 20px;
  position: relative;
  color: #fff;
}

.services-section h3 {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--accent-color);
}

.services-wrapper {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: auto;
  border-radius: 16px;
  overflow: hidden;
  height: auto;
  min-height: 1000px;
}

/* Fondo con imagen */
.services-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/images/web/lavabo.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0.5);
  z-index: 0;
  border-radius: 16px;
}

/* Contenedor de las tarjetas encima de la imagen */
.services-text {
  position: relative;
  z-index: 1;
  padding: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  width: 100%;
}

/* Lista de servicios alineada a la izquierda */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 380px;
  width: 100%;
}

/* Estilo de cada tarjeta de servicio */
.service-card {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 18px;
  border-radius: 10px;
  border: 1px solid #ff2d55;
  box-shadow: 0 0 10px #ff2d55;
  color: white;
   margin-bottom: 25px; /* Más espacio entre tarjetas */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 18px #ff2d55;
}

.service-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #ff2d55;
}

.service-card p {
  margin: 0;
  font-size: 1rem;
  color: #ddd;
}

/* -------- Responsive para móvil -------- */
@media (max-width: 750px) {
  .services-text {
    padding: 20px;
    align-items: center;

 
}
 .services-wrapper {
  min-height: auto;
  height: auto;
}

.services-image {
  background-size: cover; /* Cambia de contain a cover */
  background-position: top;
}
  .services-list {
    max-width: 100%;
  }

  .service-card {
    padding: 14px;
    width: 100%;
  }

  .service-card h4 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }
}


/* ---------------- GALERÍA ---------------- */
.gallery-marquee-section {
  overflow: hidden;
  padding: 40px 0;
}

.gallery-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 10px; /* o 0 si prefieres */
  width: fit-content;
  animation: scroll-left 35s linear infinite;
}

.gallery-item {
  flex: 0 0 auto;
  border: 2px solid #FFD700;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  display: block;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

/* Animación fluida */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Efecto Ver Corte */
.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFD700;
  font-size: 1.2em;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.zoom-icon {
  pointer-events: none;
}

/* ----------- MARCO + HOVER ----------- */

.gallery-item {
  position: relative;
  border: 3px solid #FFD700;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  height: 180px;
  width: auto;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  transition: transform 0.3s ease;
}

.gallery-item img {
  height: 100%;
  width: auto;
  object-fit: cover;
  display: block;
  transition: 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.7);
  color: #FFD700;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 1em;
  cursor: pointer;
  transition: 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.zoom-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ----------- LIGHTBOX LIMPIO Y FUNCIONAL ----------- */

#lightbox-modal {
  position: fixed;
  display: none; /* Oculto por defecto */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

#lightbox-modal img {
  max-width: 90%;
  max-height: 90%;
  border: 4px solid #FFD700;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #FFD700;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* ---------------- ARTISTAS ---------------- */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.artist-card {
  background-color: #111;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #ff2d55
    0 0 10px #ff2d55,
    0 0 20px #ff2d55,
    0 0 30px #ff2d55;
  transition: transform 0.3s ease;
}

.artist-card:hover {
  transform: scale(1.03);
  box-shadow:
    0 0 15px #D4AF37,
    0 0 25px #D4AF37,
    0 0 35px #D4AF37;
}


.artist-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
  margin-bottom: 20px;
}
.artist-card h4 {
  font-size: 1.6em;
  color: #fff;
  margin-top: 15px;
  margin-bottom: 5px;
  font-family: 'Bebas Neue', sans-serif;
}

.artist-card p {
  font-size: 1em;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 15px;
}

/* ENLACE de Instagram con efecto neón morado */
.artist-card p a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-shadow: none;
  transition: all 0.3s ease;
}

.artist-card p a:hover {
  color: #FFD700;
  text-shadow:
    0 0 5px #FFD700,
    0 0 10px #FFD700;
}

/* FONDO de neón para el párrafo del Instagram */
.artist-card p {
  background-color: #ff2d55; 
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-block;
}


.artist-card h4,
.artist-card p {
  background: radial-gradient(circle, rgba(255,45,85,0.2) 0%, rgba(17,17,17,0.9) 60%);
  display: inline-block;
  padding: 5px 10px;
  border-radius: 6px;
}

/* ---------------- UBICACIÓN Y RESEÑAS ---------------- */
.location-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto 5%;
  align-items: flex-start;
}
.map-container {
  flex: 2;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.review-card {
  flex: 1;
  background-color: var(--dark-2);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}
.location-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.location-image {
  flex: 2;
  max-width: 100%;
}

.location-image img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.location-info {
  flex: 1;
  min-width: 280px;
  color: var(--text-secondary-color);
}

.location-info ul {
  list-style: none;
  padding-left: 0;
}

.location-info li {
  margin-bottom: 10px;
}
.review-card h3 {
  margin-bottom: 10px;
}

.rating-display {
  margin: 0;
  line-height: 1.1;
}

.rating-score {
  display: block;
  font-size: 1.5em;
  margin-bottom: 2px;
}

.stars {
  font-size: 1.2em;
  color: #FFD700;
  margin-bottom: 4px;
}

.review-count {
  margin: 0;
  font-size: 0.9em;
  color: #ccc;
}

.review-card .button {
  margin-top: 20px;
}

.review-card .button {
  margin-top: 30px; /* Puedes ajustar este también si quieres que suba */
}

/* ---------------- INSTAGRAM ---------------- */
.instagram-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

.reel-embed {
  width: 320px;
  max-width: 100%;
  border-radius: 10px;
  background: #000;
  overflow: hidden;
}

.instagram-cta {
  flex: 1 1 400px;
  max-width: 500px;
  text-align: left;
  color: var(--text-secondary-color);
}
.instagram-section {
  padding: 60px 20px;
  background-color: #111;
}

.instagram-container {
  display: flex;
  justify-content: center;
  align-items: center; /* ⬅️ Esto centra verticalmente el texto */
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.instagram-embed iframe {
  width: 300px;
  height: 500px;
  border: none;
}

.instagram-text {
  color: #fff;
  text-align: center;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* ⬅️ Esto centra verticalmente el texto dentro del div */
  height: 100%; /* Necesario para que el centrado funcione */
}

/* ---------------- CONTACTO ---------------- */
.contact-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.contact-info {
  margin-bottom: 30px;
}

.whatsapp-cta .button {
  font-size: 1.2em;
  padding: 15px 30px;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1024px) {
  .about-content, .services-layout, .location-content, .instagram-container {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.location-section {
  background-color: var(--primary-bg-color);
  padding: 80px 5%;
}

.location-row {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  justify-content: center;
}

.location-image {
  flex: 1;
  min-width: 300px;
}

.location-image img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.location-info {
  flex: 1;
  min-width: 300px;
  text-align: left;
  color: var(--text-secondary-color);
}

.location-info h4.gold-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8em;
  color: var(--accent-color);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.location-info ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.location-info li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: var(--text-primary-color);
}

.marketing-text {
  font-style: italic;
  color: var(--accent-color);
  font-size: 0.95em;
}
.instagram-section {
  background-color: var(--primary-bg-color);
  padding: 80px 5%;
  text-align: center;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--accent-color);
  font-size: 2.5em;
  margin-bottom: 40px;
  position: relative;
}

.instagram-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}

.reel-container {
  flex: 1;
  min-width: 300px;
  max-width: 360px;
}

.instagram-text {
  flex: 1;
  max-width: 400px;
  min-width: 250px;
  padding: 0 20px;
  color: var(--text-primary-color);
}

.instagram-text h4 {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--accent-color);
  font-size: 1.8em;
  margin-bottom: 10px;
}

.instagram-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  margin-bottom: 20px;
  color: var(--text-secondary-color);
}
/* ----------- Página de Artista Individual ----------- */

.barber-page-body {
  background-color: #111;
  color: white;
  font-family: 'Montserrat', sans-serif;
  padding: 20px;
}

/* Header con logo y botón volver */
.barber-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.back-button {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2em;
}

.nav-logo {
  height: 50px;
}

/* ----------- Página de Artista (Diseño Sobrio y Uniforme) ----------- */

.barber-page-body {
  background-color: #111;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  padding: 40px 20px;
}

.barber-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.back-button {
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2em;
  text-decoration: none;
}

.back-button:hover {
  color: #ccc;
}

.nav-logo {
  height: 50px;
}

/* ----------- Página de Artista Individual ----------- */
/* ---------------- PERFIL DEL BARBERO ---------------- */

.barber-profile-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px 10px;
  background-color: #111;
  max-width: 1200px;
  margin: 0 auto;
}

.barber-profile-image img {
  width: 250px;
  border-radius: 12px;
  box-shadow: 0 0 15px #D4AF37;
}

.barber-profile-info h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5em;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: none;
}

.barber-profile-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2em;
  color: #FFD700;
  margin-bottom: 10px;
}

.barber-profile-info p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  color: #fff;
  line-height: 1.5;
  max-width: 600px;
}

.instagram-link {
  display: block;
  margin-top: 15px;
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
}

.instagram-link:hover {
  color: #fff;
}

/* ------- GALERÍA DE ARTISTA ------- */
.artist-gallery-section {
  padding: 60px 20px;
  background-color: #111; /* Ajusta si tienes otra variable */
  text-align: center;
}

.artist-gallery-section h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--accent-color); /* Dorado */
  margin-bottom: 30px;
  position: relative;
}

.artist-gallery-section h3::after {
  content: '';
  display: block;
  margin: 8px auto 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

/* Grid para organizar las imágenes */
.artist-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: start;
  max-width: 1200px;
  margin: auto;
  padding: 0 10px;
}

/* Contenedor de cada imagen */
.gallery-img-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2); /* Sutil glow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img-container:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Ajustes visuales para las imágenes */
.gallery-img-container img {
  width: 100%;
  height: 280px; /* Ajusta el alto aquí según prefieras */
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* Contenedor general para el neón */
.neon-wrapper {
  position: relative;
  z-index: 0;
  /* Opcional: si tu body tiene fondo negro superpuesto, este z-index ayuda */
}

/* Neón izquierdo y derecho */
.neon-wrapper::before,
.neon-wrapper::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 30px;
  pointer-events: none;
  z-index: 100; /* Hacerlo más alto para que esté por encima */
  opacity: 0.5;  /* Ajusta para visibilidad */
}

.neon-wrapper::before {
  left: 0;
  background: radial-gradient(circle at left, rgba(255, 0, 0, 0.6) 0%, transparent 80%);
  box-shadow:
    -5px 0 20px rgba(255, 0, 0, 0.7),
    -5px 0 60px rgba(255, 0, 0, 0.4);
  filter: blur(4px);
}

.neon-wrapper::after {
  right: 0;
  background: radial-gradient(circle at right, rgba(255, 0, 0, 0.6) 0%, transparent 80%);
  box-shadow:
    5px 0 20px rgba(255, 0, 0, 0.7),
    5px 0 60px rgba(255, 0, 0, 0.4);
  filter: blur(4px);
}

/* Ocultar nav */
.nav-hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

/* Mostrar nav (normal) */
nav {
  transition: transform 0.3s ease-in-out;
}

/* ------- Ajustes responsive para móvil -------- */
  /* Hero punto focal */
  .hero-section {
    background-position: top center;
  }

  /* Artista móvil: imagen encima */
  .barber-profile-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .barber-profile-image img {
    width: 60%;
    margin-bottom: 20px;
  }
  .barber-profile-info {
    width: 100%;
  }

  /* Galería imágenes: alinear y tamaño uniforme */
  .artist-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  .gallery-img-container img {
    height: 180px; /* más pequeño para móvil */
  }
@media (max-width: 750px) {
  .hero-section {
    background-position: center top;
  }

  .hero-section::before {
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .hero-section h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
}
