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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #EAD1E6 0%, #FFFFFF 100%);
    color: #000000; /* Negro para texto */
    margin: 0;
    padding: 0;
    overflow-y: scroll;
}

.profile_wrapper {
    padding: 20px;
    text-align: center;
}

.profile_head {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thumb {
    margin-top: 25px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid #E03B8B; /* Magenta acento */
}

.profile_head h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3.2rem;
    color: #000000; /* Negro */
    margin-top: 0;
    margin-bottom: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
    .profile_head h1 { font-size: 2.4rem; }
}
@media (max-width: 480px) {
    .profile_head h1 { font-size: 1.8rem; }
}

.profile_head_bio {
    margin-top: 10px;
}

.profile_head_bio p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    font-style: italic;
    color: rgba(0, 0, 0, 0.7); /* Negro suavizado */
    line-height: 1.5;
}

.profile_links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.SocialLink {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000000; /* Negro */
    background-color: #FFFFFF; /* Blanco */
    padding: 14px 20px;
    border-radius: 12px;
    width: 100%;
    justify-content: center;
    max-width: 560px;
    font-size: 1rem;
    letter-spacing: 0.03em;
    border: 2px solid #E03B8B; /* Magenta */
    transition: all 0.3s ease;
}

.SocialLink:hover {
    background-color: #E03B8B; /* Hover magenta */
    color: #FFFFFF; /* Texto blanco */
    transform: scale(1.02);
}

.asset-logo {
    width: 28px;
    height: 28px;
    background-size: cover;
    background-position: center;
    margin-right: 10px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.SocialLink:hover .asset-logo {
    transform: scale(1.2);
}

.SocialLink_body h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
    color: #000000; /* Negro */
}

/* CTA */
.SocialLink.vibrar {
    background-color: #E03B8B; /* Magenta */
    color: #000000; /* Texto negro por defecto */
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(224,59,139,0.6);
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.SocialLink.vibrar:hover,
.SocialLink.vibrar:focus,
.SocialLink.vibrar:active {
    color: #FFFFFF; /* Texto blanco al hover, focus o active */
    background-color: #c62e74; /* Magenta más oscuro */
}

.reserva-link .SocialLink_body h3 {
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: inherit; /* Hereda color del padre para que cambie con hover */
}

/* Toast */
.toast-welcome {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #E03B8B; /* Magenta */
    color: #FFFFFF; /* Texto blanco */
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, top 0.4s ease, visibility 0.4s;
    pointer-events: none;
    z-index: 9999;
    font-family: 'Montserrat', sans-serif;
}

.toast-welcome.show {
    opacity: 1;
    visibility: visible;
    top: 20px;
    pointer-events: auto;
}

/* Animaciones */
@keyframes vibrar {
    0% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    50% { transform: translateX(2px); }
    75% { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}

.vibrar {
    animation: vibrar 0.2s linear infinite;
}

/* Responsivo */
@media (max-width: 768px) {
    .profile_head_bio p { font-size: 0.95rem; }
    .SocialLink { font-size: 0.95rem; }
    .SocialLink_body h3 { font-size: 15px; }
    .reserva-link .SocialLink_body h3 { font-size: 1.1rem; }
    .toast-welcome { font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .profile_head_bio p { font-size: 0.9rem; }
    .SocialLink { font-size: 0.9rem; }
    .SocialLink_body h3 { font-size: 14px; }
    .reserva-link .SocialLink_body h3 { font-size: 1rem; }
    .toast-welcome { font-size: 0.8rem; }
}

/* Configuración base */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Estilos para página de sucursales */
.rv-container.sucursal-page {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  overflow: hidden;
  padding: 40px 20px;
}

/* Título de sección */
.rv-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin: 20px auto 50px;
  color: #000000;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
}

/* Lista de sucursales */
.rv-stylists-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
  max-width: 1000px;
  margin: 0 auto;
}

/* Tarjeta de sucursal */
.sucursal-page .rv-stylist-card {
  flex: 0 0 auto;
  width: 220px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 16px;
  transition: all 0.3s ease;
  padding: 25px 20px;
  background-color: #FFFFFF;
  border: 1px solid #F2C9B8;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-decoration: none;
}

.sucursal-page .rv-stylist-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  background-color: #FFF9F9;
}

/* Foto de sucursal */
.sucursal-page .rv-stylist-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  margin-bottom: 20px;
  border: 3px solid #F2C9B8;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.sucursal-page .rv-stylist-card:hover .rv-stylist-photo {
  border-color: #000000;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

/* Nombre de sucursal */
.sucursal-page .rv-stylist-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  text-transform: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  line-height: 1.4;
}

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

.sucursal-page a:hover {
  text-decoration: none;
}

/* Responsive para sucursales */
@media (max-width: 768px) {
  .rv-container.sucursal-page {
    padding: 30px 15px 20px;
  }

  .rv-section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .rv-stylists-list {
    gap: 25px;
  }

  .sucursal-page .rv-stylist-card {
    width: 180px;
    padding: 20px 15px;
  }

  .sucursal-page .rv-stylist-photo {
    width: 120px;
    height: 120px;
  }

  .sucursal-page .rv-stylist-name {
    font-size: 1.1rem;
  }
}

@media (max-width: 640px) {
  .rv-section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .rv-stylists-list {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }

  .sucursal-page .rv-stylist-card {
    width: 260px;
    max-width: 90%;
    padding: 25px;
  }

  .sucursal-page .rv-stylist-photo {
    width: 100px;
    height: 100px;
  }

  .sucursal-page .rv-stylist-name {
    font-size: 1.2rem;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .rv-section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .sucursal-page .rv-stylist-card {
    width: 240px;
    padding: 20px;
  }

  .sucursal-page .rv-stylist-photo {
    width: 90px;
    height: 90px;
  }
}