@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

#about {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.aboutTitle h1 {
    font-family: Poppins, sans-serif;
    font-weight: 500;
    text-align: center;
}

#about .aboutImage {
    height: 120px;
    margin-bottom: 20px;
}

#about .aboutImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

#about .aboutText {
    width: 80%;
    margin: 0 auto 30px;
    color: #5b5a5a;
}

@media (min-width: 800px) {
    #about {
        flex-direction: row;
    }

    #about > div {
        margin: 0 20px;
    }

    #about .aboutImage {
        height: 250px;
    }
}

@media (min-width: 1000px) {
    #about {
        width: 80%;
        margin: 4rem auto 8rem;
        align-items: initial;
    }

    #about .aboutImage {
        height: 400px;
    }

    #about .aboutText {
        font-size: 1.3rem;
    }

    .aboutTitle {
        width: 80%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .aboutTitle h1 {
        text-align: initial;
    }
}

/* Estilo diferente de cor para o footer  */

.footerDivider {
    background-color: #12af3e;
}

.footerBox {
    border-top: 5px solid #12af3e;
    color: #12af3e;
}

.footerRightAddress {
    color: white;
}

.copyright {
    background-color: #12af3e;
}

.copyright a {
    color: white;
}

.copyright a:hover {
    color: lightskyblue;
}

#myBtn {
    background: #12af3e;
}

#myBtn:hover {
    background-color: #067224;
}
