/* 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: #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 {
        background-color: #222;
        color: white;
        text-align: center;
        padding: 15px;
        width: 100%;
        font-size: small;
    }

    #text-footer{
        margin-bottom: 0px;
    }
    
    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;
    }
    

#body{
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Quicksand', sans-serif;
}

#caja-texto{

    text-align: center;
    max-width: 500px;
    border: #b42822 solid 1px;
    border-radius: 10px;
    margin: 20px auto 20px auto;
    background-color: white;
}

#boton-enviar{

    margin: auto;
    text-align: center;
    align-items: center;
}

#enviar{
    background-color: #b42822;
    color: #f5f5f5;
}

#enviar:hover{
    color: #b42822;
    background-color: #f5f5f5;
    border: #b42822 solid 1px;
}

#formulario{

    height: auto;
    width: 500px;
    max-width: 500px;
    border: #b42822 solid 1px;
}

@media (max-width: 768px) {
    #formulario {
        width: 90%;
        max-width: 90%;
    }
}

#imagen-whatsapp{
    width: 80px;
    height: 70px;
}

#texto-1{
    margin-top: 10px;
}

#texto-2{
    margin-top: 10px;
}

#main-caja{
    margin: auto;
}