/* Banner busca */
.banner_busca {
    position: relative;
    background-image: url('/assets/images/img-bg2.jpg'); 
    background-size: cover;
    background-position: center;
    height: auto;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner_busca__textos  {
    margin-bottom: 25px;
}

.banner_busca__textos h1 {
    font-size: clamp(18px, 18px + 1.2vw, 26px);
    line-height: clamp(20px, 20px + 1.2vw, 28px);
    font-weight: 700;
    color: #FFF;
}

.banner_busca__form p {
    font-size: 12px;
    color: #000;
    margin: 0;
    /* font-style: italic; */
}

.banner_busca__form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.banner_busca__input {
    flex: 1;
    padding: clamp(15px, 15px + 1.2vw, 15px);
    border: 1px solid #dddddd;
    border-radius: 10px;
    font-size: 16px;
    min-width: 100%;
}

.banner_busca__button {
    border-radius: 10px;
    outline: initial;
    font-size: 16px;
    font-weight: 500;
    padding: clamp(15px, 15px + 1.2vw, 15px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .5s;
    color: #FFFFFF;  
    background-color: #000000;
    min-width: 100%;
    cursor: pointer;
    border: none;
    .fa-arrow-right {
        transform: rotate(-45deg);
        transition: inherit;
    }
}

.banner_busca__button:hover {
    background-color: #000000;
    .fa-arrow-right {
        transform: rotate(0deg);
    }
}


/* Categoria (listagem) */
.categorias {
    padding: 50px 0;
    background-color: #FFF;
}

.categorias .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}

.categorias a {
    border: 1px solid #e5e7eb;
    background: #FFF;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 16px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    display: block;
    line-height: normal;
    transition: 0.3s ease;
}

.categorias a:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .categorias .grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}


/* Busca de A-Z */
.categorias .letras {
    margin: 30px 0;
}

.categorias .letras {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.categorias .letras button {
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #dddddd;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.categorias .letras button:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.categorias .letras button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

.categorias .letras button.active {
    background-color: #111;
    color: #fff;
    border-color: #111;
}


/* Empresa (listagem) */
.grid_empresas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

@media (min-width: 1024px) {
    .grid_empresas {
        grid-template-columns: repeat(2, minmax(320px, 1fr));
        justify-content: center;
    }

    .grid_empresas:has(.card_empresas:nth-child(3)) {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .grid_empresas {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .grid_empresas {
        grid-template-columns: 1fr;
    }
}

.card_empresas {
    background: #FFF;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: 0.3s ease;
    width: 100%;
}

.card_empresas .logo {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.card_empresas .logonot {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    display: block;
    background-color: #DCDCDC;
    border: 1px solid #EEE;
    box-shadow: 0 4px 6px rgba(197, 196, 196, 0.15);
    padding: 3px;
    overflow: hidden;
}

.card_empresas:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.card_empresas .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card_empresas .info h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    font-weight: 600;
}

.card_empresas .info p {
    margin: 0;
    font-size: 0.9rem;
    color: #999;
    line-height: 1.4;
}

.card_empresas .info .btn {
    margin-top: 10px;
    color: #5f00cb;
    padding: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    align-self: flex-start;
}

.card_empresas .info .btn .fa-arrow-right {
    transform: rotate(-45deg);
}


/* Empresa (perfil) */
.dados_empresa {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dados_empresa .logo {
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
}

.dados_empresa .logonot {
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
    border-radius: 50%;
    display: block;
    background-color: #DCDCDC;
    border: 1px solid #EEE;
    box-shadow: 0 4px 6px rgba(197, 196, 196, 0.15);
    padding: 3px;
    overflow: hidden;
}

.dados_empresa h4 {
    font-weight: 700;
    font-size: 16px;
    i {
        margin-right: 5px;
    }
}

.dados_empresa li {
    margin-bottom: 6px;
}

.dados_empresa a {
    color: #5b2bd6;
    font-weight: 500;
    text-decoration: none;
}

.dados_empresa a:hover {
    text-decoration: underline;
}

.dados_empresa .divisor {
    margin-bottom: 28px;
}


/* Promover empresa */
.promover-empresa {
    background-color: #FFF; 
    padding: 60px 20px;
}

.promover-empresa .conteudo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.promover-empresa .texto {
    flex: 1;
    
}

.promover-empresa .texto h1 {
    max-width: 500px;
}

.promover-empresa .texto p {
    max-width: 500px;
}

.promover-empresa .btn_style01 {
    max-width: 300px;
}

.promover-empresa .imagem img {
    max-width: 380px;
    width: 100%;
    height: auto;
}


/* Sobre */
#sobre {
    width: 100%;
    height: auto;
    padding: 100px 0;
    position: relative;
    z-index: 9;
    background: url("/assets/images/bgHomeSobre.png") #f0edea center no-repeat;
    background-size: cover;
}

#sobre .text {
    width: 55%;
    color: #FFFFFF;
}

#sobre .text .p_default {
    color: #FFFFFF;
}

#sobre .link {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    gap: 10px;
    transition: .5s;
    .fa-arrow-right {
        transform: rotate(-45deg);
        transition: inherit;
    }
}

#sobre .link:hover {
    .fa-arrow-right {
        transform: rotate(0deg);
    }
}

@media screen and (max-width: 900px)
{

    #sobre {
        padding: 50px 0;
    }

    #sobre .flex {
        flex-wrap: wrap;
    }

    #sobre .text {
        width: 100%;
    }

}


/* Publicidade */
.publicidade-banner {
    background-color: #f0edea;
    padding: 20px;
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    font-size: 11px;
}