body {
    background-color: #f8f7f3;
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
  }
  
#main {
    background-color: #f8f7f3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
  
  /* Navbar */
#logo {
    width: 50px;
    margin-right: 15px;
}
  
#menu {
    background-color: #f8f7f3;
    position: sticky;
    top: 0;
    z-index: 1000;
}
  
a.nav-link {
    margin: 0 15px;
    font-family: 'Quicksand', sans-serif;
}
  
a.nav-link:hover {
    color: #b42822;
    text-decoration: underline;
}
  
#boton_inicio {
    color: #b42822;
    border: 1px solid #b42822;
    transition: 0.3s;
}
  
  #boton_inicio:hover {
    background-color: #b42822;
    color: #f8f7f3;
  }
  
  /* Footer */
  footer {
    background-color: #222;
    background-color: #f8f7f3;
    text-align: center;
    padding: 20px;
    font-size: small;
  }
  
  #principal{
    color: #F8F7F3;
    margin: 20px;
    padding: 0px;
    }
    
    #logo{
        width: 50px;
        height: auto;
        margin-right: 30px;
    }
    
    #boton_inicio{
    color: #b42822;
    border: #b42822 solid 1px;
    margin-right: 10PX;
    margin-left: 20PX;
    transition: 0.3s ease-in-out;
    }
    
    #boton_inicio:hover{
        background-color: #b42822;
        color: whitesmoke;
    }
    
    a.nav-link:hover{
        color: #b42822;
        text-decoration: underline;
        font-weight: bold;
        display: flex;
    }
    
    a.nav-link{
        margin: 0 20px;
    }
    
    #FAQ, #contacto, #tienda, #nosotros{
        display: none;
    }
    
    
    #menu-faq, #menu-tienda, #menu-nosotros, #menu-contacto{
        display: flex;
    }
    
    #menu-faq:hover #FAQ{
        display: flex;
        width: 40px;
        height: auto;
    }
    
    #menu-contacto:hover #contacto{
        display: flex;
        width: 40px;
        height: auto;
    }
    
    
    #menu-nosotros:hover #nosotros{
        display: flex;
        width: 40px;
        height: auto;
    }
    
    #menu-tienda:hover #tienda{
        display: flex;
        width: 40px;
        height: auto;
    }
    
    .d-block{
        width: 100%;
        height: 100%;
        max-height: 500px;
        object-fit: cover;
    }
    
    footer {
        background-color: #222;
        color: white;
        text-align: center;
        padding: 20px;
        font-size: small;
      }
      
      #text-footer {
        margin-bottom: 8px;
      }
  
 html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}


#img1, #img1-container {
    max-height: auto;
    width: 100%;
    max-width: 550px;
  }

p, h1, h2, h3, h5, .btn, nav, footer {
    font-family: 'Quicksand', sans-serif;
}

#caja-texto{
    border: #b42822 2px solid;
    border-radius: 20px;
    padding: 20px;
    margin: 20px 70px 20px 0px;
    background: white;
    max-width: 450px;
    animation: fadeIn 0.6s ease-in-out;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

#caja-1{
    margin: 30px auto 30px auto;
}

#liveToastBtn{
    background-color: #b42822;
    color: #f8f7f3;
}

#liveToastBtn:hover{
    background-color: white;
    color:#b42822 ;
    border: #b42822 solid 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: scale(1.02);
}

 
@keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

#liveToast{

    background: #b42822;
}

#toast-texto{
    color: #F8F7F3;
}

#toaster{
    margin-top: 70px;
    margin-right: 20px;
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 768px) {

    #main {
      padding: 40px 15px;
      flex-direction: column;
    }
  
    #caja-texto {
      margin: 20px 0;
      padding: 20px;
      max-width: 100%;
    }
  
    #img1-container {
      margin-bottom: 30px;
    }
  
    #img1 {
      max-width: 90%;
      height: auto;
    }
  
    .toast-container {
      top: 70px !important;
      right: 10px !important;
      left: 10px !important;
      width: auto;
    }
  
    #liveToast {
      width: 100%;
    }
  
    #toast-texto {
      font-size: 0.95rem;
    }
  
    .btn {
      width: 100%;
      margin-bottom: 10px;
    }
  
    #liveToastBtn {
      width: 100%;
    }
  }
  