@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;
    overflow-x: hidden;
    /* Impede a criação de barra de rolagem horizontal */
}


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


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

.pai {
    height: 100%;
}

.container {
    width: 100%;
}


.b1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px auto;
    gap: 20px;
    /* Espaçamento entre os cards e a seta */
    max-width: 100%;
    padding: 20px;
}


.card-Fernanda,
.card-Vinicius {
    margin: 20px;
    text-align: center;
    background-color: #e30613;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    padding: 50px 20px;
    color: white;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 8px 8px 8px 8px rgba(0, 0, 0, 0.219);
}


.card-Fernanda img,
.card-Vinicius img {
    border-radius: 50%;
    max-height: 300px;
    width: 100%;
    max-width: 300px;
    box-shadow: 8px 8px 8px 8px rgba(0, 0, 0, 0.219);
}


.card-Fernanda h3,
.card-Vinicius h3,
.card-Fernanda p,
.card-Vinicius p {
    margin-top: 20px;
    padding: 0;
}


/* Garantir que o texto role corretamente e não invada os cards */
.role {
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}


/* Estilo da seta */
.b1 img.arrow {
    height: 100px;
    width: 100px;
    margin-left: 20px;
    /* Espaçamento entre o card e a seta */
    position: relative
}

@media (max-width: 1036px) {

    .seta-direita {
        position: absolute;
        margin-left: 70vw;
        margin-right: 10vw;
        margin-top: 180vh;
    }
}