body {
    font-family: Arial, sans-serif;
    background-color: #FFFFFF;
    background-image: -webkit-linear-gradient(257deg,rgba(6,11,44,1.00) 0%,rgba(31,28,86,1.00) 100%);
    background-image: -moz-linear-gradient(257deg,rgba(6,11,44,1.00) 0%,rgba(31,28,86,1.00) 100%);
    background-image: -o-linear-gradient(257deg,rgba(6,11,44,1.00) 0%,rgba(31,28,86,1.00) 100%);
    background-image: linear-gradient(193deg,rgba(6,11,44,1.00) 0%,rgba(31,28,86,1.00) 100%);
}

nav img {
  border: 1px solid #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s;
}

nav img:hover {
  transform: scale(1.1);
}

/* ===== SECCIÓN DE CONTACTO ===== */
#contact {
  background-color: #B3B3B3;
  color: #000;
  text-align: center;
  padding: 0;
  border-top: 5px solid #fff;
}

/* Encabezado superior */
.contact-header {
  background-color: #020329;
  padding: 20px;
  text-align: center;
}

.contact-header img {
  max-width: 200px;
  height: auto;
}

/* Texto principal */
.hero_header {
  margin-top: 20px;
  font-size: 1.4rem;
  color: #000;
}

/* ===== FORMULARIO ===== */
.contact-form {
  max-width: 500px;
  margin: 30px auto 50px;
  background: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-align: left;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #020329;
  box-shadow: 0 0 5px rgba(2,3,41,0.4);
}

/* Botón */
.contact-form .button {
  width: 100%;
  background-color: #020329;
  color: #fff;
  font-weight: bold;
  padding: 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form .button:hover {
  background-color: #333c87;
}

/* ===== PIE DE PÁGINA DEL FORMULARIO ===== */
.contact-footer {
  margin-top: 20px;
  text-align: center;
}

.contact-footer .privacy-link {
  color: #020329;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.contact-footer .privacy-link:hover {
  color: #333c87;
  text-decoration: underline;
}
