#banner-page {
    position: relative;
    padding: 80px 0;
    background: #003047;
    z-index: 0;
    overflow: hidden;
}
#banner-page img.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    -o-object-fit: cover;
    object-fit: cover;
    pointer-events: none;
    
    filter: grayscale(1);
    opacity: .2;
    
    z-index: -1;
}
#banner-page .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#banner-page .text {
    max-width: 600px;
}
#banner-page .text h1 {
    color: #fff;
    font-size: 78.4px;
    font-weight: 600;
    letter-spacing: 0%;
    text-align: left;
    text-transform: capitalize;
    margin: 0;
}
#banner-page .text p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: left;
}
#banner-page .content .icon {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 140px;
    height: 140px;

    padding: 10px;
    border: 2px solid rgba(0, 149, 218, 1);
    border-radius: 100px;

    margin-left: auto;
    margin: 0 0 40px auto;
}
#banner-page .content .icon img {
    width: 100%;
    height: 100%;
    filter: brightness(10);
    opacity: .8;
    transform: rotate(90deg);
}
#banner-page .content .botao {
    position: relative;

    display: flex;
    align-items: center;
    gap: 20px;

    padding: 15px 0;
    width: fit-content;
    border-radius: 10px;

    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0%;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;

    transform: translateX(-100px);

    -webkit-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#banner-page .content .botao:hover {
    background: #3C9CCB;
    padding: 15px 30px;
    color: #fff;
    transform: translateX(0);
}
#banner-page .content .botao svg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    padding-left: 20px;

    display: block;
    fill: #fff;
    width: 100px;
    height: 100%;

    margin: auto;

    pointer-events: none;

    -webkit-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#banner-page .content .botao:hover svg {
    opacity: 0;    
}




/* Categorias */
#categorias {
    background: #F4F4F4;
    padding: 40px 0;
}
#categorias .lista-categorias {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    
    margin: 0;
    padding: 0;
    list-style: none;
}
#categorias .lista-categorias .item-categoria a {
    display: block;
    width: fit-content;
    cursor: pointer;
    
    padding: 10px 30px;
    border: 1px solid #0095da;
    border-radius: 50px;
    
    color: #0095da;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: left;
    text-decoration: none;
    white-space: nowrap;

    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
#categorias .lista-categorias .item-categoria a[aria-current="page"],
#categorias .lista-categorias .item-categoria:hover a{
    background: #0098da;
    color: #fff;
}




/* Produtos */
#produtos  {
    background: #F4F4F4;
    padding: 0 0 70px 0;
}
#produtos .container {
    display: flex;
    gap: 70px;
}
/* #produtos .container aside legend {
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -1.5%;
    text-align: left;
    margin: 0 0 10px 0;
}
#produtos .container aside ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
#produtos .container aside li {
    display: flex;
    align-items: center;
    gap: 15px;    
}
#produtos .container aside li:not(:last-child) {
    margin-bottom: 10px;
}
#produtos .container aside input {
    cursor: pointer;

    width: 16px;
    height: 16px;
    
    background: none;
    
    border: 1px solid rgba(212, 212, 216, 1);
    border-radius: 4px;
    
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;

    border-color: #D4D4D8;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
#produtos .container aside input:checked {
    border: 4px solid #0098da;
}
#produtos .container aside input:focus {
    box-shadow: none;
    border-color: #0098da;
}
#produtos .container aside input:not(:checked):hover {
    border-color: #505050;
}
#produtos .container aside label {
    color: #807979;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -2%;
    text-align: left;
    white-space: nowrap;
    cursor: pointer;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
#produtos .container aside input:not(:checked):hover + label,
#produtos .container aside input:not(:checked) + label:hover {
    color: #505050;
}
#produtos .container aside input:checked + label {
    color: #0098da;
} */

#produtos .container aside legend {
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -1.5%;
    text-align: left;
    margin: 0 0 10px 0;
}

#produtos .container aside ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#produtos .container aside li:not(:last-child) {
    margin-bottom: 10px;
}

