body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  color: white;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}

/* HERO SECCIÓN SUPERIOR */
.contact-page .contact-section {
  background-image: url('../images/headcont-29.jpg');
  background-size: cover;
  background-position: center;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-page .overlay {
  text-align: center;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.contact-page .overlay h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-page .btn-home {
  background-color: #F1C40F;
  color: #0B1E3C;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.contact-page .btn-home:hover {
  background-color: #e0b90e;
}

/* FORMULARIO */
.contact-page .contact-form {
  background-color: #F5F7FA;
  padding: 60px 20px;
}

.contact-page form {
  max-width: 1000px;
  margin: auto;
}

.contact-page .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-page .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.contact-page label {
  margin-bottom: 8px;
  color: #0B1E3C;
  font-weight: 600;
  font-size: 14px;
}

.contact-page input,
.contact-page textarea {
  padding: 15px;
  border: none;
  border-radius: 20px;
  background-color: #e0e0e0;
  font-size: 16px;
}

.contact-page textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-page .form-submit {
  text-align: center;
  margin-top: 30px;
}

.contact-page button {
  background-color: #0B1E3C;
  color: #fff;
  padding: 12px 40px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-page button:hover {
  background-color: #1b2e4e;
}

/* MODO MOBILE */
@media (max-width: 768px) {
  .contact-page .contact-section {
    height: auto;
    padding: 60px 20px;
    background-position: center top;
    flex-direction: column;
    text-align: center;
    width: 100vw;
    overflow-x: hidden;
  }

  .contact-page .overlay h2 {
    font-size: 2rem;
    padding: 0 10px;
  }

  .contact-page .btn-home {
    padding: 10px 20px;
    font-size: 14px;
  }

  .contact-page .form-row {
    flex-direction: column;
    gap: 0;
  }

  .contact-page .form-group {
    width: 100%;
  }

  .contact-page form {
    padding: 0 10px;
  }

  .contact-page .contact-form {
    padding: 40px 10px;
  }

  .contact-page button {
    padding: 10px 30px;
    font-size: 14px;
  }
}

