/* Estilos para pantallas de computadoras */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background: url('/assets/images/maxicleaning_bgPC.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#addressMaxi2 {
  display: none;
}



header {
    font-size: 12px;
    background-color: black;
    color: white;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999; /* Asegura que el header se muestre encima de otros elementos */
  }
  

  header .header-content {
    position: relative;
  }
  
  header .left-content {
    position: absolute;
    padding: 0.5rem 1rem; 
    text-align: left;
  }
  
  header .right-content {
    padding: 0.5rem 1rem;
    text-align: right;
  }
  
  header a {
    color: white;
    text-decoration: none;
    margin-left: 10px;
  }


.copyright {
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    font-weight: 300;
    position: absolute;
    text-align: center;
    bottom: 0;
    width: 100%;
  }


/* Estilos específicos para pantallas móviles */
@media only screen and (max-width: 767px) {
    body {
        background: url('/assets/images/maxicleaning_bgMOV.jpg') no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }
    #addressMaxi1 {
      display: none;
    }

    #addressMaxi2 {
      display: inline-block;
    }


}