/* ==============================
   SEÇÃO about
================================= */

.about {
    position: relative;
    overflow: hidden;
    background: url("../../images/about/bkp-page-about.jpg");
    background-size: cover;
}


.about-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    /*min-height: 650px;*/
}

.about-content {
    padding: 60px 30px 40px 30px;
}

.about-content h1 {
    margin-bottom: 18px;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    color: #008c8c;
}


.about-intro {
    max-width: 640px;
    font-size: 26px;
    line-height: 1.3;
    color: #333;
}

/* ==============================
   DESCRIÇÃO
================================= */

.about-description {
    max-width: 840px;
    margin: 40px 0;
}

.about-description h2 {
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #222;
}

.about-description p {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.35;
    color: #555;
}

.cnt-peaple {
    padding: 40px 0;
}
.cnt-peaple .cnt-img {
    float: left;
    margin-right: 20px;
    max-width: 250px;
}
/* ==============================
   RESPONSIVO
================================= */

@media (max-width: 1100px) {

    .about-container {
        grid-template-columns: 50% 50%;
    }

    .about-content {
        padding-left: 30px;
    }

    .about-intro {
        font-size: 15px;
    }

    .about-description p {
        font-size: 12px;
    }

  
}


/* Tablet */

@media (max-width: 768px) {

    .about-container {
        display: flex;

        flex-direction: column;

        min-height: auto;
    }


    .about-content {
        padding: 40px 25px 20px;
    }


    .about-content h1 {
        font-size: 28px;
    }


    .about-intro {
        max-width: 100%;

        font-size: 16px;
    }


    .about-description {
        max-width: 100%;

        margin-top: 30px;
    }

}


/* Mobile */

@media (max-width: 480px) {

    .about-content {
        padding: 30px 20px;
    }


    .about-content h1 {
        font-size: 26px;
    }


    .about-intro {
        font-size: 15px;
    }


    .about-description h2 {
        font-size: 16px;
    }


    .about-description p {
        font-size: 12px;
    }


}


/* ========================================
   EQUIPE
======================================== */

.equipe {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 70px 80px 80px;
    box-sizing: border-box;

    font-family: Arial, Helvetica, sans-serif;
    color: #292929;
}


/* ========================================
   SEÇÕES
======================================== */

.equipe-section {
    width: 100%;
}

.equipe-section.conselho {
    margin-top: 115px;
}


/* ========================================
   TÍTULOS
======================================== */

.equipe-section h2 {
    margin: 0 0 55px;

    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;

    color: #292929;
}


/* ========================================
   GRID
======================================== */

.equipe-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    column-gap: 45px;
    row-gap: 75px;

    width: 100%;
}


/* ========================================
   MEMBRO
======================================== */

.membro {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


/* ========================================
   FOTO
======================================== */

.membro-foto {
    width: 255px;
    height: 255px;

    border-radius: 50%;
    overflow: hidden;

    margin-bottom: 22px;

    background-color: #eee;
}

.membro-foto img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* ========================================
   INFORMAÇÕES
======================================== */

.membro-info {
    width: 100%;
}

.membro-info h3 {
    margin: 0;

    font-size: 20px;
    font-weight: 700;

    line-height: 1.15;

    color: #303030;
}

.membro-info p {
    margin: 2px 0 0;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.15;

    color: #303030;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1200px) {

    .equipe {
        padding-left: 40px;
        padding-right: 40px;
    }

    .equipe-grid {
        grid-template-columns: repeat(4, 1fr);
        column-gap: 25px;
    }

    .membro-foto {
        width: 210px;
        height: 210px;
    }

    .membro-info h3 {
        font-size: 18px;
    }

    .membro-info p {
        font-size: 14px;
    }
}


/* ========================================
   TABLET / MOBILE
======================================== */

@media (max-width: 900px) {

    .equipe {
        padding: 40px 25px 60px;
    }

    .equipe-section.conselho {
        margin-top: 80px;
    }

    .equipe-section h2 {
        margin-bottom: 40px;
        font-size: 26px;
    }

    .equipe-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 30px;
        row-gap: 55px;
    }

    .membro-foto {
        width: 210px;
        height: 210px;
    }
}


/* ========================================
   CELULAR
======================================== */

@media (max-width: 600px) {

    .equipe {
        padding: 30px 20px 50px;
    }

    .equipe-section.conselho {
        margin-top: 65px;
    }

    .equipe-section h2 {
        margin-bottom: 35px;
        font-size: 24px;
    }

    .equipe-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .membro-foto {
        width: 220px;
        height: 220px;
        margin-bottom: 18px;
    }

    .membro-info h3 {
        font-size: 19px;
    }

    .membro-info p {
        font-size: 15px;
    }
}