<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
    background-color: black;
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5em;
    
  }
  
@font-face {
  font-family: "Didactgothic";
  src:url("fonts/DIDACTGOTHIC.TTF");
}

@font-face {
  font-family: "poppins";
  src:url("fonts/POPPINS-BLACK.OTF");
}

  .menu {
    font-family: "Didactgothic";
    font-size: 14px;
  }

  .menu-heading {
    margin: 0;
    font-family: "poppins";
    text-align: center;
    font-size: 32px;
  }
  .menu-heading-2 {
    margin: 0;
    font-family: "Didactgothic";
    text-align: center;
    font-size: 16px;
  }

.heading-divisor{
  margin: 0;
    font-family: "poppins";
    text-align: center;
    font-size: 26px;
}
  
  .menu-group-heading {
    margin: 0;
    padding-bottom: 1em;
    border-bottom: 2px solid #ccc;
    text-align: center;
  }
  
  .menu-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5em;
    padding: 1.5em 0;
  }
  
  .menu-item {
    display: flex;
  }
  

  
  .menu-item-heading {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Alinea verticalmente los elementos */
    margin: 0;
}

  .price-time {
    display: flex;
    align-items: center; 
}
.menu-item-price, .menu-item-time {
  margin-left: 1em; /* Espacio entre precio y tiempo */
}

  .menu-item-name-2{
    font-size: 12px;
  }
  
  .menu-item-name, .menu-item-name-2 {
    margin-right: 1.5em;
  }
  
  .menu-item-description {
    line-height: 1.6;
  }
 
  @media screen and (min-width: 992px) {
     /*
    .menu {
      font-size: 16px;
    }
  
    .menu-group {
      grid-template-columns: repeat(2, 1fr);
    }
  
    
      */
    .logo{
        width:15%;
    }
  }
 
   @media screen and (max-width: 992px) {
    .logo{
        width:50%;
    }
  }
 
  .menu-item-description {
    line-height: 1.6;
    font-size: 14px; /* O el tamaÃ±o que desees */
    color: lightgray; /* O el color que prefieras */
}

.floating-button {
  position: fixed; 
  top: 20px; /* Cambia 'bottom' a 'top' para colocarlo arriba */
  right: 20px; 
  padding: 10px 15px;
  background-color: black; /* Fondo negro */
  color: white;
  border: 2px solid white; /* Borde blanco de 2px */
  border-radius: 50%; 
  cursor: pointer;
  text-decoration: none; 
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
  z-index: 9999; 
}

.floating-button:hover {
  background-color: #333; /* Cambia el color al pasar el mouse (opcional) */
}

  @media screen and (max-width: 992px){.im{width:60%}} @media screen and (min-width: 992px){.im{width:40%}}


  .tour-item {
    display: flex; 
    flex-direction: column;  /* Cambiamos a columna para que la imagen estÃ© arriba */
    align-items: center;    /* Centramos horizontalmente el contenido */
}

.menu-item-image {
    width: 100%; /* La imagen ocuparÃ¡ todo el ancho disponible */
    max-width: 400px; /* Pero no serÃ¡ mÃ¡s grande que 400px */
    height: auto;   /* La altura se ajustarÃ¡ automÃ¡ticamente */
    margin-bottom: 1.5em; 
}

.menu-item-text {
    width: 90%; /* El texto ocuparÃ¡ el 90% del ancho, dejando un margen a los lados */
}</pre></body></html>