/* Basic button styling */
/*
.pulsingButton {
    text-align: center;
    white-space: nowrap;
    display: block;
    padding: .8rem;
    box-shadow: 0 0 0 0 rgba(0, 214, 180, 0.64);
    border-radius: 10px;
    background-color: #00D6B4;
    -webkit-animation: pulsing 2s infinite cubic-bezier(0.24, 0, 0, 1);
    -moz-animation: pulsing 2s infinite cubic-bezier(0.24, 0, 0, 1);
    -ms-animation: pulsing 2s infinite cubic-bezier(0.24, 0, 0, 1);
    animation: pulsing 2s infinite cubic-bezier(0.24, 0, 0, 1);
    font-size: .848rem;
    font-weight: 600;
    text-decoration: none !important;
    color: #101010;
    width: 100%;
    transition: all .24s ease-in-out;
}
*/

/* Comment-out to have the button continue to pulse on mouseover */

/* a.pulsingButton:hover {
    /*
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    animation: none;
    */
    /*background-color: #00977e;
}*/


/* Animation */
/*
@-webkit-keyframes pulsing {
    to {
        box-shadow: 0 0 .8rem .48rem rgba(232, 76, 61, 0);
    }
}

@-moz-keyframes pulsing {
    to {
        box-shadow: 0 0 .8rem .48rem rgba(232, 76, 61, 0);
    }
}

@-ms-keyframes pulsing {
    to {
        box-shadow: 0 0 .8rem .48rem rgba(232, 76, 61, 0);
    }
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 .8rem .48rem rgba(232, 76, 61, 0);
    }
}
*/

body{
    font-family: 'Plus Jakarta Sans';
}

a, a:hover, a:active, a:focus{
    text-decoration: none !important;
}

.box{
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 576px){
    .box{
        width: 96%;
    }
}

@media (min-width: 768px){
    .box{
        width: 88%;
    }
}

@media (min-width: 992px){
    .box{
        width: 80%;
    }
}

@media (min-width: 1200px){
    .box{
        width: 72%;
    }
}

@media (min-width: 1440px){
    .box{
        width: 64%;
    }
}





#cta{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


#cta p{
    color: #fff;
    font-size: 2.88rem;
    line-height: 4rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

#cta a{
    text-transform: uppercase;
    color: #111827;
    background-color: #FBBC04;
    border-radius: .48rem;
    display: inline-block;
    text-align: center;
    padding: .64rem 3.2rem;
    font-weight: 600;
    font-size: 1.12rem;
    transition: background .24s ease-in-out;
}

#cta a:hover{
    background-color: #f97015;
}

.article-produto{
    border: 1px solid #0A487C;
    border-radius: 8px;
    overflow: hidden;
    padding-bottom: .96rem;
    height: 100%;
}

.article-produto > a:first-of-type{
    padding: .96rem;
    display: block;
}

.article-produto h3{
    color: #0A487C;
    font-weight: 700;
    font-size: 1.28rem;
    margin: .96rem;
    text-align: center;
}

.article-produto .especificacoes{
    color: #8E8E93;
    font-weight: 700;
    font-size: .88rem;
    margin: .96rem;
    text-align: center;
}

.article-produto .row{
    padding: 0 .96rem;
}

.article-produto .adicionar-orcamento,
.row-actions .adicionar-orcamento,
.aside-produtos-filtros button[type="submit"]{
    background-color: #FBBC04;
    border-radius: 8px;
    padding: .48rem;
    color: #111827;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    border: 0 none;
    display: block;
    width: 100%;
    text-align: center;
    transition: all .24s ease;
}

.article-produto .adicionar-orcamento:hover,
.row-actions .adicionar-orcamento:hover{
    background-color: #F97015;
    cursor: pointer;
}


.aside-produtos-filtros button[type="submit"]{
    margin: 1.2rem;
    width: calc(100% - 2.4rem);
    transition: all .24s ease;
}

