
/* Estilização do card */
.job-block-four {
    width: 300px;
    height: 350px;
    margin: 10px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: transparent;
    color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

@media (max-width: 575.98px) {
    .job-block-four {
        width: 95%;
    }
}

    .job-block-four:hover {
        transform: scale(1.05);
    }

/* Imagem de fundo do card */
.artist-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

    .artist-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Overlay para escurecer a imagem */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.7) 100%);
}

/* Rodapé fixado no final do card */
.artist-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 6px;
    background: rgba(0, 0, 0, 0.80);
    text-align: center;
}

/* Nome do artista - Agora com melhor contraste */
.artist-name {
    font-size: 20px;
    font-weight: bold;
    margin: 5px 0;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

    .artist-name a {
        color: white;
        text-decoration: none;
    }

/* Estilo do gênero musical */
.artist-genre {
    display: block;
    font-size: 14px;
    color: #ff4a4a;
    margin-bottom: 5px;
}

/* Estilo da localização */
.artist-location {
    font-size: 14px;
    color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Cachê do artista*/
.artist-price {
    font-size: 14px;
    font-weight: bold;
    color: #ff4a4a;
    margin-top: 10px;
}

.job-block-four .inner-box {
    position: static !important;
}

.ls-section h4 {
    color: white;
    padding: 0px;
    margin-bottom: 1px;
}

.job-other-info li.green, .job-other-info li.privacy {
    color: white;
    background-color: #2B1D46
}

.page-title {
    position: relative;
    width: 100%;
    height: 500px; /* Ajuste conforme necessário */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;    
    background-size: cover;
    z-index: 10;
    box-shadow: none !important; /* Remove qualquer sombra aplicada */
    border-bottom: none; /* Garante que não há borda inferior */
}

    .page-title::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;

        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.4) 50%), url('/assets/images/background/close-up.jpg') no-repeat center center !important;
        background-size: cover;
        z-index: -1; /* Coloca o fundo atrás do conteúdo */
    }

.form-group {
    position: relative;
    z-index: 20 !important; /* Aumenta o z-index do container do dropdown */
}

    .form-group select {
        position: relative;
        z-index: 50 !important; /* Mantém o dropdown sempre acima */
    }
