#porqueasistir {
    background-color: #003351;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 80px 8%;
    box-sizing: border-box;
    align-items: flex-start;
}

#porqueasistir .fila {
    display: flex;
    flex-direction: row;
}

/* Título de la izquierda */
#porqueasistir .main-title {
    flex: 0 0 35%;
}

#porqueasistir .main-title h1 {
    font-family: 'FuturaPTCondensed-ExtraBold', sans-serif;
    font-size: clamp(30px, 7vw, 70px);
    color: #fad623;
    line-height: 1.1;
    margin: 0;
    font-weight: 700;
}

#porqueasistir .dato-individual {
    padding: 2%;
}

#porqueasistir .dato-individual h3 {
    font-family: 'FuturaPTCondensed-Bold', sans-serif;
    font-size: clamp(25px, 2.3vw, 60px);
    color: #fad623;
    text-align: start;
    text-transform: none !important;
}

#porqueasistir .dato-individual p {
    font-size: clamp(18px, 5.8vw, 25px);
    display: flex;
    flex-direction: column;
    font-family: 'FuturaPTCondensed-Book', sans-serif;
    text-align: justify;
}

#porqueasistir .componentePC {
    display: block;
}

#porqueasistir .componenteMovil {
    display: none;
}

@media (max-width: 680px) {

    #porqueasistir {
        padding: 40px 0;
    }

    #porqueasistir .main-title {
        flex: 0 0 0;
        text-align: center;
        margin-bottom: 20px;
    }

    #porqueasistir .fila {
        flex-direction: column;
    }

    #porqueasistir .dato-individual h3 {
        text-align: center;
    }

    #porqueasistir .componentePC {
        display: none;
    }

    #porqueasistir .componenteMovil {
        display: block;
    }

    #porqueasistir .fila {
        padding: 0 10%;
    }

}