/*MENUS*/
.menu {
    position: fixed;
    top: 0;
    background: rgba(0, 0, 0, 0.96);
    height: 100px;
    width: 100%;
    z-index: 1;
}

.menu-geral {
    margin: 0 auto;
    width: 90%;
    display: flex;
    flex-direction: row;
    height: 100px;
    align-items: center;
    position: relative;
}

.menu-geral .menu-logo {
    
}
.menu-geral .menu-logo img {
    width: 90px
}

.menu-geral .menu-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    position: absolute;
    right: 0;
}

.menu-geral .menu-menu a{
    margin-left: 20px;
    font-size: 0.9em;
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
    transition: 0.5s;
    color: #ffffff
}
.menu-geral .menu-menu a:hover{
    border-bottom: 2px solid orangered;
    color: orangered;
}

.menu-geral .menu-abrir {
    display: none;
}

.menu-geral .menu-aberto {
    display: none;
    position:absolute;
    background: rgba(0,0,0,0.96);
    top: 100px;
    width: 100%;
    flex-direction: column;
    height: auto;
    border-radius: 0 0 20px 20px;
    padding-bottom: 30px;
}
.menu-geral .menu-aberto a {
    margin-left: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}
.menu-geral .menu-aberto a:first-child {
    margin-top: 20px;
}
.menu-geral .menu-aberto a:hover {
    color: #f1f1f1;
}

@media screen and (max-width: 900px) {
    .menu-geral .menu-menu {
        display: none;
        flex-direction: row;
    }

    .menu-geral .menu-abrir {
        display: flex;
        justify-content: flex-end;
        position: absolute;
        right: 0;
        color: orangered;
        font-size: 2em;
        font-weight: 100;
        cursor: pointer;
        transition: 0.3s;
    }
    .menu-geral .menu-abrir:hover {
        color: darkorange;
    }
}









/*HEADER*/
header{
    background-image: url(../img/bg-evento.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 110vh;
    display: flex;
}
.topo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    text-align: center;
    margin: 0 auto;
    flex-direction: column;
}
.topo img{
    width: 100%;
    max-width: 450px;
    margin-top: 0px;
}
.topo h1{
    margin: 0;
    margin-top: 10px;
    color: orangered;
    font-size: 1.2em;
}
.topo h2{
    margin-top: 20px;
    margin-bottom: -20px;
    font-weight: 700;
}
.topo h3{
    margin: auto;
    margin-top: 20px;
    font-size: 1em;
    margin-bottom: 50px;
}
.topo a{
    background-color: orangered;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 100px;
    margin-top: 20px;
    transition: 0.3s;
    animation: blink 4s infinite;
}
@keyframes blink{
    0%{
        box-shadow: 0px 0px 0px transparent;
    }
    50%{
        box-shadow: 0px 0px 0px red;
    }
    100%{        
        box-shadow: 0px 0px 0px 10px transparent;
    }
}
.topo a:hover{
    background-color: transparent;
    color: orangered;
    padding: 15px 50px;
    border-radius: 100px;
    border: 2px solid orangered;
    margin-top: 20px;
}
.topo .bts_encerrado{
    opacity: 0.4;
}
.header{
    background-image: url(../img/bg-evento.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 200px;
    display: flex;
}










.separador1{
    height: 100px;
    width: 100%;
    background-image: url(../img/separador1.png);
    background-size: cover;
    background-position: center center;
    margin-top: -200px;
}










.eventos{
    margin: 0 auto;
    background: #f1f1f1;
    height: auto;
}
.eventos .title{
    padding-top: 60px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
}
.eventos .btn{
    width: 90%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 60px;
    margin-top: 20px;
}
.eventos .btn .btn-base{
    position: relative;
    text-align: center;
    background-color: orangered;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 100px;
    border: 2px solid orangered;
    transition: 0.3s;
}
.eventos .btn .btn-base:hover{
    position: relative;
    text-align: center;
    background-color: transparent;
    color: orangered;
    padding: 10px 40px;
    border: 2px solid orangered;
}
.eventos .eventos-eventos{
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    text-align: center;
}
.eventos .eventos-eventos .evento{
    background: #ffffff;
    width: 250px;
    border-radius: 10px;
    padding: 10px;
    margin: 5px;
    display: flex;
    flex-basis: 250px;
    flex-direction: column;
    text-align: left;
    position: relative;
    box-shadow: 5px 5px 10px 2px #cccccc;
    margin-bottom: 50px;
}

.eventos .eventos-eventos .evento img{
    width: 250px;
    height: 200px;
    border-radius: 10px;
}
.eventos .eventos-eventos .evento h1{
    margin: 0;
    font-size: 1.2em;
    color: orangered;
    width: 100%;
}
.eventos .eventos-eventos .evento h2, h3, h4{
    margin: 0;
    margin-top: 10px;
    font-size: 0.9em;
    color: #333333;
    width: 100%;
}
.eventos .eventos-eventos .evento i{
    color: orangered;
    width: 20px;
    text-align: center;
}
.eventos .eventos-eventos .evento p{
    margin: 0;
    margin-top: 10px;
    font-size: 0.8em;
    color: #333333;
    width: 100%;
}
.eventos .eventos-eventos .evento .evento-infos div{
    width: 100%;
    text-align: center;
}
.eventos .eventos-eventos .evento .btn-inscricao{
    width: 100%;
    color: #f1f1f1;
    margin-top: 50px;
    background-color: orangered;
    padding: 10px 10px;
    border-radius: 100px;
    margin-bottom: 20px;
    font-size: 0.8em;
    border: 2px solid orangered;
    transition: 0.3s;
}
.eventos .eventos-eventos .evento .btn-inscricao:hover{
    border: 2px solid orangered;
    background: transparent;
    color: orangered;
    padding: 10px 15px;
}
.eventos .eventos-eventos .evento .btn_encerrado{
    opacity: 0.4;
}
.eventos .eventos-eventos .evento .icone-evento{
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255,255,255,0.7);
    color: #333333 !important;
    padding: 5px;
    border-radius: 100px;
    cursor: pointer;
}

