/* ======================================
   HERO LEGADO RESPONSIVE (CENTRADO REAL)
====================================== */

.hero-legado{
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;

  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* IMAGEN DE FONDO */
.hero-img{
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  z-index: 1;
}

/* OVERLAY OSCURO */
.hero-overlay{
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.800) 0%,
    rgba(0, 0, 0, 0.600) 35%,
    rgba(0, 0, 0, 0.250) 65%,
    transparent 100%
  );

  z-index: 2;
}

/* CONTENIDO HERO */
.hero-content{
  position: relative;
  z-index: 3;

  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  text-align: center;
  padding: 0 20px;

  transform: translateY(40px);
}

/* TITULO CENTRADO SIEMPRE */
.hero-title{
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: 100%;
  padding: 0 20px;

  text-align: center !important;
  color: white;

  font-family: 'Poppins', sans-serif; /* ✅ POPPINS */
  font-size: 55px;
  font-weight: 800 !important;

  text-transform: uppercase;
  letter-spacing: 3px;

  text-shadow: 0 0 15px rgba(0,0,0,0.7);

  margin: 0;
  white-space: nowrap;

  z-index: 3;
}

/* SUBTITULO */
.hero-subtitle{
  margin-top: 140px;

  font-family: 'Poppins', sans-serif; /* ✅ POPPINS */
  font-size: 25px;
  font-weight: 500;

  color: rgba(255,255,255,0.85);
  text-shadow: 0px 2px 10px rgba(0,0,0,0.6);
}

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 768px){

  .hero-legado{
    height: 50vh;
  }

  .hero-title{
    font-size: 32px;
    letter-spacing: 2px;
    white-space: normal; /* en celular sí puede bajar */
  }


  .hero-subtitle{
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
      font-size: 14px;
  }

}

/*==================================
HEADER MÓVIL
==================================*/

@media (max-width:992px){

.hero-header{

    background:#ffffff !important;

    box-shadow:0 3px 12px rgba(0,0,0,.10);

}

.logo-header{

    content:url("assets/img/coroneo-web/index/logo-color.webp");

    height:48px;

}

}


/*======================================
  CELULAR HORIZONTAL
======================================*/

@media (max-width: 950px) and (orientation: landscape){

    .hero-legado{

        height:85vh;

        min-height:360px;

    }


    .hero-img{

        object-fit:cover;

        object-position:center;

    }


    .hero-title{

        font-size:38px;

        line-height:1.2;

        letter-spacing:2px;

        white-space:normal;

    }


    .hero-subtitle{

        margin-top:100px;

        font-size:17px;

        max-width:600px;

        margin-left:auto;

        margin-right:auto;

    }

}