#procedimentos{
    width: 100%;
    display: table;
    height: 35rem;
    padding: 2rem 0rem;
    background-color: bisque;
}

h1{
    font-weight: 800;
    font-size: 3.2rem;
    align-items: center;
    justify-content: center;
    display: flex;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container{
    display: flex;
    height: 400px;
}

.card{
    width: 80px;
    border-radius: 0.75rem;
    background-size: cover;
    cursor: pointer;
    overflow: hidden;
    border-radius: 2rem;
    margin: 0 10px;
    display: flex;
    align-items: flex-end;
    transition: 0.6s cubi-bezier(0.28, -0.03, 0, 99);
    box-shadow: 20px 10px 10px -10px rgba(0, 0, 0, 0.8);
}

.card > .row{
   color: white;
   display: flex;
   flex-wrap: wrap;
}

.card > .row > .icon{
    background-color: black;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
}

.card > .row > .description{
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    height: 80px;
    width: 520px;
    opacity: 0;
    transform: translateY(30px);
    transition-delay: 0.2s;
    transition: al 0.3s ease;
}

.description p{
    color: #b0b0ba;
    padding-top: 5px;
}

.description h4{
    text-transform: uppercase;
    font-weight: 800;
    color: white;
    background-color: black;
}

input{
    display: none;
}

input:checked + label{
    width: 600px;
}

input:checked + label .description{
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.card[for="c1"]{
    background-image: url(../imagens_slide/Carrossel1.jpg);
}

.card[for="c2"]{
    background-image: url(../imagens_slide/Carrossel2.JPG);
}

.card[for="c3"]{
background-image: url(../imagens_slide/Carrossel3-1.JPG);
}

.card[for="c4"]{
    background-image: url(../imagens_slide/Carrossel4-1-Copia.JPG);
}

.card[for="c5"]{
    background-image: url(../imagens_slide/Carrossel5-Copia.JPG);
}

video {
    width: 750px;
    margin:0 auto;
    display: block;
}





@media all and (max-width: 912px){
    #procedimentos{
        width: 100%;
        display: block;
        height: 65rem;
    }

    h1{
        font-weight: 800;
        font-size: 2.5rem;
        margin-bottom: -10rem;
        align-items: center;
        justify-content: center;
        display: flex;
    }

    .description h4{
        text-transform: uppercase;
        font-weight: 800;
        color: white;
        background-color: black;
        margin-left: 0.5rem;
    }

    .card[for="c1"]{
        background-image: url(../imagens_slide/Carrossel1-Celular.jpg);
    }
    
    .card[for="c2"]{
        background-image: url(../imagens_slide/Carrossel2-Celular.JPG);
    }
    
    .card[for="c3"]{
    background-image: url(../imagens_slide/Carrossel3-1.JPG);
    }
    
    .card[for="c4"]{
        background-image: url(../imagens_slide/Carrossel4-1-Copia-Celular.JPG);
    }
    
    .card[for="c5"]{
        background-image: url(../imagens_slide/Carrossel5-Copia-Celular.JPG);
    }

    video {
        width: 400px;
        margin:0 auto;
        display: block;
        margin-top: -8rem;
    }
}

