@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; /* Bloquea el scroll global */
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(180deg, #FFFFFF 0%, #F2C9B8 60%, #D3D3D3 100%);
  color: #000000;
}

/* ===== Contenedor principal ===== */
.rv-container.sucursal-page {
  height: 100vh; /* ocupa toda la pantalla */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Contenido desde arriba */
  align-items: center;     /* centrado horizontal */
  text-align: center;
  padding: 24px;
  background-color: transparent;
  /* --- Ajuste para subir/bajar el contenido --- */
  transform: translateY(80px); /* 🔽 bajado un poco (antes -80px) */
  animation: fadeUp 0.8s ease-out;
}

/* Animación de entrada suave */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(-50px); /* Debe coincidir con el valor de arriba */
  }
}

/* ===== Título ===== */
.rv-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #000000;
}

/* ===== 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: #FFFFFF;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #F2C9B8;
  box-shadow: 0 4px 14px rgba(242, 201, 184, 0.3);
  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(229, 179, 156, 0.4);
  border-color: #e5b39c;
  background-color: #F8F0EB;
}

/* ===== Foto ===== */
.sucursal-page .rv-stylist-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  border: 3px solid rgba(242, 201, 184, 0.35);
  margin-bottom: 14px;
  transition: all 0.25s ease;
}

.sucursal-page .rv-stylist-card:hover .rv-stylist-photo {
  box-shadow: 0 0 14px rgba(229, 179, 156, 0.4);
  border-color: #e5b39c;
}

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

/* ===== 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 {
    transform: translateY(10px); /* 🔽 bajado un poco (antes -60px) */
  }
}

@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 {
    transform: translateY(10px); /* 🔽 bajado un poco (antes -40px) */
  }
}