
* {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #ffffff;
    text-align: justify;
}

.primeiro-paragrafo h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
    margin-top: 2%;
}
.primeiro-paragrafo p {
    margin-top: 0;
    font-size: 1.5rem; 
    text-align: justify;
    margin-bottom: 2%;
}

h3{
    font-size: 0.9rem;
}

.ppp {
    text-align: center;
    margin: 1% 5% 2% 5%;
    font-size: 0.7rem; 
}

.container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    
}

.member {
    background-color: #ffffff;
    padding: 0;
    margin-bottom: 90px;
    margin-top: 2%;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 200px;
    transition: transform 0.3s ease;
}

.member img {
    width: 80%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.member:hover {
    transform: scale(1.05);
}

.member h3 {
    margin-bottom: 5px;
    color: #000000;
    padding-bottom: 5%;

}

@media (max-width: 1200px) {
    .member {
        width: 45rem;
    }
}

p, .description {
    
    margin: 1% 4% 1.5% 4%;
    text-align: justify;
    line-height: 1.5rem;
    font-size: 1.5rem;
}

@media (max-width: 992px) {
    .member {
        width: 46%;
    }
    p, .description{
        font-size: 1rem;
        margin: 1% 3% 1.5% 3%;
    }
}

@media (max-width: 768px) {
    .member{
        width: 100%;
        margin-bottom: 50px;
    }
    h1 {
        font-size: 2rem;
        margin-top: 3%;
    }
    p, .description{
        font-size: 1rem;
        margin: 1% 3% 1.5% 3%;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    p, .description {
        font-size: 1rem;
        margin: 1% 2% 2% 2%;
    }

    @media (max-width: 400px) {
        h1 {
            font-size: 1.2rem;
        }
        p, .description {
            font-size: 0.9rem;
        }
        .member {
            width: 100%;
        }
    }
}

