/* Fuente sugerida: puedes cambiarla si tienes otra en mente */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap');

:root {
  --rosa: #ffd6e8;
  --texto: #3a3a3a;
}

/* Fondo animado de estrellas */
.stars {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 0;
  background: transparent;
}
.stars::before, .stars::after {
  content: "";
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
  background-image:
    radial-gradient(white 1px, transparent 1px),
    radial-gradient(#ffe3f7 1.5px, transparent 1.5px),
    radial-gradient(#b2eaff 1px, transparent 1px);
  background-size: 80px 80px, 120px 120px, 200px 200px;
  background-position: 0 0, 40px 60px, 100px 120px;
  opacity: 0.7;
  animation: stars-move 60s linear infinite;
}
.stars::after {
  background-size: 160px 160px, 240px 240px, 400px 400px;
  background-position: 80px 40px, 60px 100px, 200px 80px;
  opacity: 0.4;
  animation-duration: 90s;
}

@keyframes stars-move {
  0% { transform: translateY(0); }
  100% { transform: translateY(40px); }
}

/* Efecto de brillo para los emojis decorativos */
.sparkle {
  animation: sparkle 1.5s infinite alternate;
  filter: drop-shadow(0 0 6px #fff7);
}
@keyframes sparkle {
  0% { opacity: 1; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.7; transform: scale(1.2) rotate(10deg); }
  100% { opacity: 1; transform: scale(1) rotate(-10deg); }
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', sans-serif;
  background: #fdf6f9;
  color: #333;
  position: relative;
  min-height: 100vh;
  z-index: 1;
}

.bio-header {
  background: linear-gradient(120deg, #ffd1dc, #c2f0fc);
  padding: 2rem;
  text-align: center;
  color: #3a3a3a;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 4px 20px 0 rgba(255, 209, 220, 0.15);
  overflow: hidden;
}

.bio-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.3rem;
}

.bio-header .tagline {
  font-size: 1.2rem;
  color: #666;
}

.bio-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #fff;
  margin: 2rem auto;
  max-width: 900px;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  gap: 2rem;
  position: relative;
  z-index: 2;
  border: 2px solid #ffe3f7;
  background: rgba(255,255,255,0.95);
  /* Sutil resplandor */
  box-shadow: 0 8px 32px rgba(186,234,255,0.15), 0 1.5px 8px #ffd6e8;
}

.avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #ffd6e8;
  box-shadow: 0 4px 16px #ffd6e8aa, 0 0 0 8px #fff6;
  background: linear-gradient(135deg, #ffe3f7 60%, #b2eaff 100%);
}

.bio-info {
  max-width: 500px;
}

.bio-info h2 {
  margin-top: 0;
  font-size: 2rem;
  color: #e77db0;
}

.bio-info p {
  margin: 0.3rem 0;
  font-size: 1.1rem;
}

.bio-info ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.bio-info li {
  background-color: var(--rosa);
  border-radius: 12px;
  font-weight: bold;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  list-style: none;
}

.bio-info li a {
  display: block;
  text-decoration: none;
  padding: 0.6rem 1rem;
  color: var(--texto);
  border-radius: 12px;
}

.bio-info li:hover {
  background-color: #baeaff; /* azul pastel */
  transform: scale(1.02);
}

.bio-info li a:hover {
  font-weight: 600;
}

/*boton de comicionar*/

.comisionar-btn {
  text-align: center;
  margin-top: 1.5rem;
}

.comisionar-btn a {
  display: inline-block;
  background-color: var(--rosa);
  color: var(--texto);
  padding: 0.7rem 1.5rem;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.comisionar-btn a:hover {
  background-color: #baeaff;
  transform: scale(1.05);
}

footer {
  text-align: center;
  padding: 1rem;
  color: #aaa;
  font-size: 0.9rem;
  background: linear-gradient(90deg, #ffd1dc22 0%, #c2f0fc22 100%);
  border-radius: 20px 20px 0 0;
  margin-top: 2rem;
  z-index: 2;
  position: relative;
}
