/* Por defecto movil */

*{
    
}
/* MOBILE */
@media (max-width: 992px) {
    
    /** dejarlo aqui dentro, es exclusivo para mvl */

    

}


/* DESKTOP */
@media (min-width: 993px) {

  
   
}

.donde-estamos-hero {
    position: relative;
    min-height: 60vh;
    background-image: var(--hero-bg);
    background-size: cover;      /* 👈 imagen completa */
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
  }
  
  /* Overlay opcional */
  .donde-estamos-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
    border:1px solid #fff;
  }
  
  /* Contenedor de contenido */
  .donde-estamos-hero__inner {
    position: relative;
    width: 100%;
    z-index: 2;
  }
  
  /* Texto */
  .donde-estamos-hero__title,
  .donde-estamos-hero__text {
    color: #fff;
    text-align: center;
  }
  