
/* MEDIA 430PX ABERTURA */
@media screen and (max-width: 430px) {
    
    article .coluna1{
        width: auto;
        max-width: 400px;
        min-width: 400px;
        height: auto;
        
    }
    article .coluna2{
        width: auto;
        max-width: 400px;
        min-width: 400px;
        height: auto;
    }
    article details summary{
        font-size: 14px;
    }
    article details{
        padding: 10px;
        max-height: 70px;
    }
}

/* MEDIA 430PX FECHAMENTO */

/* MEDIA 390PX ABERTURA */
@media screen and (max-width: 390px) {
    
    article .coluna1{
        width: auto;
        max-width: 350px;
        min-width: 350px;
        height: auto;
        
    }
    article .coluna2{
        width: auto;
        max-width: 350px;
        min-width: 350px;
        height: auto;
    }
}

/* MEDIA 390PX FECHAMENTO */

/* MEDIA 360PX ABERTURA */
@media screen and (max-width: 360px) {
    
    article .coluna1{
        width: auto;
        max-width: 300px;
        min-width: 300px;
        height: auto;
        
    }
    article .coluna2{
        width: auto;
        max-width: 300px;
        min-width: 300px;
        height: auto;
    }
}

/* MEDIA 360PX FECHAMENTO */

article{
    width: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    overflow: hidden;
}
article .banner{
    width: auto;
    max-width: 800px;
    border-radius: 10px;
    cursor: pointer;
    margin: 0 25px;
}

/* FAQ ABERTURA */

.faq{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.coluna1{
    width: auto;
    max-width: 600px;
    min-width: 600px;
    height: auto;
    
}
.coluna2{
    width: auto;
    max-width: 600px;
    min-width: 600px;
    height: auto;
}

details{
    background-color: rgb(13, 115, 129);
    box-shadow: 2px 2px 10px rgb(152, 152, 152);
    padding: 5px;
    padding-bottom: 30px;
    border-radius: 4px;
    margin-top: 10px;
    max-height: 0px;
    transition: all 1s ease-in-out;
    overflow: hidden;
    margin-left: 0 25px;
}
details[open]{
    max-height: 500px;
    box-shadow: 0 0 5px rgb(94, 94, 94);
    text-align: justify;
}
details summary{
    color: white;
    display: flex;
    justify-content: space-between;
    list-style: none;
    gap: 50px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    cursor: pointer;
}
details p{
    font-family: "Kanit",sans-serif;
    font-weight: 300;
    padding: 10px;
    color: white;
}
details[open]  i{
    rotate: 180deg;
    transition: all 0.7s ease-in-out;
}

/* CSS DO SITE FECHAMENTO */
