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

body {
  font-family: 'Open Sans', sans-serif;
  background: #ffe6f0; /* fondo rosita suave */
  color: #b30059;
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.container {
  text-align: center;
  max-width: 400px;
  width: 100%;
  background: #fff0f5;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(255, 105, 180, 0.2);
  border: 2px solid #ff69b4;
}

.avatar {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ff69b4;
  margin-bottom: 1rem;
}

h1 {
  font-family: 'Pacifico', cursive;
  font-size: 2rem;
  color: #d63384;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #a3005e;
}

.links a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff69b4;
  color: white;
  text-decoration: none;
  padding: 1rem;
  margin: 0.5rem 0;
  border-radius: 1rem;
  font-weight: bold;
  transition: background 0.3s ease;
  font-size: 1rem;
}

.links a i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.links a:hover {
  background: #ff1493;
}

footer {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #b30059;
}

/* Responsivo */
@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
  }

  .avatar {
    width: 100px;
    height: 100px;
  }

  h1 {
    font-size: 1.7rem;
  }

  .links a {
    font-size: 0.95rem;
    padding: 0.8rem;
  }
}
