main nav {
    margin-left: 50px;
    display: flex;
    align-self: flex-start;
}

nav ol a {
    text-decoration: none;
    color: #030E4F;
    padding: 5px;
}

nav ol a:hover {
    background-color: #f49e1ca4;
    border-radius: 3px;
}

main {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}

main h2 {
    margin-left: 50px;
}

.container-filtros {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.btn-outline-primary {
    border-radius: 0px;
}

#accordionFlushExample {
    width: 15%;
}

.btn-primary {
    background-color: #030E4F;
    color: #F49F1C;
    border: #F49F1C 2px solid;
}

.botao-quantidade {
    max-width: 40px;
    background-color: #F49F1C;
    color: #030E4F;
    border-radius: 10px;
}

.btn-group {
    display: flex;
    gap: 20px;
    width: 70%;
    align-items: end;
}

.container-produtos {
    display: flex;
    flex-direction: row;
}

.produtos {
    display: flex;
    flex-direction: row;
    width: 90%;
    max-height: 70vh;
    flex-wrap: wrap;
    overflow: hidden;
    overflow: auto;
    flex-grow: 1;
    padding: 15px;
}

.container {
    border: solid 1px #000000;
    width: 260px;
    height: 400px;
    margin-bottom: 15px;
    margin-left: 15px;
}

.ifn-produto {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 25%;
    margin-top: 15px;

}

#buttom {
    width: 103px;
    height: 40px;
    display: block;
    margin-left: 20px;
}

#buttom button {
    width: 100px;
    height: 40px;
    font-size: 13px;

}

#inf-produto {
    width: 100%;
    height: 30%;
}

.ifn-produto h5 {
    width: 100%;
    height: 100%;
    font-size: 17px;
    margin-bottom: 20px;
}

.ifn-produto p {
    width: 70%;
    flex-direction: row;
}

.container img {
    margin-bottom: 10px;
    width: 100%;
    height: 60%;
}

@media screen and (max-width: 575px) {
    .container-filtros {
        display: flex;
        flex-direction: column;
    }

    .container-produtos {
        flex-direction: column;
    }

    .btn-group {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .produtos {
        width: 100%;
        justify-content: center;
    }

    .container {
        margin: 0;
        margin-bottom: 20px;
    }

    .btn-outline-primary {
        width: 100%;
    }

    #accordionFlushExample {
        width: 100%;
    }
}

.modal-body {
    display: flex;
    flex-direction: column;
    justify-content: left;
}

.img-modal {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 15px;
}

.img-modal img {
    width: 50%;
    border: 1px solid #030E4F;
    border-radius: 5px;
}

.img-modal img:hover {
    transform: scale(1.0, 1.0);
}

.sub-img-modal {
    display: flex;
    flex-direction: column;
    width: 15%;
    gap: 15px;
}

.sub-img-modal img {
    width: 60px;
    height: 60px;
}

.quantidade {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.quantidade p {
    width: 30%;
}

.custom-btn {
    border: #F49F1C 2px solid;
    color: #F49F1C;
}

.btn-saiba-mais {
    background-color: #030E4F;
    border: 2px solid #F49F1C;
    border-radius: 5px;
    padding: 0;
    margin: 0;
}

.btn-saiba-mais:hover {
    transition: all 0.5s ease;
    background-color: #F49F1C;
    border: 2px solid #030E4F;
}

.btn-saiba-mais a {
    text-decoration: none;
    color: #F49F1C;
    border-radius: 5px;
    padding: 10px 16px;

}

.btn-saiba-mais a:hover {
    transition: all 0.5s ease;
    color: #030E4F;
}

.text-footer {
    display: flex;
    justify-content: space-around;
}