@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@200;300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Readex Pro', sans-serif;
}

.container{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
}

.titulos{
    width: 100%;
    text-align: center;
}

.titulos h2{
    font-size: 32px;
    font-weight: 400;
    color: #43D317;
}

.titulos h2 span{
    font-weight: 700;
    font-size: 48px;
    color: #4C1473;
}

html{
    scroll-behavior: smooth;
}

body{
    background-color: #f3f3f3;
}

button{
    transition: .2s;
}

button:hover{
    transform: scale(1.05);
}

/* ESTILO DO CABEÇALHO */

header{
    width: 100%;
    height: auto;
    padding: 15px 2%;
    box-shadow: 2px 2px 7px 0px #00000043;
    z-index: 99999;
    position: sticky;
    top: 0;
    left: 0;
    backdrop-filter: blur(60px);
    background-color: #ffffffb4;
}

.ajuste-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logotipo{
    width: 20%;
}

.logo-mob{
    display: none;
}

.logotipo img{
    width: 60%;
    max-width: 280px;
}

.menu-desk{
    width: 80%;
    text-align: right;
}

.menu-desk nav a{
    color: #51BB30;
    font-weight: 400;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 18px;
    transition: .2s;
}

.menu-desk nav a:hover{
    color: #00385F;
}

/* ESTILO DO MENU MOBILE */

.menu-mobile{
    width: 100%;
    height: 0;
    background-color: #4b1473;
    position: fixed;
    top: 107px;
    left: 0;
    visibility: hidden;
    transition: .5s ;
    overflow: hidden;
    z-index: 88888;
}

.menu-mobile nav a{
    display: block;
    text-align: center;
    text-decoration: none;
    color: #fff;
    padding: 40px 15px;
    font-size: 22px;
    font-weight: 300;
    transition: .2s;
}

.menu-mobile nav a:hover{
    background-color: #51BB30;
    color: #fff;
    transform: scale(1.05);
}

#btn-menu{
    background: transparent;
    width: 40px;
    height: 40px;
    outline: none;
    cursor: pointer;
    border: 0;
    transition: .2s;
    display: none;
    position: relative;
    top:3%;
    right: 0;
    margin-right: 20px;
}

.linha{
    position: relative;
    top: 3px;
    height: 4px;
    background: #51BB30;
    width: 40px;
    display: block;
    margin: 8px auto;
    transform-origin: center;
    transition: .2s;
    border-radius: 20px;
} 

#btn-menu.ativo .linha:nth-child(1){
    transform: translateY(12px) rotate(-45deg);
    background-color: #00385F;
}

#btn-menu.ativo .linha:nth-child(3){
    transform: translateY(-12px) rotate(45deg);
    background-color: #00385F;
}

#btn-menu.ativo .linha:nth-child(2){
    width: 0;
}

/* ESTILO DO SLIDER */

.slider-mobile{
    display: none;
}

.slider-desktop{
    display: block;
}

section.slider{
    margin: 0 auto;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.slide-content{
    width: 400%;
    height: auto;
    display: flex;
}

.slide-content input{
    display: none;
}

.slide-box{
    width: 25%;
    height: auto;
    position: relative;
    transition: 1s;
    text-align: center;
}

.slide-box img{
    width: 100%;
}

.nav-manual,.nav-auto{
    position: absolute;
    width: 100%;
    margin-top: 27.5%;
    display: flex;
    justify-content: center;
}

.nav-manual .manual-btn{
    border: 1px solid #51BB30;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: .2s;
}

.nav-manual .manual-btn:not(:last-child){
    margin-right: 10px;
}

.nav-manual .manual-btn:hover{
    background-color: #51BB30;
}

#radio1:checked ~ .primeiro{
    margin-left: 0;
}

#radio2:checked ~ .primeiro{
    margin-left: -25%;
}

#radio3:checked ~ .primeiro{
    margin-left: -50%;
}

.nav-auto div{
    border: 1px solid #51BB30;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: .2s;
}

.nav-auto div:not(:last-child){
    margin-right: 10px;
}

#radio1:checked ~ .nav-auto .auto-btn1{
    background-color: #51BB30;
}

#radio2:checked ~ .nav-auto .auto-btn2{
    background-color: #51BB30;
}