#produtos .container aside .filtro-link {
    color: #807979;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -2%;
    text-align: left;
    white-space: nowrap;
    cursor: pointer;
    
    display: flex;
    align-items: center;
    gap: 15px;

    text-decoration: none;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

#produtos .container aside .filtro-link::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: none;
    border: 1px solid rgba(212, 212, 216, 1);
    border-radius: 4px;
    border-color: #D4D4D8;
    box-sizing: border-box; 

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

#produtos .container aside .filtro-link:not(.filtro-ativo):hover {
    color: #505050;
}

#produtos .container aside .filtro-link:not(.filtro-ativo):hover::before {
    border-color: #505050;
}

#produtos .container aside .filtro-link.filtro-ativo {
    color: #0098da;
}

#produtos .container aside .filtro-link.filtro-ativo::before {
    border: 4px solid #0098da;
}

#produtos .container aside .filtro-link:focus {
    outline: none; 
}

#produtos .container aside .filtro-link:focus::before {
    border-color: #0098da;
}




#produtos ul.lista-produtos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 50px;
    width: 100%;
    
    margin: 0;
    padding: 0;
    list-style: none;
}
#produtos li.item-produto {
    /* width: 100%; */
    width: calc(33.33333% - 20px);
    min-width: calc(33.33333% - 20px);
}
#produtos .card-produto {
    position: relative;
    display: block;
    text-decoration: none;
}
#produtos .card-produto::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -20px;
    width: 1px;
    height: 100%;
    
    background-color: #000;
}
#produtos .card-produto::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -21px;
    width: 3px;
    height: 15px;
    background: #0095da;
}
#produtos .card-produto .image {
    position: relative;
    display: block;
    width: 100%;

    border-radius: 10px;
    margin: 0 0 30px 0;

    overflow: hidden;
}
#produtos .card-produto .image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 62.31454005934718%;
}
#produtos .card-produto .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    -o-object-fit: cover;
    object-fit: cover;
}

#produtos .card-produto h2 {
    color: #212222;
    font-size: 30px;
    font-weight: 600;
    line-height: 38.4px;
    letter-spacing: 0%;
    text-align: left;
    margin: 0 0 30px 0;
}
#produtos .card-produto p {
    color: #212222;
    font-size: 16px;
    font-weight: 400;
    line-height: 18.61px;
    letter-spacing: 0%;
    text-align: left;
    margin: 0 0 60px 0;
}
#produtos .card-produto .botao {
    position: relative;

    display: flex;
    align-items: center;
    gap: 20px;

    padding: 15px 0;
    width: fit-content;
    border-radius: 10px;

    color: #3C9CCB;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0%;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;

    -webkit-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#produtos .card-produto:hover .botao {
    background: #3C9CCB;
    padding: 15px 30px;
    color: #fff;
}
#produtos .card-produto .botao svg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    padding-left: 20px;

    display: block;
    fill: #3C9CCB;
    width: 100px;
    height: 100%;

    margin: auto;

    pointer-events: none;

    -webkit-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#produtos .card-produto:hover .botao svg {
    opacity: 0;    
}




/* Responsivo Mobile */
@media (max-width: 992px) {
    #banner-page {
        padding: 80px 0 40px 0;
    }
    #banner-page .container {
        flex-direction: column;
        margin-top: 15px;
    }
    #banner-page .text h1 {
        font-size: 32px;
    }
    #banner-page .content .icon {
        position: absolute;
        top: 15px;
        left: 15px;
        width: 75px;
        height: 75px;
    }




    /* Categorias */
    #categorias .lista-categorias {
        overflow: auto;
    }
    #categorias .lista-categorias .item-categoria a {
        display: block;
        white-space: nowrap;
    }





    /* Produtos */
    #produtos .container {
        flex-direction: column;
        gap: 30px;
    }
    #produtos li.item-produto {
        width: 100%;
        min-width: 100%;
    }
    #produtos .card-produto h2 {
        font-size: 24px;
        margin: 0 0 10px 0;
    }
}