body#atracoes {
    background-color: #7dff35;
}

#colunas {
    width: 100%;
    
}

.coluna {
    display: flex;
    flex-wrap: wrap;
}

.artista {
    width: 33.3%;
    margin-bottom: 20px;
    max-height: 260px;
}

.artista.open {
    max-height: auto;
}

.artista .foto{
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.artista .foto div{
    width: 100%;
    height: 240px;
    position: relative;
}

.artista .foto .foto1,
.artista .foto .foto2,
.artista .foto .foto3,
.artista .foto .foto4{
    display: none;
    margin-top: -240px;
    background-size: 100%;
    background-position: center ;
    background-repeat: no-repeat;
}

.artista .foto .foto1{
    display: block;
    margin-top: 0px;
}

.artista .foto .foto2{
    background-size: 90%;
    /* background-color: yellow; */
}

.artista .foto .foto3{
    background-size: 80%;
}

.artista .foto .foto4{
    background-size: 70%;
}

.artista .nome .txt{
    font-family: 'Clarendon';
    text-align: center;
    padding: 3px 0px;
    cursor: pointer;
}

.artista .nome{
    background-image: url('../img/mais.png');
    background-repeat: no-repeat;
    background-position: 95% center;
    padding-right: 35px;
    height: 30px;
    padding-top: 2px;
}

.artista .lb{
    display: none;
    z-index: 10;
    position: absolute;
}

.artista .lb .content{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0px;
    left: 0px;
    background-color: #ffffff96;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center; 
}

.artista .lb .conteudo{
    padding: 40px;
    width: 70vw;
    max-width: 1000px;
    max-height: 70vh;
    overflow: auto;
}

.artista .lb .fechar{
    width: 70vw;
    max-width: 1000px;
    height: 30px;
    background-image: url('../img/fechar.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: 20px;
    cursor: pointer;
}

.artista .lb .conteudo .tags{
    display: table;
}

.artista .lb .conteudo .tag{
    background-color: #fff;
    float: left;
    font-size: 14px;
    padding: 5px;
    padding-bottom: 2px;
    margin-bottom: 10px;
}

.artista .lb .conteudo .tag.tag-data{
    color: #FF0009;
    margin-right: 10px;
}

.artista .lb .conteudo .tag.tag-local{
    color: #0B00F9;
}

.artista .lb .conteudo button{
    width: 100%;
    font-weight: bold;
    font-size: 26px;
    background-color: #0B00F9;
    color: #FFD42C;
    margin-top: 12px;
    padding: 8px;
    cursor: pointer;
}

.artista .lb .conteudo button.gratuito{
    width: 100%;
    font-weight: bold;
    font-size: 26px;    
    color: #0b01f9;
    margin-top: 12px;
    padding: 8px;
    cursor: pointer;

    background-color: transparent;
    border: 2px solid #0b01f9;
    cursor: default;
}

.artista.cor1 .nome,
.artista.cor1 .lb .conteudo{
    background-color: #FF0009;
}

.artista.cor2 .nome,
.artista.cor2 .lb .conteudo {
    background-color: #32B6FB;
}

.artista.cor3 .nome,
.artista.cor3 .lb .conteudo {
    background-color: #FAFAFA;
}

.artista.cor4 .nome,
.artista.cor4 .lb .conteudo {
    background-color: #FFD42C;
}


.artista.cor5 .nome,
.artista.cor5 .lb .conteudo {
    background-color: #FF0085;
}

.lb_nome{
    font-size: 30px;
    font-weight: 900;
    margin-top: 20px;
}

@media only screen and (max-width: 900px) {
    .artista{
        width: 50%;
    }
}


@media only screen and (max-width: 600px) {
    .artista{
        width: 100%;
    }
}