@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;900&display=swap');

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

/* Fuente base y fondo principal */
body {
  font-family: 'Montserrat', sans-serif;
  background: #FFFFFF; /* Fondo blanco */
  color: #000000; /* Texto negro puro */
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-y: auto;
}

/* Contenedor principal */
.rv-container.sucursal-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

/* ===== Título ===== */
.rv-section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  text-align: center;
  margin: 20px 0 40px;
  color: #EE307F; /* Fucsia de la marca */
  letter-spacing: 1px;
}

/* ===== Lista de sucursales ===== */
.rv-stylists-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 0 0 20px;
  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: #FFFFFF; /* Fondo blanco */
  border: 2px solid #EE307F; /* Bordes fucsia */
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(238,48,127,0.1);
}

.sucursal-page .rv-stylist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(238,48,127,0.25);
  border-color: #EE307F;
}

/* ===== 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 #EE307F;
  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(238,48,127,0.4);
  border-color: #EE307F;
}

/* ===== Nombre sucursal ===== */
.sucursal-page .rv-stylist-name {
  font-size: 1.125rem;
  font-weight: 700;
  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;
}

/* ===== 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;
  }
}
