/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Encabezado */
header {
  text-align: center;
  padding: 30px 10px;
  background-color: #0a74da;
  color: white;
  border-radius: 10px;
  margin-bottom: 30px;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.1rem;
}

/* Secciones */
section {
  margin-bottom: 40px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Redes sociales */
#redes a {
  display: inline-block;
  margin: 10px 10px 0 0;
  text-decoration: none;
  color: #0a74da;
  font-weight: bold;
  border: 2px solid #0a74da;
  padding: 8px 12px;
  border-radius: 6px;
  transition: 0.3s;
}

#redes a:hover {
  background-color: #0a74da;
  color: white;
}

/* Formulario */
form {
  display: flex;
  flex-direction: column;
}

form label {
  margin-top: 10px;
  font-weight: bold;
}

form input,
form textarea {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

form button {
  margin-top: 20px;
  padding: 12px;
  background-color: #0a74da;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background-color: #094c9e;
}

/* Mensaje de confirmación */
#mensaje-confirmacion {
  font-weight: bold;
  text-align: center;
}

/* Responsivo */
@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }

  form input,
  form textarea {
    font-size: 0.95rem;
  }
}

