
/* HERO ROOT */
.contact-hero {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 3rem;
  background-image: url('images/hero-contact.jpg'); /* Cambia la imagen si deseas */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* OVERLAY */
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  z-index: 1;
}

/* CONTENT */
.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  color: #ffffff;
}

/* TITLES */
.contact-hero-content h1 {
  font-size: 2.4rem;
  font-weight: 700;
  text-shadow: 0 3px 8px rgba(0,0,0,0.6);
}

.contact-hero-content h2 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 1rem;
  text-shadow: 0 3px 8px rgba(0,0,0,0.6);
}

/* PARAGRAPH */
.contact-hero-content p {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  line-height: 1.6;
  text-shadow: 0 3px 8px rgba(0,0,0,0.6);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-hero {
    min-height: 360px;
    padding: 5rem 1rem 2.5rem;
  }

  .contact-hero-content h1 {
    font-size: 1.9rem;
  }

  .contact-hero-content h2 {
    font-size: 1.2rem;
  }

  .contact-hero-content p {
    font-size: 1rem;
  }
}

/* REMOVE GLOBAL BACKGROUND */
body.contact-page {
  background: none !important;
}

/* ENSURE HERO IS ABOVE ANY OLD BACKGROUND */
.contact-hero {
  position: relative;
  z-index: 5 !important;
}

/* BOTÓN BACK — INSTITUCIONAL DORADO (REFERENCIA ABOUT US) */
/* ESTILO ÚNICO PARA SEND Y BACK EN CONTACT */
.btn-outline-light {
  border-radius: 0 !important;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.25s ease;
  color: #fff !important;
  border-color: #fff !important;
}

.btn-outline-light:hover {
  background-color: #fff !important;
  color: #000 !important;
  border-color: #fff !important;
}

/* BOTÓN SEND — INSTITUCIONAL BLANCO (SIN BORDES REDONDOS) */
.btn-outline-light {
  border-radius: 0 !important;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.btn-outline-light:hover {
  background-color: #fff !important;
  color: #000 !important;
  border-color: #fff !important;
}

/* FORZAR TEXTO BLANCO EN EL BLOQUE DE CONTACTO */
.aboutus-list li {
  color: #ffffff !important;
}

.aboutus-list li strong {
  color: #ffffff !important;
}

.aboutus-list li::marker {
  color: #F5B76B !important; /* marcador dorado institucional */
}

/* CENTRAR PERFECTAMENTE EL BLOQUE DE INFORMACIÓN EN CONTACT */
.aboutus-list {
  padding-left: 0 !important;
  margin-left: 0 !important;
  list-style-position: inside !important;
  text-align: center !important;
}

.aboutus-list li {
  text-align: center !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}