/* HOME (inicio.css) — Hero limpio: 1 imagen, centrado, sin duplicados */

.page-home .home-hero{
  position: relative;
  overflow: hidden;

  /* altura tipo ejemplo, no gigantes */
  min-height: 560px;

  display: flex;
  align-items: center;

  /* UNA sola imagen, sin repetir */
  background-image: url("https://qhitech.com/assets/uploads/images/fondo_hero_universo_compri.png");
  background-repeat: no-repeat;
  background-size: cover;

  /* ajusta encuadre para que NO “parta” en el centro */
  background-position: center 75%;
}

/* Overlay suave para legibilidad, sin oscurecer en exceso */
.page-home .home-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 50% 35%, rgba(255,255,255,.14), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgba(11,27,43,.10) 0%, rgba(11,27,43,.20) 55%, rgba(11,27,43,.38) 100%);
  pointer-events:none;
  z-index:0;
}

/* Fade inferior a blanco como en el ejemplo */
.page-home .home-hero::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
  pointer-events:none;
  z-index:1;
}

.page-home .home-hero__inner{
  position: relative;
  z-index: 2;

  text-align: center;

  /* deja aire bajo header sin inventarlo */
  padding: 120px 16px 92px;

  max-width: 980px;
  margin: 0 auto;
}

.page-home .home-hero__kicker{
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

.page-home .home-hero__title{
  margin: 0;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 4.2vw, 60px);
  color: #fff;
  text-shadow: 0 10px 26px rgba(0,0,0,.22);
}

.page-home .home-hero__title span{
  color: rgba(255,255,255,.72);
}

.page-home .home-hero__sub{
  margin: 16px auto 0;
  max-width: 760px;
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,.82);
  text-shadow: 0 10px 22px rgba(0,0,0,.18);
}

/* ===== CTA FINAL SOBRE IMAGEN (sin marco, centrado) ===== */

.page-home .home-cta-art{
  position: relative;
  overflow: hidden;

  margin-top: 56px;

  /* zona visible suficiente para “banner” */
  min-height: 320px;
  padding: 90px 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background-image: url("https://qhitech.com/assets/uploads/images/pi_tecno_compri.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* quita cualquier línea superior */
  border-top: 0 !important;
  outline: 0;
}

/* velo suave para legibilidad SIN marcar borde */
.page-home .home-cta-art::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.70) 0%,
    rgba(255,255,255,.40) 45%,
    rgba(255,255,255,.70) 100%
  );
  pointer-events:none;
  z-index:0;
}

/* anulamos “marco” global de .cta-panel y lo centramos */
.page-home .home-cta-art .cta-panel{
  position: relative;
  z-index: 1;

  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;

  text-align: center;

  max-width: 980px;
  margin: 0 auto;
}

.page-home .home-cta-art .cta-panel h3{
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: clamp(22px, 2.3vw, 30px);
  color: #0c1420;
}

.page-home .home-cta-art .cta-panel p{
  margin: 0;
  font-size: clamp(14px, 1.35vw, 16px);
  color: rgba(12,20,32,.78);
}

/* Ajustes responsive */
@media (max-width: 1024px){
  .page-home .home-hero{ background-position: center 82%; }
}

@media (max-width: 640px){
  .page-home .home-hero__inner{ padding: 106px 14px 84px; }
  .page-home .home-cta-art{ padding: 78px 0; min-height: 280px; }
}
