/* Section - Eventos */

#conciertos{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-image: url(../img/background/bg-evento.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 10rem 0rem 10rem;
    align-items: center;
}

#conciertos h2{
    text-align: center;
    text-transform: uppercase;
    font-family: 'Bebas Neue';
    font-weight: 100;
    font-size: 6.4rem;
    padding: 2rem 0 2rem 0;
    color: #ff9900;
}

#conjuntoanual{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
}

#ano{
    text-align: center;
    font-family: 'Bebas Neue';
    font-size: 4rem;
    padding-bottom: 3rem;
}

.detallesevento{
    background-color: #141418;
    border-radius: 1.2rem;
    padding: 1.6rem;
    display: flex;
    align-items: center;
    margin-bottom: 3.6rem;
    justify-content: space-evenly
}

.detalles{
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    gap: 4.8rem;
}

.mes_dia{
    width: auto; 
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mes_dia p{
    font-size: 2rem;
    color:#ff9900;
    font-family: 'Bebas Neue';
}

.mes_dia p:nth-last-child(){
    font-size: 3.2rem;
    color: #ff9900;
    font-family: 'Bebas Neue';
}

.ciudad_direccion{
    width: auto; 
    height: auto;
    display: flex;
    align-items: center;
    gap: 4.8rem;
    flex-direction: row;
}

.ciudad_direccion p{
    font-size: 2.4rem;
    color: #ffffff;
    font-family: 'Bebas Neue';
}




@media (min-width: 769px) and (max-width: 1024px) {
    .mes_dia p{
        font-size: 4rem;
        color:#ff9900;
        font-family: 'Bebas Neue';
    }
    
    .mes_dia p:nth-last-child(){
        font-size: 5.2rem;
    }
    
    
    .ciudad_direccion p{
        font-size: 4rem;
        color: #ffffff;
        font-family: 'Bebas Neue';
    }
}