@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    list-style: none;
}

.saude{
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-color: #262628;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.saude-header{
    width: 100%;
    height: 250px;
    background-image: 
        linear-gradient(#000000b6, #000000b6), /* Overlay preto */
        url('/img/health.avif');
    background-size: cover;
    background-position: center 52%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.saude-header h1{
    font-size: 56px;
    background-image: linear-gradient(to right, rgb(58, 199, 226) 0%, rgb(9, 106, 175) 50%, rgb(3, 61, 133) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 350;
}

.conteudo-container{
    width: 95%;
    height: auto;
    min-height: 1920px;
    display: flex;
    flex-wrap: wrap;
}

.p-1, .p-2, .p-3{
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.p-img{
    width: 45%;
    height: 461.25px;
    object-fit: cover;
}

.info{
    width: 45%;
    max-height: 100%;
    font-size: 22px;
    text-indent: 40px;
    color: whitesmoke;
}

@media screen and (max-width: 800px) {

    .saude-header h1{
        text-align: center;
        margin-top: 55px;
    }

    .p-1, .p-3{
        flex-direction: column-reverse;
    }

    .info{
        width: 95%;
        font-size: 18px;
        margin-top: 15px;
        text-indent: 20px;
    }

    .p-img{
        width: 95%;
        height: 208px;
    }

    .p-2{
        flex-direction: column;
    }


}