/* 
   ==================================================
   SEÇÃO MODALIDADES
   ================================================== 
*/
#modalidades {
    padding: 60px 0; 
    background-color: #2b2b2b; 
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('../img/modalidade/background.png');
    background-size: cover; 
    background-position: center center;
    background-repeat: no-repeat;
}

#modalidades img {
    max-height: 100px; 
    width: auto;
    display: block;
    margin: 0 auto;
    filter: none;
    opacity: 1;
    transition: transform 0.3s ease;
}

#modalidades img:hover {
    transform: scale(1.1);
}

#modalidades .card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #ffffff;
}

#modalidades .card-text small {
    display: block;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

#modalidades .row-card {
    display: flex;
    align-items: center;
    height: 100%;
}