body{
    background-color: #c3c3c3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}


.section_em_manutencao{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80vw;
    height: 100%;
    max-height: 90vh;
    margin: 0 auto;
    background-color: #c3c3c3;
    font-family: 'Open Sans', sans-serif;
}
    
.bloco_manutencao{
    max-height: 100%;
    background-color: white;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: center;
    box-shadow: 0 0 20px 5px rgba(black, .2);
    border-radius: 2rem;
    overflow: hidden;
    padding: 1rem;
    box-sizing: border-box;
}
.container_manutencao{
    width: 100%;
    padding: 0 1rem;
}

.container_manutencao img{
    border-radius: 1rem;
    width: 30%;
    height: auto;
}

.container_manutencao h1{
    font-size: 2rem;
    font-weight: 800;
    color: #232323;
    margin: 1rem 0;
}

.container_manutencao span{
    font-size: 4rem;
    line-height: 5rem;
}

.container_manutencao h2{
    font-size: 1.2rem;
    line-height: 1.8rem;
    font-weight: 400;
    color: #888888;
    text-align: left;
}

.container_img{
    width: 100%;
}
.container_img img{
    width: 100%;
    user-select: none;
}

@media all and (max-width: 1023px){
    .section_em_manutencao{
        height: 100% !important;
        min-height: 100vh;
    }
    .section_em_manutencao .bloco_manutencao{
        padding: 2rem;
        grid-template-columns: repeat(1, 1fr);
    }
    .bloco_manutencao .container_manutencao{
        padding: 0;
    }
    .container_manutencao img{
        width: 45%;
    }
    
    .container_manutencao h1{
        font-size: 1.5rem;
    }
    
    .container_manutencao span{
        font-size: 3rem;
        line-height: 4rem;
    }
    
    .container_manutencao h2{
        font-size: 1.1rem;
        line-height: 1.5rem;
        text-align: justify;
    }
}