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

/* Fondo global */
html, body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(180deg, #0A1931 0%, #3B4A6B 50%, #BCC0C5 100%);
  color: #FFFFFF;
  min-height: 100%;
  overflow-y: auto;
}

/* Contenedor principal */
.rv-container {
  min-height: 100vh;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Card principal */
.rv-main-card {
  background-color: #BCC0C5;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(143, 188, 148, 0.4);
  padding: 24px 20px;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Banner */
.rv-banner-container {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}
.rv-banner {
  width: 100%;
  height: 220px;
  background-position: center;
  background-size: cover;
  border-radius: 12px;
}

/* Títulos */
.rv-section-title {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  font-size: 2rem;
  text-align: center;
  margin: 20px auto 10px;
  color: #FFFFFF;
  text-shadow: 2px 2px 10px rgba(143, 188, 148, 0.6);
}
.rv-section-subtitle {
  font-weight: 600;
  font-size: 1.125rem;
  color: #E0E3E6;
  text-align: center;
  margin-bottom: 20px;
}

/* Lista de profesionales */
.rv-stylists-list {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 10px 0 20px;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.rv-stylists-list::-webkit-scrollbar { display: none; }

/* Card profesional */
.rv-stylist-card {
  flex: 0 0 auto;
  min-width: 8rem;
  max-width: 10rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 12px;
  padding: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-color: #BCC0C5;
  color: #0A1931;
  border: 1px solid rgba(143, 188, 148, 0.3);
}
.rv-stylist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(143, 188, 148, 0.4);
  background-color: #8FBC94;
  color: #FFFFFF;
  border: 1px solid #8FBC94;
}

/* Foto profesional */
.rv-stylist-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  margin-bottom: 8px;
  border: 3px solid rgba(143, 188, 148, 0.3);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.rv-stylist-card:hover .rv-stylist-photo {
  box-shadow: 0 0 10px rgba(143, 188, 148, 0.6);
  border-color: #8FBC94;
}

/* Nombre profesional */
.rv-stylist-name {
  font-size: 1rem;
  font-weight: 600;
  color: inherit;
}

/* Servicios */
.service-card {
  background-color: #3B4A6B; /* más oscuro que el fondo */
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(143, 188, 148, 0.5);
  padding: 16px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: box-shadow 0.2s ease, border 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 0 15px #8FBC94;
  border: 2px solid #8FBC94;
}
.service-name { font-weight: 700; color: #FFFFFF; }
.service-category, .service-info { color: #E0E3E6; font-size: 0.9rem; }

/* Mensaje por defecto */
.rv-default-message {
  text-align: center;
  color: #E0E3E6;
  font-style: italic;
  padding: 40px 20px;
}

/* Selección activa */
.selected {
  box-shadow: 0 0 12px 3px #8FBC94;
  border-radius: 12px;
  background-color: rgba(143,188,148,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .rv-banner { height: 180px; }
  .rv-stylist-photo { width: 70px; height: 70px; }
}
@media (max-width: 640px) {
  .rv-stylists-list { flex-wrap: wrap; justify-content: center; overflow-x: visible; }
  .rv-stylist-card { width: 120px; max-width: 40%; }
  .rv-stylist-photo { width: 70px; height: 70px; }
}
@media (max-width: 480px) {
  .rv-stylist-card { width: 100px; max-width: 45%; }
  .rv-stylist-photo { width: 60px; height: 60px; }
}