.aside-produtos-filtros button[type="submit"]:hover{
    color: #FFFFFF;
    background-color: #33CC66;
}



.row-actions > div:nth-of-type(2) a,
.article-produto .row > div:nth-of-type(2) a{
    background-color: #33CC66;
    border-radius: 8px;
    padding: .24rem;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    margin-bottom: .4rem;
    border: 0 none;
    display: block;
    width: 100%;
    text-align: center;
    transition: all .24s ease;
}

.row-actions > div:nth-of-type(2) a:hover,
.article-produto .row > div:nth-of-type(2) a:hover{
    background-color: #F97015;
    cursor: pointer;
    color: #111827;
}


.row-actions > div:last-of-type a,
.article-produto .row > div:last-of-type a{
    background-color: #007BFF;
    border-radius: 8px;
    padding: .24rem;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    margin-bottom: .4rem;
    border: 0 none;
    display: block;
    width: 100%;
    text-align: center;
    transition: all .24s ease;
}

.row-actions > div:last-of-type a:hover,
.article-produto .row > div:last-of-type a:hover{
    background-color: #F97015;
    cursor: pointer;
    color: #111827;
}


.navegacao-produtos a{
    color: #627384;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    transition: color .24s ease;
}

.navegacao-produtos a:hover{
    color: #33CC66;
}

.navegacao-produtos span{
    color: #1F262E;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}


#titulo-pagina-categoria{
    font-weight: 700;
    color: #111827;
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 0;
}


#descricao-pagina-categoria h1{
    font-weight: 600;
    color: #0F0F0F;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: .64rem;
}


@media (min-width: 992px){
    #descricao-pagina-categoria h1{
        font-size: 32px;
        line-height: 40px;
    }   
}

#descricao-pagina-categoria p{
    color: #627384;
    font-size: 12px;
    line-height: 20px;
    margin-bottom: .64rem;
}


@media (min-width: 992px){
    #descricao-pagina-categoria p{
        font-size: 16px;
        line-height: 24px;
    }   
}


.aside-produtos-filtros{
    border: 1px solid #F0F0F0;
    border-radius: 5px;
}

.aside-produtos-filtros h3{
    color: #191919;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    border-bottom: 1px solid #F0F0F0;
    margin-bottom: 0;
    display: block;
    padding: 1.2rem;
}

.aside-produtos-filtros h4{
    color: #191919;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
    display: block;
    padding: 1.2rem;
}

.aside-produtos-filtros ul{
    padding: 0 1.2rem 1.2rem 1.2rem !important;
    border-bottom: 1px solid #F0F0F0;
}

.aside-produtos-filtros ul li{
    margin-bottom: .64rem;
}

.aside-produtos-filtros ul label{
    color: #111827;
    font-size: 14px;
    line-height: 20px;
}

.aside-produtos-filtros ul label:hover{
    cursor: pointer;
}



/* Hide the default checkbox */
.aside-produtos-filtros .hidden-checkbox {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

/* Style the custom checkmark */
.aside-produtos-filtros .checkmark {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #8E8E93;
  border-radius: 4px; /* Optional: for rounded corners */
  vertical-align: middle;
  margin-right: 8px;
}

/* Style the custom checkmark when the checkbox is checked */
.aside-produtos-filtros .hidden-checkbox:checked + .checkmark {
  background-color: #33CC66; /* Example: blue background */
  border-color: #111827;
}

/* Add a custom checkmark icon (optional) */
.aside-produtos-filtros .hidden-checkbox:checked + .checkmark::after {
  content: '\2713'; /* Unicode checkmark character */
  color: 111827;
  font-size: 14px;
  text-align: center;
  line-height: 20px; /* Vertically center the checkmark */
  display: block;
}

/* Style for hover/focus states (optional) */
.aside-produtos-filtros .custom-checkbox-container:hover .checkmark {
  border-color: #111827;
}