﻿.about {
    padding: 60px 0;
    background-color: #ffffff;
    margin-top: -50px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}
#div-do-gap-about {
    gap: 20px;
    flex-direction: column;
    display: flex;
}
.about h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #00264d;
    text-align: center;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1 1 40%;
    text-align: center;
}

    .about-image img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    }

.about-text {
    flex: 1 1 60%;
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
}

    .about-text p {
        margin-bottom: 15px;
    }

/* Estilos para dispositivos menores */
@media (max-width: 768px) {
    .about-content {
        display:block;
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        flex: 1 1 100%;
    }

    .about-image {
        margin-bottom: 20px;
    }
    #about-p {
        text-align: justify;
    }
}


@media (min-width: 769px) {
/*    .about-content {
        flex-wrap: wrap;
    }*/
    .about-image {
        align-self: start;
    }

    
}







