@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

#nav {
    width: 100vw;
    background-color: #030E4F;
    position: fixed;
    z-index: 1000;
    transition: top 0.3s;
    top: 0;
    box-shadow: 0px 0px 5px 3px #F49F1C;
}

#nav.sticky {
    top: -10px;
}

#conteudo-nav {
    display: flex;
    justify-content: space-evenly;
}

.navbar-toggler {
    background-color: #F49F1C;
    margin-right: 20px;
}

.navbar-nav .nav-link.active {
    color: #F49F1C;
    font-weight: 600;
}

.navbar-nav .nav-link.active:hover {
    color: #030E4F;
    background-color: #f49e1ca4;
    border-radius: 3px;
}

.navbar-text a {
    color: #F49F1C;
    font-weight: 600;
}


.navbar-text a:focus {
    color: #F49F1C;
}

.navbar-text a:hover {
    background-color: #f49e1ca4;
    border-radius: 3px;
}

.nav-link {
    color: #F49F1C;
    font-weight: 600;
    padding: 10px;
}

.btn-carrinho {
    margin-right: 25px;
    background-color: #F49F1C;
    border: 2px solid #F49F1C;
}

.btn-carrinho i {
    color: #030E4F;
}

.btn-carrinho:hover {
    color: #030E4F;
    border-color: orangered;
}

.nav-link:focus {
    color: #F49F1C;
}

.nav-link:hover {
    background-color: #f49e1ca4;
    border-radius: 3px;
}

.navbar-brand {
    margin-left: 16px;
}

span a {
    padding: 8px 0px;
    margin-right: 40px;
}

ul {
    list-style: none;
}

li {
    color: #F49F1C;
}

footer section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #030E4F;
}

.text-center {
    border-top: #F49F1C solid 2px;
}

.text-footer {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 50px;
}

.p-4 {
    background-color: #030E4F;
}

.p-3 {
    border-top: 2px solid #F49F1C;
}

#footer-link {
    color: #F49F1C;
}

.text-footer span {
    align-self: flex-end;
}

@media screen and (max-width: 575px) {
    #section-footer {
        display: flex;
        flex-direction: column;
    }

    .nav-link {
        padding: 8px 0px;
    }

    .text-footer {
        flex-direction: column;
        display: flex;
        align-items: center;
    }

    .text-footer ul {
        padding: 15px;
    }
}

.btn-primary:hover {
    background-color: #F49F1C;
    color: #030E4F;
}

.btn-primary:focus {
    background-color: #030E4F;
    color: #F49F1C;
}

/* ESTILIZAÇÃO DO OFF CANVA/CARRINHO */

#offcanvasRight {
    border-left: 2px solid #F49F1C;
}

.offcanvas-body {
    justify-content: center;
    overflow: auto;
}

.card-carrinho {
    width: 100%;
    border: 1px solid #030E4F;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
}

.tituloProduto {
    text-transform: uppercase;
    color: #030E4F;
    font-size: 18px;
}

.btn-close {
    margin-right: 10px;
}

.carrinho-topo {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #030E4F;
}

.carrinho-topo span {
    font-size: 20px;
}

.carrinho-topo button {
    border: 2px solid #030E4F;
    color: black;
}

.carrinho-corpo {
    display: flex;
}

.img-card-carrinho {
    width: 50%;
    border-right: 1px solid #030E4F;
}

.img-card-carrinho img {
    width: 100%;
    border-radius: 5px;
}

.card-carrinho-info {
    width: 50%;
    padding: 8px;
    flex-direction: column;
    display: flex;
    font-size: 15px;
    align-items: center;
    justify-content: center;
}

.card-carrinho-info span {
    padding-bottom: 5px;
    text-align: center;
}

.offcanvas-footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.finalizar-compra {
    width: 100%;
    display: flex;
    padding: 30px;
    justify-content: center;
    align-items: center;
    border-top: 2px solid #F49F1C;
}

.finalizar-compra span {
    padding-right: 15px;
    text-align: center;
    font-size: 20px;
}

.btn-outline-secondary {
    padding: 0;
    margin: 0;
    border: #F49F1C solid 2px;
    height: 40px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.btn-outline-secondary:hover {
    background-color: #030E4F;
    transition: all 0.6s ease;
    border: 2px solid #F49F1C;
}

.finalizar-compra button a {
    text-decoration: none;
    color: #F49F1C;
    padding: 7px;
    border-radius: 5px;
    margin: 0px;
    width: 100%;
}