.about-container {
    min-height: 100svh;
    height: 100%;
    width: 100%;
    align-items: center;
    background: linear-gradient(30deg,
            #0039A6 0%,
            #00091A 50%,
            #00091A 67%,
            #000 100%);
    padding-block: 6vh;
    /* respiro vertical */
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    /* define a espessura */
    border-image: linear-gradient(to right, #888888, transparent, #888888) 1;
}

.content-about {
    display: flex;
    flex-direction: column;
    gap: 6vh;
    justify-content: center;
    min-height: 100svh;
    width: 100%;
}

.about-container h2 {
    font-size: 35px;
    font-weight: 500;
    text-align: center;
}

.about-container b {
    font-weight: 700;
    color: #E2B852;
}

/* //cards de sobre */
.container-card-about {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
}

.card-about {
    display: flex;
    flex: 1;
    width: 100%;
    min-width: 250px;
    min-height: 300px;
    padding: 2rem;
    text-align: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-about:hover {
    transform: scale(1.03);
    transition: ease-in;
}

.card-about h5 {
    font-size: 26px;
    font-weight: 500;
}

.card-about p {
    font-size: 16px;
    font-weight: 200;
}

.subtitle-call {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    padding-inline: 1rem;
    /* evita colar nas bordas no mobile */
}

.subtitle-call h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 300;
}

/* imagem bg foco na reforma letter */
.image-foco-bg {
    display: flex;
    position: absolute;
    opacity: 0.1;
    left: 0;
    /* margin-top: 130rem;   */
    margin-top: 40%;
    width: 900px;
}

.image-logo-bg {
    display: flex;
    position: absolute;
    opacity: 0.1;
    right: 0;
    /* margin-top: 130rem;   */
    margin-top: 40%;
    margin-right: -120px;
    width: 400px;
}
/* ===== Mobile ===== */
@media (max-width: 768px) {
    .about-container {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 100%;
        gap: 0px !important;
        justify-content: center;
        padding-inline: 10px;
    }

    .content-about {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: auto;
        min-height: 100%;
        gap: 0;
    }

    .container-card-about {
        gap: 0px;
        flex-direction: column;
        /* força empilhar */
    }

    .card-about {
        min-width: 100%;
        min-height: 260px;
        padding: 2rem 1.25rem;
        /* mais respiro lateral */
        gap: 8px;
    }

    .about-container h2 {
        font-size: 22px;
        font-weight: 500;
        margin-bottom: 2vh;
    }

    .card-about h5 {
        font-size: 18px;
        font-weight: 600;
    }

    .card-about p {
        font-size: 15px;
        line-height: 1.4;
    }

    .subtitle-call {
        display: flex;
        flex-direction: column;
        gap: 0px;

    }

    .subtitle-call h3 {
        font-size: 12px;
        line-height: 1.4;
    }

    .button-acess-call {
        padding: 8px 20px;
        font-size: 14px;
        margin-top: 2rem !important;
    }
    .image-foco-bg {
        display: none;
    }
    .image-logo-bg {
        display: none;
    }
}