@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}


.titulo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    margin-bottom: 0;
    padding-bottom: 0;
}


.titulo h1 {
    font-size: 2rem;
}


.arrow2 {
    height: 100px;
    width: 100px;
    display: flex;
}


/* Seção da equipe */
.b1 {
    text-align: center;
}


h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
}


/* Estilos dos cartões */
.b1 .card-Pereira img,
.b1 .card-Matheus img,
.b1 .card-Jessica img,
.b1 .card-Sara img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 8px 8px 8px 8px rgba(0, 0, 0, 0.219);
}


.b1 h3 {
    font-size: 18px;
    margin-bottom: 3rem;
    margin-top: 2rem;
}


.b1 p {
    font-size: 16px;
    margin-bottom: 1rem;
}


/* Flecha inferior */
.b1 img.arrow {
    height: 100px;
    width: 100px;
    align-items: center;
}


/* Layout responsivo */
@media (min-width: 768px) {
    .b1 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 60px;
        padding-right: 120px;
    }



}


.b1 .card-Pereira,
.b1 .card-Matheus,
.b1 .card-Jessica,
.b1 .card-Sara {
    background-color: #e20000;
    color: white;
    border-radius: 10px;
    padding: 40px;
    width: 100%;
    max-width: 14rem;
    text-align: center;
    margin: 20px 0;
    box-shadow: 8px 8px 8px 8px rgba(0, 0, 0, 0.219);
    height: 25rem;
}


/* Estilo para a seção da equipe */
.b1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    overflow-x: auto;
}


/* Ajuste para o título da equipe */
.equipe-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}


/* Estilo dos cartões */
.b1 .card-Pereira img,
.b1 .card-Matheus img,
.b1 .card-Jessica img,
.b1 .card-Sara img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 8px 8px 8px 8px rgba(0, 0, 0, 0.219);
}


/*  para telas menores */
@media (max-width: 767px) {
    .titulo h1 {
        font-size: 1.5rem;
    }


    .b1 {
        flex-direction: column;
        /* Ajusta os cards para ficarem um embaixo do outro */
        padding-right: 0;
    }


    .arrow2 {

        width: 30px;
        height: 30px;
    }


    .b1 img.arrow {
        height: 60px;
        width: 60px;
    }
}


@media (max-width: 480px) {
    .titulo h1 {
        font-size: 1.2rem;
    }




    .b1 h3 {
        font-size: 16px;
    }


    .b1 p {
        font-size: 14px;
    }


    .b1 img.arrow {
        height: 40px;
        width: 40px;
    }
}

@media (max-width: 1140px) {
    .arrow2 {

        width: 40px;
        height: 40px;
    }

}