/* ========= Layout contenedor ========= */
:where(.fondo):where(div) {
    min-width: 100vw;
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    width: 100vw;
  }
  
  :where(.contenedor-header):where(.d-flex) {
    width: 100%;
    height: 100%;
  
    display: flex;
    flex-direction: column;
  }
  
  :where(.contenedor-texto) {
    padding: 0.5% 5% 2.5% 0;
  }
  
  /* ========= Tipografías / títulos ========= */
  :where(.d-flex):where(.titulo-header):where(.hide-mobile) {
    color: #fff !important;
    font-family: 'Roboto-Black';
    display: block !important;
  }
  
  .titulo150 {
    margin-top: 2vh;
    margin-bottom: -0.8rem;
    font-size: 120px;
    font-weight: 700;
    text-shadow: 2px 2px 2px #000;
    text-align: left;
    transition: text-shadow 0.3s, scale 0.3s;
  }
  
  .titulo150:hover {
    scale: 1.005;
  }
  
  .home {
    text-decoration: none;
    color: #fff;
  }
  
  .home:hover,
  .home:visited {
    text-decoration: none;
  }
  
  .subtitulo150 {
    font-size: 51px;
    margin: .5vh 0 0;
    color: var(--sub-tittle-color);
    text-align: left;
  }
  
  
  /* ========= Slider ========= */
  /* Wrapper del slider */
  .header-slider {
    position: relative;
    width: 100%;
    margin: 0;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden;
    flex: 1 1 100%;
  }
  
  /* Cada slide ocupa todo el wrapper */
  .header-slider .slide {
    position: relative;
    inset: 0;
    width: 100%;
    height: auto;
    display: none; 
  }
  
  .header-slider .slide.active {
    display: block;
    z-index: 1;
 