.cards-datos {
    width: 328px;
    padding: 32px 8px 40px 8px;
    background: #00402A;
    border-radius: 16px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 40px auto;
}

.card-dato {
    flex: 1 1 0;
    width: 216px;
    height: 92px;
    padding-left: 16px;
    padding-right: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    display: inline-flex;
}

.card-number {
    align-self: stretch;
    text-align: center;
    color: white;
    font-size: 48px;
    font-family: 'IberPangea-Regular';
    font-weight: 600;
    line-height: 56px;
    word-wrap: break-word;
}

.card-text {
    align-self: stretch;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.card-title {
    align-self: stretch;
    text-align: center;
    color: white;
    font-size: 18px;
    font-family: 'IberPangea-Regular';
    font-weight: 400;
    line-height: 24px;
    word-wrap: break-word;
    margin-bottom: 0px;
}

@media (min-width: 576px) {
    .cards-datos {
        width: 496px;
        height: 164px;
        flex-direction: row;
        gap: 0px;
    }

    .card-dato {
        width: 160px;
    }
}

@media (min-width: 992px) {
    .cards-datos {
        width: 826px;
        height: 232px;
        padding: 48px 24px 46px 24px;
    }

    .card-dato {
        width: 259.33px;
        height: 128px;
        gap: 16px;
    }

    .card-number {
        font-size: 72px;
        line-height: 80px;
    }
    
    .card-title {
        font-size: 24px;
        line-height: 32px;
    }
}

@media (min-width: 1200px) {
    .cards-datos {
        width: 1000px;
    }

    .card-dato {
        width: 285.33px;
    }
}

@media (min-width: 1920px) {
    .cards-datos {
        width: 1280px;
    }
    
    .card-dato {
        width: 410.66px;
    }
}