/* 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');

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

/* Fuente base + fondo claro coherente con home */
body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(180deg, #F7FAFC 0%, #F9FBFD 50%, #FFFFFF 100%);
  color: #0F172A; /* texto principal oscuro */
  height: 100%;
}

/* Evitar overflow global para permitir scroll si hace falta */
html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-y: auto;
}

/* Contenedor principal */
.rv-container.sucursal-page {
  min-height: calc(100vh - 0px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
  align-items: center;
  background-color: transparent;
  overflow: hidden;
  padding: 24px 16px 32px;
}

/* ===== Título ===== */
.rv-section-title {
  font-family: 'Great Vibes', cursive; /* si preferís institucional, cambia a Montserrat 800 */
  font-size: 2.2rem;
  font-weight: 400;
  text-align: center;
  margin: 10px auto 20px;
  max-width: 720px;
  color: #0F172A; 
  text-shadow: none;
}

/* ===== Lista de sucursales ===== */
.rv-stylists-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 10px 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: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
  padding: 16px;
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0; /* borde sutil */
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(2, 6, 23, 0.05);
}

.sucursal-page .rv-stylist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(46, 125, 219, 0.12); /* sombra con primario */
  background-color: #F8FBFF;
  border-color: #2E7DDB; /* primario */
}

/* ===== Foto sucursal ===== */
.sucursal-page .rv-stylist-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  margin-bottom: 14px;
  border: 3px solid rgba(105, 195, 176, 0.35); /* verde agua suave */
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.sucursal-page .rv-stylist-card:hover .rv-stylist-photo {
  box-shadow: 0 0 14px rgba(46, 125, 219, 0.18);
  border-color: #69C3B0; /* acento amable */
}

/* ===== Nombre sucursal ===== */
.sucursal-page .rv-stylist-name {
  font-size: 1rem;
  font-weight: 600;
  color: #0F172A;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  letter-spacing: 0.02em;
}

/* ===== 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: 20px 14px 20px;
  }
  .rv-section-title {
    font-size: 1.9rem;
    margin-bottom: 18px;
  }
  .rv-stylists-list {
    gap: 14px;
  }
  .sucursal-page .rv-stylist-card {
    width: 170px;
    padding: 14px;
  }
  .sucursal-page .rv-stylist-photo {
    width: 96px;
    height: 96px;
  }
  .sucursal-page .rv-stylist-name {
    font-size: 0.95rem;
  }
}

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

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