
#mainSobre{
    background-color: #fff;
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    margin: 0;
    
}

#article-content-mainSobre{
    display: flex;
    flex-direction: column;
    /*align-items: center;*/

}


/* mainVideo */

#mainVideo{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000;
    /* border: 2px solid red; */

    display: grid;
    grid-template-areas: 'video';
    margin: 0;
    padding: 0;

    h1{
        color: #fff;
        text-align: center;
    }

}

.mainVideo-fundo{
    grid-area: video;
    width: 100%;
    height: 600px;

}

#image-video{
    background-size: 100%;
    object-fit: cover;
    background-position: top;
}
.mainVideo-content{
    grid-area: video;
    filter: brightness(100%);
    background-color: rgba(0, 89, 172, 0.3);
    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    padding: 0 2rem;
    height: 600px;


    h1{
        width: 70%;
        font-weight: bold;
    }
}

#article-video{
    border: 1px solid;
    display: flex;
    justify-content: center;
    padding: 0;
    background-color: #000;

}

/* modal video */

#conteudo-video{
    height: 0px;
    /* width: 500px; */
    background-color: #000;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

#iframe{
    /* width: 100%; */
    /* height: 500px; */
    padding: 0;
    margin: 0;
    background-color: #000;
}


/* responsividade do video */
@media (width>1500px){
    #iframe{
        width: 1200px;
    }
}
@media (width<1500px){
    #iframe{
        width: 1000px;
    }
}

@media (width<1200px){
    #iframe{
        width: 800px;
    }
}

@media (width<990px){
    #iframe{
        width: 600px;
    }
}
@media (width<768px){
    #iframe{
        width: 500px;
    }
}

@media (width<576px){
    #iframe{
        width: 400px;
    }
}

@media (width<500px){
    #iframe{
        width: 350px;
    }
}

@media (width<320px){
    #iframe{
        width: 100%;
    }
}

#section-btn-video{
    border: 8px solid #00C3FF;

    padding: 1rem;
    margin-top: 2rem;
    border-radius: 50%;
    height: 150px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;

    animation-name: borda-section-video;
    animation-duration: 1s;
    animation-delay: 0s;
    animation-timing-function: ease-in-out;
    animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation-iteration-count: infinite;
}


#div-btn-video{
    height: 100%;
    width: 100%;
    border: 6px solid #00C3FF;

    padding: 1.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

    animation-name: borda-div-video;
    animation-duration: 1s;
    animation-delay: 0s;
    animation-timing-function: ease-in;
    animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation-iteration-count: infinite;
}

@media (width<=768px) {
    #section-btn-video{
        border-width: 6px;
    }
    #div-btn-video{
        border-width: 4;
    }
}

#btn-video{
    border: none;
    outline: none;
    background-color: transparent;
    color: #fff;
    font-size: 5vh;
}



@keyframes borda-section-video{
    0%{
        border-color: #02aee2;
    }
    50%{
        transform: scale(1.1);
        border-color: #00C3FF;
        
    }
    100%{
        border-color: #02aee2;
    }
}


@keyframes borda-div-video{
    0%{
        border-color: #02aee2;
    }
    50%{
        transform: scale(1);
        border-color: #00C3FF;
    }
    100%{
        border-color: #02aee2;
    }
}


@media (width<=768px){
    #section-btn-video{
        height: 100px;
        width: 100px;

        
        #btn-video{
            font-size: 3vh;
        }
    }
}



/* main11 */

#main11{
    background-color: #f0f9ff;
    margin: 0;
    padding-bottom: 2rem;
    padding-top: 2rem;
    height: auto;
    display: flex;
    justify-content: center;
    column-gap: 2rem;
}

#article-content-main11{
    display: flex;
    justify-content: center;
    height: 400px;
    /*row-gap: 1rem;*/
    padding-top: 2rem;
}


@media(width<500px){

    #main11 .article-image{
        margin-top: 7rem;
    }
}

.card-duvida {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    overflow: hidden;
    row-gap: 0.3rem;
    padding: 0;
    border-radius: 7px;

    summary{
        padding: 1rem;
        display: flex;
        justify-content: space-between;
        background:  linear-gradient(250deg, #03c0f3, #0192ef);
        border-radius: 7px;
        color: #fff;
        margin-bottom: 0.5rem;
        height: auto;

    }
    .div-resposta{
        font-size: 2.1vh;
        display: none;
        border-radius: 7px;
        padding: 1rem;
        background-color: #fff;
        color: #606060;
    }
}

.card-duvida:hover{

    .div-resposta{
        display: block;

        display: flex;
        flex-direction: column;
    }
}

.pergunta{
    margin-bottom: 0;
   
}

#image-pcs{
    height: 80%;
}
