.div_publiciade{
    width: 100%;
    height: 120px;
    border-radius: 10px;
    background-color: #dfdfdf;
    display: flex;
    align-items: center;
    justify-content: center;
}

main{
    flex: 1;
    overflow: auto;
}

.texto_publicidade{
    margin: 0;
}

.titulo_card{
    color: #2980b9;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.cards{
    margin: 1rem;
    margin-bottom: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.input_busca{
    padding: 0.8rem;
    border: 1px solid #ccc;
    font-family: "Poppins", sans-serif;
    border-radius: 8px;
    flex: 1;
    outline: none;
}

.btn_detalhes{
    padding: 0.8rem;
    background-color: rgb(22, 22, 22);
    outline: none;
    color: white;
    border: none;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
}

.btn_mapa{
    padding: 0.8rem;
    background-color: rgb(62, 155, 50);
    outline: none;
    color: white;
    border: none;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
}

.div_btn_cards{
    display: flex;
    justify-content: space-between;
}



.div_ordenar{
    display: flex;
    align-items: center;
    gap: 0.3rem;
}


.div_busca{
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.titulo_portal{
    color: #741880;
    margin: 0;
    align-self: center;
    text-align: center;
    margin-bottom: 0.5rem;
}

.botao_pesquisa{
    background-color: #2980b9 !important;
    color: white;
    cursor: pointer;
}

.container_banners{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 16px; 
}

@media(max-width: 1080px){
    .container_banners {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media(max-width: 580px){
    .container_banners {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
}

.div_empresas{
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
    margin: 0.5rem 1rem;
}

.cards_anuncio_pagantes{
    margin: 1rem;
    margin-bottom: 2rem;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid #fde68a;
}

.cards_anuncio_gratis{
    margin: 1rem;
    margin-bottom: 2rem;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.fa-star{
    color: #e7b91f;
    font-size: 16px;
}

.div_nome{
    display: flex;
    gap: 1rem;
}

.div_nome_gratis{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 1rem;
}

.img_trabalhador{
    object-fit: contain;
}

.div_dois{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.titulo_resultado{
    margin: 0;
    font-size: 20px;
    font-weight: 500;
}

a{
    text-decoration: none;
    color: #2980b9;
}

.icone_resultado{
    font-size: 16px;
    color: grey;
}

.texto_estrela{
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: grey;
}

.btn_busca {
    padding: 0.8rem;
    background-color: rgb(62, 155, 50);
    outline: none;
    color: white;
    border: none;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    margin-top: 1rem;
    width: 100%;
}

.banner_index{
    border-bottom: 2px solid grey;
    padding-bottom: 0.8rem;
    margin-bottom: 0.2rem;
}