/* ============================================================
   TECHNOLOGY — HERO MODERNO INSTITUCIONAL
   Archivo: technology-hero.css
   Ubicación: /technology/technology-hero.css
   ============================================================ */

/* HERO ROOT */
.technology-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 4rem;
  background-image: url('images/technology-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

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

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

.technology-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 */
.technology-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) {
  .technology-hero {
    min-height: 420px;
    padding: 6rem 1rem 3rem;
  }

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

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

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