/* menu y plantilla base inicia aqui*/
#principal{
    background-color: #b42822;
    color: #f8f7f3;
    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: 2px solid #b42822;
    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 {
        background-color: #222;
        color: white;
        text-align: center;
        padding: 15px;
        width: 100%;
        font-size: small;
    }

    #text-footer{
        margin-bottom: 0px;
    }
    
    /* menu y plantilla base ACABA aqui*/    

#titulo{
    text-align: center;
    color: #b42822;
    margin: 20px 20px 40px 20px;
    background: #f8f7f3;
    width: auto;
    display: inline-block;
    border-radius: 10px;
        
}

#img_faq{
    height: 100%;
    width: auto;
    object-fit: cover;
}

#caja-faq, #caja-producto, #caja-ordenes{
    border: 2px solid #b42822;
    border-radius: 10px;
    width: auto;
    min-width: 150px;
    max-width: 150px;
    min-height: 155px;
    max-height: 155px;
    background: #ffffff;
    box-shadow: 0 4px 8px 0 rgba(99, 0, 0, 0.1), 0 3px 10px 0 rgba(99, 0, 0, 0.1);
}

#caja-faq:hover{

    border: 2px solid #b42822;
    transform: scale(1.1);
}

#caja-producto:hover{

    border: 2px solid #b42822;
    transform: scale(1.1);
}

#caja-ordenes:hover{

    border: 2px solid #b42822;
    transform: scale(1.1);
}

.accordion-content {
    display: none;
}

.accordion-content.active {
    display: block;
}

#contactanos{
    text-align: center;
    background-color: white;
    width: auto;
    margin: auto;
    padding:20px;
    max-width: 550px;
    border: 2px solid #b42822;
}

#boton_contactanos{
    background-color: #b42822;
    color: #f8f7f3;
}

#boton_contactanos:hover{
    background-color: #ffffff ;
    color: #b42822;
    border: 2px solid #b42822;
    transform: scale(1.02);
}

#formulario{

    margin: 20px auto 20px auto;
    height: auto;
    width: 500px;
    max-width: 500px;
    padding: 20PX;
    display: none;
}

@media (max-width: 768px) {
    #formulario {
        width: 90%;
        max-width: 90%;
    }
}

#boton-enviar{

    margin: auto;
    text-align: center;
    align-items: center;
}

#enviar{

    background-color: #FFE156;
    color: #222;
    border: 2px solid #b42822;    
}

#enviar:hover{
    background-color: #A2D2FF ;
    border: 2px solid #b42822;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: scale(1.02);
}

html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Quicksand', sans-serif;
}

main {
    flex: 1;
    background-color: #f8f7f3;
    font-family: 'Quicksand', sans-serif;
}

#accordionFlushExample{
    border-radius: 10px;
    margin: 50px auto 50px auto;
    max-width: 600px;
}

p, h1, h2, h3, h4, h5, .btn, nav, footer {
    font-family: 'Quicksand', sans-serif;
}

#img {
    display: flex;
    align-items: center;
    justify-content: center;  
}

@media (max-width: 768px) {
    #img {
        bottom: 50px;
        right: 15px;
        opacity: 0.05;
    }

    #img-faq {
        max-width: 120px;
    }

    #caja-faq, #caja-producto, #caja-ordenes{
        margin: 20px auto 20px auto;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  #img-faq {
    animation: float 4s ease-in-out infinite;
    max-width: 100%;
    height: 60%;
    object-fit: contain;
    display: block;
    padding-right: 2rem;
  }

#caja-main{
    max-width: 1000px;
    margin-top: auto;
    margin-bottom: auto;
}

#caja-opciones{
    margin-top: 0px;
}
  