.eventos .eventos-eventos .contatos{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    flex-grow: 1;
    width: 100%;
}
.eventos .eventos-eventos .contatos .dados form{
    display: flex;
    flex-wrap: wrap;
}
.eventos .eventos-eventos .contatos .dados form .separador{
    width: 100%;
}
.eventos .eventos-eventos .contatos .dados form div{
    flex-grow: 1;
    margin: 5px;
}
.eventos .eventos-eventos .contatos .dados form div p{
    width: 100%;
    text-align: left;
    margin-bottom: 0;
    color: #666666;
    padding-left: 5px;
    box-sizing: border-box;
}
.eventos .eventos-eventos .contatos .dados form div input{
    width: 100%;
    text-align: left;
    height: 40px;
    border: 1px solid #cccccc;
    border-radius: 10px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    outline: none;
}
.eventos .eventos-eventos .contatos .dados form div textarea{
    width: 100%;
    text-align: left;
    border: 1px solid #cccccc;
    border-radius: 10px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
.eventos .eventos-eventos .contatos .dados form div input[type=submit]{
    width: 200px;
    text-align: center;
    cursor: pointer;
    background-color: orangered;
    color: #ffffff;
    border-radius: 100px;
    border: 2px solid orangered;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}
.eventos .eventos-eventos .contatos .dados form div input[type=submit]:hover{
    width: 220px;
    background-color: transparent;
    color: orangered;
    border-radius: 100px;
    border: 2px solid orangered;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}









.action-sobre .dados{
    margin: 0 auto;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
}
.action-sobre .dados div{
    display: flex;
    background: #eeeeee;
    margin: 5px;
    flex-basis: 200px;
    flex-grow: 1;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.action-sobre .dados div i{
    width: 100%;
    text-align: center;
    margin-top: 20px;
    font-size: 2em;
    color: orangered;
}
.action-sobre .dados div a{
    color: #333333;
}









.transicao{
    height: 150px;
    background-image: linear-gradient(#f1f1f1, #ffffff);
}









.action-sobre{
    background: #ffffff;
    padding: 100px 0;
}
.action-sobre .sobre{
    width: 90%;
    margin: 0 auto;
    text-align: center;
}
.action-sobre .sobre h1{
    color: orangered;
}
.action-sobre .sobre p{
    color: #333333;
}









.separador2{
    height: 100px;
    width: 100%;
    background-image: url(../img/separador2.png);
    background-size: cover;
    background-position: center center;
}









.action-evento{
    background-color: orangered;
    background-image: url(../img/action.png);
    background-size: cover;
    background-position: center;
}
.action-evento .evento-principal{
    width: 90%;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    padding: 40px 0;
}
.action-evento .evento-principal h1{
    margin: 0;
    font-size: 2em;
}
.action-evento .evento-principal h2{
    margin: 0;
    font-size: 1em;
}
.action-evento .evento-principal h3{
    margin: 0;
    font-size: 1em;
    color: #ffffff;
    margin-bottom: 40px
}
.action-evento .evento-principal a{
    color: orangered;
    padding: 10px 20px;
    border-radius: 100px;
    border: 2px solid #ffffff;
    background: #ffffff;
    font-weight: 700;
    transition: 0.3s;
}
.action-evento .evento-principal a:hover{
    color: #ffffff;
    padding: 10px 40px;
    background: transparent;
    
}
.action-evento .evento-principal .btn_encerrado{
    opacity: 0.4;
}







.separador3{
    height: 100px;
    width: 100%;
    background-image: url(../img/separador3.png);
    background-size: cover;
    background-position: center center;
    transform: rotate(180deg);
}









footer{
    background-image: linear-gradient(rgba(0,0,0,1), rgba(30,30,30,1));
    padding: 60px 0;
}
.footer-footer{
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
.footer-footer .footer-logo, .footer-menu, .footer-social{
    display: flex;
    flex-grow: 1;
    padding: 5px;
    flex-basis: 250px;
    margin-bottom: 15px;
    margin-top: 15px;
}
.footer-footer .footer-logo{
    width: 100%;
    justify-content: center;
}
.footer-footer .footer-logo img{
    width: 150px;
    height: 128px;
}
.footer-footer .footer-menu{
    flex-direction: column;
}
.footer-footer .footer-menu a{
    margin: 5px 0;
    color: #ffffff;
    width: 200px;
    transition: 0.3s;
}
.footer-footer .footer-menu a:hover{
    margin: 5px 5px;
    color: orangered;
}
.footer-footer .footer-social{
    flex-direction: row;
    color: orangered;
    justify-content: space-around;
}
.footer-footer .footer-social i{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border-radius: 100px;
    font-size: 1.5em;
    border: 2px solid #ffffff;
    transition: 0.3s;
}
.footer-footer .footer-social i:hover{
    background: transparent;
    border: 2px solid #ffffff;
}
.footer-rodape{
    color: #ffffff;
    margin: 0 auto;
    width: 90%;
    text-align: center;
    padding-top: 60px;
    font-size: 0.8em;
}
.footer-rodape i{
    color: orangered;
    margin: 0 5px;
}
.footer-rodape a{
    color: orangered;
    transition: 0.3s;
}
.footer-rodape a:hover{
    color: #ffffff;
}








.eventos .vereve{
    width: 96%;
    margin: 0 auto;
    max-width: 1100px;
    padding-top: 30px;
    margin-top: -100px
}
.eventos .vereve .verbanner img{
    width: 100%;
    height: auto;
    border-radius: 10px;    
    box-shadow: 00px 0px 30px -10px #000000;    
}

.eventos .vereve .verconteudo{
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-image: linear-gradient(#ffffff, #f1f1f1);
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    
}
.eventos .vereve .verconteudo .conteudo{
    width: 70%;
    padding: 10px;
    box-sizing: border-box;
}
.eventos .vereve .verconteudo .conteudo spam{
    padding: 8px;
    margin-right: 10px;
    font-size: 0.7em;
    background: #cccccc;
    border-radius: 100px;
}
.eventos .vereve .verconteudo .conteudo h2{
    width: 100%;
    color: orangered;
}
.eventos .vereve .verconteudo .conteudo div{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.eventos .vereve .verconteudo .conteudo i{
    background: orangered;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px
}
.eventos .vereve .verconteudo .inscricao{
    width: 30%;
    padding: 10px;
    padding-top: 30px;
    box-sizing: border-box;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    background: orangered;
    border-radius: 10px;
}
@media (max-width: 768px) {
    .eventos .vereve .verconteudo .conteudo,
    .eventos .vereve .verconteudo .inscricao {
        width: 100%;
    }
}









.eventos .vereve .verconteudo .inscricao a{
    width: 80%;
    display: flex;
    background: #ffffff;
    color: orangered;
    justify-content: center;
    padding: 10px 0;
    border: 2px solid #ffffff;
    border-radius: 100px;
    transition: 0.3s;
}
.eventos .vereve .verconteudo .inscricao a i{
    margin-right: 10px;
}
.eventos .vereve .verconteudo .inscricao a:hover{
    background: transparent;
    color: #ffffff;
    justify-content: center;
    padding: 10px 0;
    border: 2px solid #ffffff;
    border-radius: 100px;
}
.eventos .vereve .verconteudo .inscricao h3{
    margin-bottom: 10px;
    color: #f1f1f1;
}
.eventos .vereve .verconteudo .inscricao .linknormal{
    background-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    padding: 10px 0;
    border: none;
}
.eventos .vereve .verconteudo .inscricao .linknormal:hover{
    background-color: rgba(255,255,255,0.4);
    color: #333333;
    padding: 10px 0;
    border: none;
}















