.consulta{
    display: flex;
    width: 100%;

}


.consulta .area{
    width: 50%;

}

.pesq{
    width: 100%;
}

.pesq .form{
    width: 100%;
}

.pesq .titulo{
    font-weight: 600;
    font-size: 20px;
}

.pesq .text{
    width: clamp(50px, 95%, 300px);
}

.pesq .text input, .pesq .text select{
    width: 100%;
    border: none;
    padding: 10px 5px;
    margin: 5px;
    outline: none;
    border-radius: 5px;
}

.form .text select option[disabled] {
    color: rgb(197, 195, 195); /* Altera a cor do texto para cinza quando a opção desabilitada está selecionada */
  }


.pesq .check{
    width: clamp(50px, 95%, 300px);

    display: flex;
    justify-content: space-evenly;
}

.pesq .check p{
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.area-result {
    margin-top: 20px;
    width: max-content;
}

.area-result .result {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 6px;
    width: 310px;
    margin-bottom: 10px;
}

.area-result .idcultural {
    width: 60px;
    background: #038fc6;
    border-radius: 4px 0px 0px 4px;
    padding: 4px 6px;
    color: white;
    font-size: 16px;
    font-weight: 800;
}

.area-result p {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    border-radius: 0px 4px 4px 0px;
    padding: 2px 6px;
    width: 250px;
    border-right: 2px solid #038fc6;
    border-bottom: 2px solid #038fc6;
    border-top: 2px solid #038fc6;
}

/* Hide the default checkbox */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
   }

   .container {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 20px;
    user-select: none;
   }

   /* Create a custom checkbox */
   .checkmark {
    position: relative;
    top: 0;
    margin:  0 5px;
    left: 0;
    height: 1em;
    width: 1em;
    background: #606062;
    border-radius: 7px;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.30), 0px 1px 1px rgba(0,5);
   }

   /* When the checkbox is checked, add a blue background */
   .container input:checked ~ .checkmark {
    background-image: linear-gradient(#255CD2,#1D52C1)
   }

   /* Create the checkmark/indicator (hidden when not checked) */
   .checkmark:after {
    content: "";
    position: absolute;
    display: none;
   }

   /* Show the checkmark when checked */
   .container input:checked ~ .checkmark:after {
    display: block;
   }

   /* Style the checkmark/indicator */
   .container .checkmark:after {
    left: 0.4em;
    top: 0.18em;
    width: 0.1em;
    height: 0.4em;
    border: solid white;
    border-width: 0 0.15em 0.15em 0;
    transform: rotate(45deg);
   }

   .pesq .subtmit{
    display: flex;
    justify-content: end;
    align-items: center;
    width: clamp(50px, 95%, 300px);
    margin-top: 25px;
}


   .basic-btn  {
    cursor: pointer;
    --color: #0077ff;
    font-family: inherit;
    display: inline-block;
    width: 6em;
    height: 2.6em;
    line-height: 2.5em;
    overflow: hidden;
    margin: 20px;
    font-size: 13px;
    z-index: 1;
    color: var(--color);
    border: 2px solid var(--color);
    border-radius: 6px;
    position: relative;
    margin: 0;
    padding: 0;
  }

  .basic-btn::before {
    position: absolute;
    content: "";
    background: var(--color);
    width: 150px;
    height: 200px;
    z-index: -1;
    border-radius: 50%;
  }

  .basic-btn:hover {
    color: white;
  }

  .basic-btn:before {
    top: 100%;
    left: 100%;
    transition: .3s all;
  }

  .basic-btn:hover::before {
    top: -30px;
    left: -30px;
  }




  @media (max-width: 637px) {
    /* ajuste de tamanho para dispositivos menores */
    .consulta{
       flex-direction: column;

    }

    .consulta .area{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        margin: 25px 0 ;
    }


  }







  .consulta  .feiras .imgs div{
    display: flex;
    align-items: end;
        width: 300px;
        height: 300px;
        background-size: cover;
        background-position: center center;
        margin: 0 auto;
        border-radius: 40px 10px;
        filter: drop-shadow(10px 10px 15px rgba(0, 0, 0, 0.279));
        backdrop-filter: blur(100px);
}


.consulta  .feiras .imgs div .date{
    color: white;
    width: 100%;
    height: 120px;
    background:  linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(43, 43, 43, 0.69) 69.27%, #000000 100%);
    border-radius: 0 10px 40px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.consulta  .feiras .imgs div .date .T-date{
    font-size: 20px;
    font-weight: 900;
}

.consulta  .feiras .imgs div .date .desc{
    font-size: 15px;
    font-weight: 200;
    text-align: center;
    padding: 2px 5px;
}


.consulta  .feiras .titulo{
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 800;
}

.consulta  .feiras .feiras-desc{
    width: 300px;
    margin: 25px auto;
}

.consulta  .feiras .feiras-desc .desc{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
    padding: 10px 10px;
    box-sizing: border-box;
    border-radius: 5px;
}



.newsletter{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 350px;
    padding: 0 40px;
    margin-bottom: 100px;
}

.newsletter .Title{
    text-align: center;
    font-size: 27px;
    color: #235ACE;
    font-weight: 500;
}

.newsletter i{
    text-align: center;
    font-size: 50px;
    color: #235ACE;
    font-weight: 900;
}


.newsletter .Desc{
    text-align: center;
    font-size: 15px;
    color: #383838;
    font-weight: 200;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter input{
    margin: 20px 0;
    width: clamp(100px, 100%, 500px);
    border: none;
    outline: none;
    font-size: 20px;
    padding: 10px 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.212);
    border-radius: 3px;
}


.newsletter button{
    background-color: #EA4B6F;
    font-size: 18px;
    border: none;
    color: white;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 3px;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.212);

}


.Card-Not{
    display: flex;
    justify-content: center;
    margin:  50px 0 0 0;
}


.Noticias{
    position: relative;
    width: 90%;
    height: 0;
    padding-top: 40%;
    filter: drop-shadow(5px 5px 20px rgba(0, 0, 0, 0.363));
}

.Noticias .Posts{
    width: 75%;
    height: 100%;
    position: absolute;
    top: 0;
}

.Noticias .Posts .post{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    border-radius: 12px 0 0 12px;

}

.Noticias .Posts .post .Conteudo{
    position: relative;
    width: 100%;
    height: 100%;

}

.Noticias .Posts .post .Conteudo .text{
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(0, 0, 0, 0) 0.01%, rgba(43, 43, 43, 0.69) 55.27%, #000000 100%);
    padding: 50px 20px 20px 20px;
    border-radius: 12px 0 0 12px;
    width: 100%;

}

.Noticias .Posts .post .Conteudo .text .title{
    color: white;
    font-size: 25px;
    font-weight: 900;
    margin-left: 10px;
}

.Noticias .Posts .post .Conteudo .text .desc{
    color: white;
    font-size: 15px;
    font-weight: 400;
    padding: 10px;

}
.Noticias .Controls{
    width: 25%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgb(53, 53, 53);
    display: flex;
    flex-direction: column;
    border-radius: 0 12px 12px 0;
}

.Noticias .Controls .postSe{
    width: 90%;
    margin: 5px auto;
    height: 24%;
    background-position: center center;
    background-size: cover;
    border-radius: 5px;
    transition: all 0.5s;
    cursor: pointer;
}

.Noticias .Controls .postSe:hover{
    transform: scale(1.05);
}

.postselected{
    transform: scale(1.05);
}

.Noticias .Controls .dir:hover{
    background-color: #00000093;
    cursor: pointer;
}

.dias-fixo-noticias{
    display: flex;
    margin-left: 7px;
}

.dias-eventual-noticias{
    display: flex;
    margin-left: 7px;
    color: #fff;
    padding-bottom: 7px;
    font-weight: 900;
    font-size: 12px;
    margin-left: 12px;
}


.Card-Editais{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin:  auto 50px;
    row-gap: 20px;
    padding: 20px;
}

.Card-Editais .editais {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
}

.Card-Editais .editais .edital {
    width: calc((100% / 3) - 60px );
    border-radius: 8px;
    background: white;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    padding: 20px;
    row-gap: 8px;
}

.Card-Editais .editais .edital h2 {
    font-weight: 600;
    font-size: 20px;
    color: #288be4;
    cursor: pointer;
}

.Card-Editais .editais .edital h2:hover {
    color: #186ab1;
}

.Card-Editais .editais .edital p {
    font-weight: 400;
    color: #606062;
}

.btn-post{
    padding: 5px 7px;
    border-radius: 2px;
    border: none;
    font-weight: 500;
    background-color: #EA4B6F;
    color: #fff;
    cursor: pointer;
}

@media(max-width: 606px){
    .dias-eventual-noticias{
        display: none   ;
    }
    .dias-fixo-noticias{
        display: none;
    }
    .fixoTtile{
        display: none;
    }
}

.dias-fixo-noticias .contDias{
    border: 1px solid #fff;
    color: #fff;
    font-size: 8px;
    padding: 5px 3px;
    margin: 0 3px 5px 3px;
    border-radius: 5px;
    font-weight: 900;
}

.fixoTtile{
    color: #fff;
    font-size: 10px;
    margin-bottom: 5px;
    margin-left: 10px;
    font-weight: 900;

}

@media (max-width: 1037px) {
    /* ajuste de tamanho para dispositivos menores */

    .Noticias .Posts .post .Conteudo .text .title{
        font-size: 20px;
    }


    .Noticias .Posts .post .Conteudo .text .desc{
        font-size: 12px;
    }

  }





@media (max-width: 636px) {
    .Noticias .Posts .post .Conteudo .text .title{
        font-size: 17px;
    }


    .Noticias .Posts .post .Conteudo .text .desc{
        font-size: 10px;
    }

}


@media (max-width: 535px) {
    .Noticias .Posts .post .Conteudo .text .title{
        font-size: 14px;
    }


    .Noticias .Posts .post .Conteudo .text .desc{
        font-size: 7px;
    }

}

@media (max-width: 450px) {
    .Noticias .Posts .post .Conteudo .text .title{
        font-size: 14px;
    }


    .Noticias .Posts .post .Conteudo .text .desc{
        font-size: 10px;
    }


    .Noticias{
        padding-top: 50%;

    }

    .Noticias{
        overflow: hidden;
    }

}

