/* Importa fuentes: Montserrat (base) + Great Vibes (marca elegante) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Great+Vibes&display=swap');

/* ========= PALETA =========
 Fondo: #FFFFFF
 Rosa Principal: #E899B5
 Negro: #000000
 Detalle (hover): #FFCCE1
============================ */

/* ===== Reset básico ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Fuente base */
body {
  font-family: 'Montserrat', sans-serif;
  background: #FFFFFF;
  color: #000000;
}

/* Contenedor principal */
.rv-container.sucursal-page {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;
  background-color: transparent;
  overflow: hidden;
  padding: 0;
}

/* ===== Título ===== */
.rv-section-title {
  font-family: 'Great Vibes', cursive;
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  margin: 20px auto 40px;
  max-width: 700px;
  color: #E899B5;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.25);
}

/* ===== Lista de sucursales ===== */
.rv-stylists-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 20px 0;
  max-width: 1000px;
  margin: 0 auto;
}

/* ===== Tarjeta sucursal ===== */
.sucursal-page .rv-stylist-card {
  flex: 0 0 auto;
  width: 200px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
  background-color: #fff;
  border: 2px solid rgba(232,153,181,0.6);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(232,153,181,0.15);
}

.sucursal-page .rv-stylist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(232,153,181,0.35);
  background-color: #FFCCE1;
}

/* ===== Foto sucursal ===== */
.sucursal-page .rv-stylist-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  margin-bottom: 16px;
  border: 3px solid rgba(232,153,181,0.5);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.sucursal-page .rv-stylist-card:hover .rv-stylist-photo {
  box-shadow: 0 0 16px rgba(232,153,181,0.6);
  border-color: #E899B5;
}

/* ===== Nombre sucursal ===== */
.sucursal-page .rv-stylist-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* ===== Enlaces ===== */
.sucursal-page a {
  text-decoration: none;
  color: inherit;
}

.sucursal-page a:hover {
  text-decoration: none;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .rv-container.sucursal-page {
    padding: 30px 15px 15px;
  }
  .rv-section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .rv-stylists-list {
    gap: 20px;
  }
  .sucursal-page .rv-stylist-card {
    width: 160px;
    padding: 16px;
  }
  .sucursal-page .rv-stylist-photo {
    width: 100px;
    height: 100px;
  }
  .sucursal-page .rv-stylist-name {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .rv-section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  .rv-stylists-list {
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }
  .sucursal-page .rv-stylist-card {
    width: 280px;
    max-width: 90%;
    padding: 20px;
  }
  .sucursal-page .rv-stylist-photo {
    width: 90px;
    height: 90px;
  }
  .sucursal-page .rv-stylist-name {
    font-size: 1.1rem;
    white-space: normal;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .rv-section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .sucursal-page .rv-stylist-card {
    width: 260px;
    padding: 16px;
  }
  .sucursal-page .rv-stylist-photo {
    width: 80px;
    height: 80px;
  }
  .sucursal-page .rv-stylist-name {
    font-size: 1rem;
  }
}

/* Mantengo configuración original */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
