:root {
    --primary-blue: #185B9F;
    --secundary-blue: #1B6FAD;
    --tertiary-blue: #BEDFF2;
    --orange: #FF2D01;
    --dark-gray: #1C1C1E;
    --white: #ffffff;
    --banner-background: rgba(206, 230, 255, 0.20);
}

.sec-banner-produtos {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 200px;
}

.banner-produtos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    width: 100%;
    height: 400px;
    background-image: url(../imgs/Fundo_Banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 50px;
    z-index: 1;
}

.banner-produtos .left-side-banner-prod {
    max-width: 500px;
}

.banner-produtos .left-side-banner-prod h1 {
    color: var(--white);
    font-size: 60px;
    font-weight: bolder;
    padding-bottom: 20px;
    text-transform: uppercase;
}

.banner-produtos .left-side-banner-prod p {
    color: var(--white);
    font-size: 18px;
}

.banner-produtos .left-side-banner-prod p span {
    font-weight: bolder;
}

.right-side-banner-prod img {
    position: relative;
    bottom: -2px;
}

.produtos-geral {
    padding: 40px 200px;
    display: flex;
    justify-content: space-between;
}

/* LADO ESQUERDO - BUSCA E CATEGORIA */

.search-container {
    position: relative;
    display: inline-block;
}

#input-search {
    width: 300px;
    height: 50px;
    border-radius: 10px;
    border: 2px solid var(--dark-gray);
    background-color: rgba(24, 91, 159, 0.2);
    padding-left: 60px;
    /* Espaço para o ícone */
}

#input-search::placeholder {
    color: var(--dark-gray);
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--dark-gray);
}

.left-side-geral .title-left-side p {
    padding: 40px 0;
    font-size: 20px;
    font-weight: bold;
}

