.conquistas {
    align-items: center;
    flex-direction: column;

    .texto {
        margin-bottom: 20px;

        & h3 {
            font-weight: 600;
            padding-bottom: 12px;
            color: #416fbe;
        }

        & p {
            font-size: 1rem;
        }
    }

    .cards {
        display: flex;
        gap: 39px;
        flex-wrap: wrap;
        justify-content: left;

        .card {
            display: flex;
            flex-direction: row;
            border: 0;
            border-bottom: 8px solid #416fbe;
            border-radius: 0;
            padding-bottom: 12px;
            height: 150px;
            gap: 8px;
            width: 30%;
			background:none;

            .image-card {
                width: 47%;

                & img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }

            .texto-card {
                width: 53%;
                font-size: clamp(0.6rem, 2vw, 0rem);
            }
        }
    }

    @media (max-width: 768px) {
        .cards{
            padding: 0 60px;
            flex-direction: column;
            max-width: 600px;
        }
    }
}