#radio3:checked ~ .nav-auto .auto-btn3{
    background-color: #51BB30;
}

/* FIM DO ESTILO DO SLIDE */

/* ESTILO DA SESSÃO EVENTO */
section.evento{
    padding: 80px 0;
}
/* FIM DO ESTILO DA SESSÃO EVENTO */


/* ESTILO DO CONTADOR REGRESSIVO */

article.countdown{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.count-content{
    margin: 0 10px;
    text-align: center;
}

.count-box{
    width: 165px;
    background-color: #43D317;
    box-shadow: 0px 2px 10px #0000004c;
    padding: 25px;
    font-size: 90px;
    font-weight: 700;
    color: #fff;
    border-radius: 10px;
}

#dia-box{
    width: 100%;
}

.count-content span{
    font-size: 22px;
    font-weight: 400;
    color: #00385F;
    margin-top: 10px;
    display: block;
}

/* FIM DO CONTADOR REGRESSIVO */

/* ESTILO DO SOBRE O EVENTO */

section.sobre-evento{
    padding: 80px 0;
    box-shadow: 0px 0px 8px 8px #00000017;
    background-color: #FFF;
}

.ajuste-sobre-evento{
    display: flex;
    align-items: center;
}

/* .sobre-evento-box img{
    visibility: hidden;
} */

.sobre-evento-box, .ingressos-box, .patrocinador-box{
    width: 50%;
}

.sobre-evento-box img, .ingressos-box img, .patrocinador-box img{
    width: 90%;
    border-radius: 10px;
}

.sobre-evento-box h3, .ingressos-box h3, .patrocinador-box h3{
    font-size: 32px;
    color: #4b1473;
    margin-bottom: 40px;
}

.sobre-evento-box p, .ingressos-box p, .patrocinador-box p{
    margin-bottom: 20px;
    font-size: 18px;
}

.sobre-evento-box i{
    color: #43D317;
    font-size: 35px;
    margin-right: 20px;
}

.sobre-evento-box:nth-of-type(2){
    text-align: center;
}

.sobre-evento-box a{
    margin-top: 30px;
    display: inline-block;
    color: #4C1473;
    font-size: 20px;
}

/* FIM DO ESTILO DO SOBRE O EVENTO */

/* ESTILO DO INGRESSOS */
section.ingressos{
    padding: 80px 0;
}

.ingressos-box button, .patrocinador-box button{
    padding: 15px 40px;
    background-color: #43D317;
    color: #fff;
    border: 0;
    font-size: 24px;
    border-radius: 30px;
    cursor: pointer;
}

.ingressos-box button:hover{
    background-color: #4b1473;
}

.ingressos-box p{
    margin-bottom: 40px;
}
/* FIM ESTILO DO INGRESSOS */

/* ESTILO DO PATROCINIO */
section.patrocinador{
    background-color: #4b1473;
    overflow: hidden;
}

.patrocinador h3{
    color: #43D317;
}

.patrocinador p{
    color: #fff;
}

.patrocinador button:hover{
    background-color: #fff;
    color: #4b1473;
}

