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

/* ========= PALETA =========
 Fondo: #FFFFFF
 Rosa Principal: #E899B5
 Negro: #000000
 Detalle (hover/brillo): #FFCCE1
============================ */

:root {
  --bg-light: #FFFFFF;
  --text-dark: #000000;
  --text-muted: #555;
  --card-bg: #FFF;
  --accent: #E899B5;
  --accent-hover: #d67899;
  --accent-light: #FFCCE1;
  --shadow: rgba(232,153,181,0.3);
}

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

/* Fondo global */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-y: auto;
}

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

/* Card principal y servicios */
.rv-main-card,
.rv-services-container {
  background-color: var(--card-bg);
  border-radius: 16px;
  box-shadow: 0 6px 15px var(--shadow);
  padding: 24px 20px;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 2px solid var(--accent);
}

/* 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;
  border: 3px solid var(--accent);
  box-shadow: 0 0 15px rgba(232,153,181,0.4);
}

/* Títulos */
.rv-section-title {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  font-size: 2rem;
  text-align: center;
  margin: 20px auto 10px;
  color: var(--accent);
  text-shadow: 1px 1px 6px rgba(0,0,0,0.25);
}

.rv-section-subtitle {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-muted);
  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: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-color: #fff;
  border: 2px solid var(--accent);
}
.rv-stylist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px var(--shadow);
  background-color: var(--accent-light);
}

/* Foto profesional */
.rv-stylist-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  margin-bottom: 8px;
  border: 3px solid var(--accent);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.rv-stylist-card:hover .rv-stylist-photo {
  box-shadow: 0 0 12px var(--accent);
  transform: scale(1.05);
}

/* Nombre profesional */
.rv-stylist-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Servicios */
.service-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px var(--shadow);
  padding: 16px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: box-shadow 0.2s ease, border 0.3s ease;
  border: 2px solid transparent;
}
.service-card:hover {
  box-shadow: 0 0 15px var(--accent);
  border: 2px solid var(--accent);
  background-color: var(--accent-light);
}
.service-name { font-weight: 700; color: var(--accent); }
.service-category, .service-info { color: var(--text-muted); font-size: 0.9rem; }

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

/* Selección activa */
.selected {
  box-shadow: 0 0 12px 3px var(--accent);
  border-radius: 12px;
  background-color: var(--accent-light);
}

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