﻿.ajuda-infos {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 5.625rem auto;
    justify-content: space-between;
    gap: 6.25rem;
    padding: 0 2rem;
}

.ajuda-title h2 {
    color: #1f3156;
    font-size: 2rem;
    font-weight: 600;
}

.ajuda-title p {
    color: #4f4f4f;
    font-size: 1.375rem;
    width: 100%;
    max-width: 44.0625rem;
    margin-top: 1.75rem;
    text-align: justify;
}

.numeros {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    width: 100%;
    max-width: 24.125rem;
    border: 1px solid rgba(31,49,86,.3);
    box-shadow: 2px 2px 10px rgba(0,0,0,.1);
    border-radius: 0.5rem;
    flex-direction: column;
}

.telefones {
    display: flex;
    gap: 1.375rem;
    align-items: center;
    margin-top: 0.5rem;
    width: 100%;
    max-width: 13.75rem;
}

    .telefones img {
        width: 1rem;
    }

    .telefones span:first-child {
        text-align: right;
        max-width: 7.75rem;
        width: 100%;
    }

    .telefones span:last-child {
        color: #303030;
        font-size: .875rem;
        text-align: left;
    }

@media(max-width: 1280px){
    .ajuda-title p {
        max-width: 40.0625rem;
    }
}

@media(max-width: 1145px) {
    .ajuda-title p {
        max-width: 35.0625rem;
    }
}

@media(max-width: 1050px) {
    .numeros p {
        text-align: center;
    }
}

@media(max-width: 980px) {
    .ajuda-infos {
        display: block;
        text-align: -webkit-center;
    }

    .ajuda-title p {
        max-width: 36rem;
        margin: 2rem 0;
    }
}