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

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

/* ===== Página sin scroll ===== */
html, body {
  height: 100%;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 50%, #000000 100%);
  color: #FFFFFF;
}

/* ===== Contenedor principal ===== */
.rv-container.sucursal-page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 24px;
  background-color: transparent;
  padding-top: 100px; /* Espacio desde arriba sin animación */
}

/* ===== Título ===== */
.rv-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #C79F32;
  text-shadow: 0 2px 6px rgba(199, 159, 50, 0.4);
}

/* ===== Lista de sucursales ===== */
.rv-stylists-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 960px;
}

/* ===== Tarjeta sucursal ===== */
.sucursal-page .rv-stylist-card {
  width: 200px;
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #4E3629;
  box-shadow: 0 4px 14px rgba(199, 159, 50, 0.1);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sucursal-page .rv-stylist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(199, 159, 50, 0.3);
  border-color: #C79F32;
  background-color: #4E3629;
}

/* ===== Foto ===== */
.sucursal-page .rv-stylist-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  border: 3px solid #C79F32;
  margin-bottom: 14px;
  transition: all 0.25s ease;
}

.sucursal-page .rv-stylist-card:hover .rv-stylist-photo {
  box-shadow: 0 0 14px rgba(199, 159, 50, 0.5);
  border-color: #d4ad3d;
}

/* ===== Nombre ===== */
.sucursal-page .rv-stylist-name {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.sucursal-page .rv-stylist-card:hover .rv-stylist-name {
  color: #C79F32;
}

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

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .rv-section-title {
    font-size: 1.9rem;
  }
  .sucursal-page .rv-stylist-card {
    width: 170px;
  }
  .rv-container.sucursal-page {
    padding-top: 80px;
  }
}

@media (max-width: 640px) {
  .rv-section-title {
    font-size: 1.6rem;
  }
  .rv-stylists-list {
    flex-direction: column;
    align-items: center;
  }
  .sucursal-page .rv-stylist-card {
    width: 260px;
    padding: 14px;
  }
  .rv-container.sucursal-page {
    padding-top: 70px;
  }
}