.contacto-main {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.titulo-principal {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.contacto-info {
  text-align: center;
  margin-bottom: 40px;
}

.contacto-info p {
  font-size: 16px;
  margin: 10px 0;
  color: #555;
}

.redes {
  margin-top: 20px;
}

.redes a {
  font-size: 20px;
  margin: 0 10px;
  color: #00bfa6;
  text-decoration: none;
  transition: color 0.2s;
}

.redes a:hover {
  color: #009e8c;
}

.contacto-formulario form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacto-formulario label {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  color: #444;
}

.contacto-formulario input,
.contacto-formulario textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
}

.contacto-formulario button {
  align-self: flex-start;
  padding: 12px 30px;
  font-size: 16px;
  background: #00bfa6;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.contacto-formulario button:hover {
  background: #009e8c;
}

/* ✅ Estilo para mensaje de respuesta */
.mensaje-respuesta {
  margin-top: 15px;
  font-size: 14px;
  font-weight: bold;
  color: #444;
}
