.introducao {
    background-image: url('/img/home/introducao_background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
}

.introducao #all {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 90%;
    margin: 0 auto;
}

.introducao #all div {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: 'Nunito';
}

.introducao #all h1 {
    font-style: bold;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #363040;
    line-height: 1.2;
    width: 100%;
}

.introducao #all div p {
    font-style: medium;
    font-weight: 500;
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin: 0.3rem 0;
}

.introducao #all img {
    margin-top: 3.5rem;
    width: clamp(30rem, 50vw, 52rem);
}

@media (max-width: 800px) {
    .introducao #all {
        flex-direction: column-reverse;
    }

    .introducao #all div {
        align-items: center;
        justify-content: center;
        margin: 0 auto;

        text-align: center;
    }
}