/* menu y plantilla base inicia aqui*/
#principal{
    background-color: #b42822;
    color: #ffffff;
    margin: 0px;
    padding: 0px;
    }
#menu-principal{
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #f8f7f3;
}    
    #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: rgb(250, 250, 250);
    }
    
    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{
        padding: 10px 0 10px 0;
    }
    
    html, body {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    main {
        flex: 1;
    }
    
    footer {
        background-color: #222;
        color: white;
        text-align: center;
        padding: 15px;
        width: 100%;
    }
    
#body{
    background-color: #f8f7f3;
}

#caja { 
    max-width: 600px;  
    padding: 20px;
    border: 2px solid #b42822;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); 
    overflow: auto; 
    margin: 0 auto;
}

#caja::-webkit-scrollbar-thumb{

    border-radius: 20px;

  }

  p, h1, h2, h3, h4, h5, .btn, nav, footer, strong, ul {
    font-family: 'Quicksand', sans-serif;
}

#imagen-terminos-y-condiciones {
    max-width: 100%;
    height: 90%;
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
  }

  #img{
    display: flex;
    align-items: center;
    justify-content: center;  
  }
  
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  @media (min-width: 992px) {
    #caja {
      max-height: 650px;
    }
  }
  
  #caja h3 {
    margin-top: 20px;
    font-weight: 700;
    color: #b42822;
  }
  
  #caja p {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  #cajas{
    max-width: 100%;
}