.patrocinador .patrocinador-box img{
    position: relative;
    animation-name: flutua;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes flutua {
    0%{
        top: 40px;
    }
    100%{
        top: 0px;
    }
}
/* FIM DO ESTILO DO PATROCINIO */

/* ESTILO DO APOIO E EXPOSITORES */
section.apoio{
    padding: 80px 0;
    box-shadow: 0px 0px 8px 8px #00000017;
    background-color: #FFF;
}

.apoio .title-apoio{
    margin-bottom: 40px;
    color: #4b1473;
    font-size: 38px;
    text-align: center;
}

.img-apoio{
    display: flex;
    align-items: center;
    justify-content: center;
}
/* FIM ESTILO DO APOIO E EXPOSITORES */

/* ESTILO DO FOOTER */
footer{
    background-color: #4b1473;
    width: 100%;
    padding: 50px 0;
}

footer .line-up{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    padding-bottom: 20px;
}

.line-up .logo-footer{
    width: 25%;
}

.line-up .logo-footer img{
    width: 60%;
}

.line-up .contatos-footer p{
    margin-bottom: 10px;
}

.line-up .contatos-footer i{
    font-size: 25px;
    margin-right: 15px;
}

.menu-footer a{
    display: block;
    color: #fff;
    margin-bottom: 15px;
}

.redes-foooter button{
    background-color: #43D317;
    font-size: 30px;
    color: #FFF;
    padding: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
}

footer .line-down{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 0 0;
    border-top: 2px solid #fff;
}

footer .line-down p{
    color: #fff;
}
/* FIM DO ESTILO DO FOOTER */

@media screen and (max-width: 980px) {
    .desk{
        display: none;
    }

    .mobile{
        display: block;
    }

    .titulos{
        width: 100%;
        text-align: center;
    }
    
    .titulos h2{
        font-size: 22px;
        font-weight: 400;
        color: #43D317;
        letter-spacing: 1px;
        line-height: 30px;
    }
    
    .titulos h2 span{
        font-weight: 700;
        font-size: 34px;
        color: #4C1473;
        letter-spacing: -2px;
    }

    /* ESTILO DO CABEÇALHO */
    header{
        background-color: #FFF;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999999999;
    }
    .menu-desk{
        display: none;
    }

    .logo-desk{
        display: none;
    }
    .logo-mob{
        display: block;
    }

    .logotipo{
        width: 25%;
    }

    .logotipo img{
        width: 70%;
        min-width: 120px;
        max-width: 320px;
    }

    #btn-menu{
        display: block;
    }

    .menu-mobile.abrir{
        visibility: visible;
        height: calc(100vh - 107px);
    }
    /* RESPONSIVO DO SLIDER */
    .slider-desktop{
        display: none;
    }

    .slider-mobile{
        display: block;
    }

    section.slider{
        padding-top:93px;
    }

    .nav-manual, .nav-auto{
        margin-top: 105%;
    }

     /* ESTILO DO CONTADOR REGRESSIVO */

     article.countdown{
        margin-top: 40px;
    }

    .count-content{
        margin: 0 5px;
        text-align: center;
    }

    .count-box{
        width: 70px;
        padding: 10px;
        font-size: 40px;
    }

    .count-content span{
        font-size: 18px;
        margin-top: 5px;
    }

    /* FIM DA SEÇÃO DO CONTADOR REGRESSIVO */

    /* ESTILO DO SOBRE O EVENTO */

    section.sobre-evento{
        padding: 80px 5%;
    }

    .ajuste-sobre-evento{
        flex-direction: column;
    }

    .sobre-evento-box, .ingressos-box, .patrocinador-box{
        width: 100%;
    }

    .sobre-evento-box h3, .ingressos-box h3, .patrocinador-box h3{
        text-align: center;
    }

    .sobre-evento-box p, .ingressos-box p, .patrocinador-box p{
        font-size: 18px;
    }

    .sobre-evento-box a{
        margin-bottom: 60px;
    }

    /* FIM DO ESTILO DO SOBRE O EVENTO */

    /* ESTILO DO INGRESSOS */
    section.ingressos{
        padding: 80px 5%;
    }

    .ingressos-box{
        text-align: center;
    }

    .ingressos-box h3{
        margin-top: 30px;
    }

    /* FIM ESTILO DO INGRESSOS */

    /* ESTILO DO PATROCINIO */
    section.patrocinador{
        text-align: center;
        padding: 80px 5%;
    }
    /* FIM DO ESTILO DO PATROCINIO */

    /* ESTILO DO APOIO E EXPOSITORES */
    section.apoio{
        padding: 80px 5%;
    }

    .img-apoio{
        flex-direction: column;
    }
    /* FIM ESTILO DO APOIO E EXPOSITORES */

    /* ESTILO DO FOOTER */
    footer{
        padding: 50px 5%;
    }

    footer .line-up{
        flex-direction: column;
    }

    .line-up .logo-footer{
        width: 100%;
        text-align: center;
    }

    .line-up .logo-footer img{
        width: 40%;
        margin-bottom: 40px;
    }

    .line-up .contatos-footer{
        margin-bottom: 40px;
    }

    .menu-footer{
        width: 100%;
        text-align: center;
    }

    .menu-footer a{
        margin-bottom: 35px;
    }

    footer .line-down{
        width: 100%;
        flex-direction: column;
        text-align: center;
    }

    footer .line-down p{
        margin-bottom: 40px;
    }
    /* FIM DO ESTILO DO FOOTER */
}