.section-categorias-geral .categoria {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.section-categorias-geral .categoria p {
    padding-left: 15px;
    color: var(--dark-gray);
}

.section-categorias-geral .categoria .forma {
    background-color: rgba(24, 91, 159, 0.4);
    height: 18px;
    width: 18px;
    border-radius: 50%;
}

.no-results {
    font-size: 16px;
    color: var(--orange);
    padding: 10px 0;
    text-align: center;
}

.categoria p:hover{
    color: var(--primary-blue);
    font-weight: bold;
    transition: .9s;
}
/* LADO DIREITO- PRODUTOS */
.cards-produtos-geral {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.card-prod-ger {
    width: 300px;
    height: 450px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.card-prod-ger .img-produto-geral {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.card-prod-ger .img-produto-geral img {
    width: 88%;
    cursor: pointer;
}

.card-prod-ger .img-produto-geral img:hover {
    transform: scale(1.1);
    transition: .9s;
}

.card-prod-ger .cod-prod-geral {
    color: var(--primary-blue);
    font-size: 12px;
    padding: 10px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.card-prod-ger .cod-prod-geral span {
    color: var(--dark-gray);
}

.card-prod-ger .name-prod-geral {
    height: 40px;
    font-size: 14px;
    padding: 10px 0px;
    color: var(--dark-gray);
    font-weight: bolder;
}

.descript-prod-geral {
    font-size: 14px;
    padding-bottom: 40px;
    color: var(--dark-gray);
}

.descript-prod-geral span{
    font-weight: bold;
}

.card-prod-ger .btn-see-prod-geral {
    background-color: var(--primary-blue);
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.card-prod-ger .btn-see-prod-geral div {
    color: var(--white);
    font-size: 14px;
}

.btn-see-prod-geral div i {
    color: #fff;
    font-size: 14px;
    margin-left: 90px;
    transition: transform 0.9s ease;
    transform: rotate(-45deg);
}

.btn-see-prod-geral:hover {
    background-color: var(--secundary-blue);
    transition: .9s;
}

.btn-see-prod-geral:hover i {
    transform: rotate(0deg);
}


.card-prod-ger.oculto {
    display: none;
}

.btn-load-more {
    text-align: center;
    margin: 20px 0px;
}

.btn-load-more button {
    text-align: center;
    font-size: 14px;
    color: var(--dark-gray);
    width: 300px;
    height: 50px;
    border-radius: 10px;
    border: 2px solid var(--dark-gray);
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    background-color: var(--white);
}

.btn-load-more button:hover {
    border: 2px solid var(--secundary-blue);
    background-color: var(--primary-blue);
    color: var(--white);
    transition: .9s;
}

/* BANNER FINAL */

.banner-produtos .left-side-banner-prod-2 {
    padding: 0px 400px 0px 0px;
}

.banner-produtos .left-side-banner-prod-2 h1 {
    color: var(--white);
    font-size: 50px;
    font-weight: bolder;
    padding-bottom: 20px;
}

.banner-produtos .left-side-banner-prod-2 p {
    color: var(--white);
    font-size: 18px;
    padding-bottom: 20px;
}

.banner-produtos .left-side-banner-prod-2 p span {
    font-weight: bolder;
}

.button-banner-2 button {
    background-color: transparent;
    border: 2px solid var(--white);
    width: 300px;
    height: 50px;
    color: var(--white);
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
}

.button-banner-2 button:hover{
    background-color: var(--white);
    color: var(--primary-blue);
    transition: .5s;
}

/* MEDIAS - RESPONSIVIDADE */

/* TELAS MENORES - MÁXIMO 359px */
@media screen and (max-width: 360px) {

    .left-side-geral .title-left-side p, .section-categorias-geral .categoria{
        display: none;
    }
    
    .search-container{
        width:300px;
        margin-bottom: 40px;
    }
    
    .sec-banner-produtos{
        padding: 20px 15px;
    }

    .banner-produtos{
        padding: 35px;
        height: 300px;
    }

    .banner-produtos .left-side-banner-prod{
        padding: 0px;
    }

    .banner-produtos .left-side-banner-prod h1{
        font-size: 30px;
    }

    .banner-produtos .left-side-banner-prod p{
        font-size: 12px;
    }

    .right-side-banner-prod {
        display: none;
    }

    .produtos-geral{
        padding: 20px 15px;
        flex-direction: column;
        align-items: center;
    }

    .cards-produtos-geral{
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .banner-produtos .left-side-banner-prod-2{
        padding: 0px;
    }

    .banner-produtos .left-side-banner-prod-2 h1{
        font-size: 25px;
    }

    .banner-produtos .left-side-banner-prod-2 p{
        font-size: 14px;
    }

    .right-side-banner-prod-2 img{
        display: none;
    }

    #banner-2{
        padding: 0px;
        text-align: center;
    }
}


/* TELAS MENORES - MÍNIMO 360px e MÁXIMO 479px */
@media screen and (min-width: 360px) and (max-width: 480px){
    .left-side-geral .title-left-side p, .section-categorias-geral .categoria{
        display: none;
    }
    
    .search-container{
        width:300px;
        margin-bottom: 40px;
    }

    .sec-banner-produtos{
        padding: 40px 25px;
    }

    .banner-produtos{
        padding: 35px;
        height: 350px;
    }

    .banner-produtos .left-side-banner-prod{
        width: 100%;
        padding: 0;
    }

    .banner-produtos .left-side-banner-prod h1{
        font-size: 32px;
        padding-bottom: 10px;
    }

    .banner-produtos .left-side-banner-prod p{
        font-size: 12px;
        text-align: justify;
    }

    .right-side-banner-prod img {
        display: none;
    }

    .produtos-geral{
        padding: 20px 25px;
        flex-direction: column;
        align-items: center;
    }

    .cards-produtos-geral{
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .banner-produtos .left-side-banner-prod-2{
        padding: 0px;
    }

    .banner-produtos .left-side-banner-prod-2 h1{
        font-size: 25px;
    }

    .banner-produtos .left-side-banner-prod-2 p{
        font-size: 14px;
    }

    .right-side-banner-prod-2 img{
        display: none;
    }

    #banner-2{
        padding: 0px;
        text-align: center;
    }
}

/* TELAS MÉDIAS - MÍNIMO 480px e MÁXIMO 759px */
@media screen and (min-width:480px) and (max-width: 760px){
    .left-side-geral .title-left-side p, .section-categorias-geral .categoria{
        display: none;
    }
    
    .sec-banner-produtos{
        padding: 40px 50px;
    }

    .search-container{
        margin-bottom: 40px;
        text-align: center;
        width: 100%;
    }

    .banner-produtos{
        padding: 35px;
        height: 300px;
    }

    .banner-produtos .left-side-banner-prod{
        padding: 0px;
    }

    .banner-produtos .left-side-banner-prod h1{
        font-size: 40px;
    }

    .banner-produtos .left-side-banner-prod p{
        font-size: 14px;
    }

    .right-side-banner-prod img {
        display: none;
    }

    .produtos-geral{
        padding: 20px 50px;
        flex-direction: column;
        align-items: center;
    }

    .cards-produtos-geral{
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .banner-produtos .left-side-banner-prod-2{
        padding: 0px;
    }

    .banner-produtos .left-side-banner-prod-2 h1{
        font-size: 25px;
    }

    .banner-produtos .left-side-banner-prod-2 p{
        font-size: 14px;
    }

    .right-side-banner-prod-2 img{
        display: none;
    }

    #banner-2{
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* TELAS MÉDIAS - MÍNIMO 760px e MÁXIMO 1023px */
@media screen and (min-width: 760px) and (max-width: 1024px){
    .left-side-geral .title-left-side p, .section-categorias-geral .categoria{
        display: none;
    }
    
    .sec-banner-produtos{
        padding: 40px 50px;
    }

    .search-container{
        margin-bottom: 40px;
        text-align: center;
        width: 100%;
    }

    #input-search{
        width: 620px;
    }

    .banner-produtos{
        padding: 35px;
        height: 300px;
    }

    .banner-produtos .left-side-banner-prod{
        padding: 0px;
    }

    .banner-produtos .left-side-banner-prod h1{
        font-size: 40px;
    }

    .banner-produtos .left-side-banner-prod p{
        font-size: 14px;
    }

    .right-side-banner-prod img {
        display: none;
    }

    .produtos-geral{
        padding: 20px 50px;
        flex-direction: column;
        align-items: center;
    }

    .cards-produtos-geral{
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .banner-produtos .left-side-banner-prod-2{
        padding: 30px;
    }

    .banner-produtos .left-side-banner-prod-2 h1{
        font-size: 35px;
    }

    .banner-produtos .left-side-banner-prod-2 p{
        font-size: 16px;
    }

    .right-side-banner-prod-2 img{
        display: none;
    }

    .button-banner-2{
        display: flex;
        align-items: center;
        justify-content: center;
    }

}


/* TELAS MAIORES - MINÍMO 1024px e MÁXIMO 1249px */
@media screen and (min-width: 1024px) and (max-width: 1250px){
    .sec-banner-produtos{
        padding: 40px 50px;
    } 

    .banner-produtos{
        padding: 35px;
        height: 300px;
    }

    .banner-produtos .left-side-banner-prod{
        padding: 0px;
    }

    .banner-produtos .left-side-banner-prod h1{
        font-size: 40px;
    }

    .banner-produtos .left-side-banner-prod p{
        font-size: 14px;
    }

    .right-side-banner-prod img {
       height: 300px;
    }

    .produtos-geral{
        padding: 20px 50px;
    }

    .cards-produtos-geral{
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .banner-produtos .left-side-banner-prod-2{
        padding: 30px;
    }

    .banner-produtos .left-side-banner-prod-2 h1{
        font-size: 35px;
    }

    .banner-produtos .left-side-banner-prod-2 p{
        font-size: 16px;
    }

    .right-side-banner-prod-2 img{
        height: 300px;
    }
}

/* TELAS MAIORES - MINÍMO 1250px e MÁXIMO 1394px */
@media screen and (min-width: 1250px) and (max-width: 1395px){
    .sec-banner-produtos{
        padding: 40px 50px;
    } 

    .banner-produtos{
        padding: 35px;
        height: 300px;
    }

    .banner-produtos .left-side-banner-prod{
        padding: 0px;
    }

    .banner-produtos .left-side-banner-prod h1{
        font-size: 40px;
    }

    .banner-produtos .left-side-banner-prod p{
        font-size: 14px;
    }

    .right-side-banner-prod img {
       height: 300px;
    }

    .produtos-geral{
        padding: 20px 50px;
    }

    .cards-produtos-geral{
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .banner-produtos .left-side-banner-prod-2{
        padding: 30px;
    }

    .banner-produtos .left-side-banner-prod-2 h1{
        font-size: 30px;
    }

    .banner-produtos .left-side-banner-prod-2 p{
        font-size: 16px;
    }

    .right-side-banner-prod-2 img{
        height: 300px;
    }
}

/* TELAS MAIORES - MINÍMO 1250px e MÁXIMO 1394px */
@media screen and (min-width: 1395px) and (max-width: 1500px){
    .sec-banner-produtos{
        padding: 40px 50px;
    } 

    .produtos-geral{
        padding: 20px 50px;
    }

    .cards-produtos-geral{
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .banner-produtos .left-side-banner-prod-2{
        padding: 30px;
    }

    .banner-produtos .left-side-banner-prod-2 h1{
        font-size: 30px;
    }

    .banner-produtos .left-side-banner-prod-2 p{
        font-size: 16px;
    }

    .right-side-banner-prod-2 img{
        height: 300px;
    }
}

@media screen and (min-width: 1501px) and (max-width: 1686px){
    .cards-produtos-geral{
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}
/* @MEDIAS - RESPONSIVIDADE */

#active-category{
    color: var(--primary-blue);
}