/* Index */
@media (max-width: 768px) {
  .portada {
    display: none !important;
  }

  .contenedor {
    display: flex;
    flex-direction: column;
  }

  .texto-encima {
    position: static !important;
    order: 1;
  }

  .superpuesta {
    max-width: 80%;
    margin-top: 15px;
    order: 2;
    opacity: 1 !important;
    position: relative !important;
    top: auto !important;
  }

  .anuncio-superpuesto,
  .boton-anuncio {
    display: none !important; 
  }
}
/* header */
@media (max-width: 768px) {
  .barra {
    background-color: #F10000;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center;     /* Centra verticalmente */
    position: sticky;
    top: 0;
    z-index: 9999;
  }

  .hamburger {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: white;
  }
    #mobile-menu {
    background-color: #fff;
    border-top: 1px solid #ccc;
    padding: 15px;
  }

  #mobile-menu a {
    display: block;
    padding: 5px 0;
    color: #000;
    text-decoration: none;
  }
    .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }
    #menu-toggle {
    display: block ;
  }
}