@charset "utf-8";
/* CSS Document */

/* ==========================================================
   HERO CONTACTO – PIXELDOT
   ========================================================== */

#hero-contacto {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-original {
   isolation: isolate;
  position: relative;
}
.hero-overlay { z-index: 2; }
.hero-content { z-index: 3; }

/* ==========================================================
   IMAGEN DE FONDO
   ========================================================== */

#hero-contacto .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/hero/hero-contacto.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1.05);
}

/* ==========================================================
   OVERLAY PIXELDOT (AZUL DEGRADADO)
   ========================================================== */

#hero-contacto .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 67, 143, 0.75) 0%,
    rgba(20, 67, 143, 0.85) 60%,
    rgba(20, 67, 143, 0.95) 100%
  );
  z-index: 2;
}

/* ==========================================================
   CONTENIDO
   ========================================================== */

#hero-contacto .hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding: 0 20px;
  color: #ffffff;
	}

/* ==========================================================
   TÍTULO
   ========================================================== */

#hero-contacto h1 {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 18px;
  color: #ffffff;
  text-shadow: 0 12px 30px rgba(0,0,0,.35);
}

/* ==========================================================
   DESCRIPCIÓN
   ========================================================== */

#hero-contacto p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 36px;
  line-height: 1.55;
  text-shadow: 0 8px 24px rgba(0,0,0,.25);
}

/* ==========================================================
   BOTÓN CTA
   ========================================================== */

#hero-contacto .hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 36px;
  border-radius: 999px;

  background: linear-gradient(90deg, #149bd7, #127ab0);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;

  box-shadow: 0 18px 40px rgba(20, 155, 215, 0.45);
  transition: transform .35s ease, box-shadow .35s ease;
}

#hero-contacto .hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(20, 155, 215, 0.65);
  color: #ffffff;
}

/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 768px) {

  #hero-contacto {
    min-height: 85vh;
	   position: relative;
  z-index: 0; /* 🔑 clave */
  }

  #hero-contacto h1 {
    font-size: 2.4rem;
  }

  #hero-contacto p {
    font-size: 1rem;
  }

}
