body {
  margin: 0;
  padding: 0;
  font-family: 'Raleway', sans-serif;
  background:#0d0d0d;
  text-align: center;
}

.container {
  max-width: 400px;
  margin: auto;
  padding: 20px;
}

.perfil img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #d4af37;
  object-fit: cover;
  margin-top: 20px;
}

/* Nombre y línea */
.nombre {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 10px 0 5px;
  background: linear-gradient(to right, #f5dba3, #fac20c);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.linea {
  width: 120px;
  height: 4px;
  margin: 0 auto 20px;
  background: linear-gradient(to right, #f7b11b, #eedea8);
  border-radius: 2px;
}

/* Título contacto */
.titulo-contacto {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 20px;
  background: linear-gradient(to right, #e9cf96, #d4af37);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.mensaje {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 500;
  margin-bottom: 30px;
  font-size: 1.1rem;
  background: linear-gradient(to right, #ebd19b, #ebbd29); /* Puedes modificar este degradado */
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.numeros {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.numero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

.numero i {
  font-size: 1.5rem;
  color: #f8e640;
}

.numero span {
  background: linear-gradient(to right, #f0c260, #f1bd10);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.redes {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.redes a {
  font-size: 1.5rem;
  color: #f7c73a;
  transition: transform 0.3s;
}

.redes a:hover {
  transform: scale(1.2);
}

.regresar-btn {
  display: inline-block;
  background: #3a2a06;
  color: #f7c14b;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  transition: background 0.3s;
}

.regresar-btn:hover {
  background: #5c3d09;
}

footer {
  font-size: 0.8rem;
  color: #777;
  margin-top: 30px;
}
