
/* ... (estilos anteriores) ... */

.follow-title {
  text-align: center;
  font-size: 2.5rem;
  margin: 2rem auto 1rem;
  color: #222;
  background: linear-gradient(135deg, #ff0066, #ff9900);
  padding: 1rem 2rem;
  border-radius: 12px;
  max-width: 400px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* NUEVO: estilos para la barra de navegación */
nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  font-weight: bold;
  color: #222;
  background: #f0f0f0;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background 0.3s;
}

nav a:hover {
  background: #ddd;
}

/* NUEVO: iconos sociales */
.social-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.social-buttons a {
  color: #222;
  transition: transform 0.2s;
}

.social-buttons a:hover {
  transform: scale(1.2);
}

/* NUEVO: formulario de contacto */
#contact-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#contact-form input,
#contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

#contact-form button {
  padding: 0.8rem;
  background: #aaa;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: not-allowed;
}

#contact-form button.enabled {
  background: #ff0066;
  cursor: pointer;
}
