.hero1 {
    padding: 40px 20px;
    background-image: url('../img/background2.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero1 .container1 .options-container1 .titulo {
    font-size: 45px;
    display: flex;
    flex-wrap: wrap;
    align-items: left;
    margin-left: 65px;
    color: white;
}

.hero2 {
    color: #000000;
    padding: 40px 20px;
}

.hero2 .container2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.hero2 .text-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.hero2 .text-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero2 .image-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero2 .image-content img {
    width: 180px;
    height: 200px;
    border-radius: 25%;
    border: 5px solid #5fc430;
}

.options-container {
    text-align: center;
    margin: 50px auto;
}

.options-container h2 {
    font-size: 28px;
}

.options-container p {
    margin-bottom: 30px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.card {
    text-align: center;
}

.card p {
    margin-top: 10px;
    font-size: 16px;
    color: #000000;
}

/* Contêiner para a palavra e as linhas */
.linha-com-palavra {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    gap: 10px;
}

/* Linhas à esquerda e à direita da palavra */
.linha {
    flex-grow: 1;
    height: 1px;
    background-color: #6a1b9a; /* Cor roxa para a linha */
}

/* Estilo da palavra centralizada */
.palavra {
    font-size: 24px;
    font-weight: bold;
    color: #6a1b9a; /* Cor roxa para a palavra */
    text-transform: uppercase;
}

.imagens-container {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 50px;
}

.imagem-item {
    text-align: center;
}

/* Estilo das imagens */
.imagem-oval {
    width: 90px;
    height: 100px;
    transform: scale(1.6);
    border-radius: 50%;
}

/* Estilo para o texto */
.nome {
    font-size: 16px;
    color: #333;
    margin-top: 35px;
}

/* Media Queries para tornar o layout responsivo */
@media (max-width: 768px) {
    .hero1 .container1 {
        flex-direction: column;
        text-align: center;
    }

    .hero1 .titulo {
        font-size: 30px;
        margin-left: 0;
    }

    .hero2{
        max-height: 80%;
    }

    .hero2 .container2 {
        flex-direction: column;
        text-align: center;
    }

    .hero2 .text-content h2 {
        font-size: 28px;
    }

    .hero2 .image-content img {
        width: 150px;
        height: 160px;
    }

    .options-container h2 {
        font-size: 24px;
        margin-top: 80%;
    }

    .cards {
        flex-direction: column;
        gap: 30px;
    }

    .imagem-oval {
        width: 80px;
        height: 90px;
        transform: scale(1.3);
    }

    .imagens-container {
        flex-direction: column;
        gap: 40px;
    }

    .card p {
        font-size: 14px;
    }

    .linha-com-palavra {
        flex-direction: column;
        margin-top: 40px;
    }

    .linha {
        width: 100%;
    }

    .palavra {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero1 .titulo {
        font-size: 24px;
    }

    .hero2 .text-content h2 {
        font-size: 24px;
    }

    .hero2 .image-content img {
        width: 120px;
        height: 130px;
    }

    .options-container h2 {
        font-size: 20px;
    }

    .cards {
        gap: 20px;
    }

    .imagem-oval {
        width: 70px;
        height: 80px;
        transform: scale(1.2);
    }

    .card p {
        font-size: 12px;
    }

    .linha-com-palavra {
        margin-top: 30px;
    }

    .linha {
        width: 100%;
    }

    .palavra {
        font-size: 18px;
    }
}
