/* Segunda sessão Sobre nós */
.second-section {
    background-color: #222;
    width: 100%;
    height: auto;
    padding-bottom: 5rem;
    color: #E6E6E6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sobreNosConteudo {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 55px;
}

.contentSobre {
    margin-top: 5rem;
}

.contentSobre h2 {
    color: #323585;
    font-size: clamp(1.2rem, 3vw, 2.5rem);
    width: 100%;
    text-align: center;
}

.contentSobre p {
    font-size: clamp(1rem, 1.5vw, 1.4rem);
    text-align: justify;
    width: 100%;
}

.contentSobre a {
    font-size: clamp(1rem, 1.5vw, 1.4rem);
    color: #F84B46;
}

.second-section img{
    width: 25rem;
    height: 30rem;
    margin-top: 10rem;
    border: 3px solid #E6E6E6;
}

/* Telas maiores que 768px */
@media (min-width: 768px) {
    .sobreNosConteudo {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .contentSobre h2 {
        text-align: left;
    }

    .second-section img {
        margin-top: 10rem;
        border: 3px solid #E6E6E6;
    }
}