/* ESTILO GERAL */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.flex{
    display: flex;
}

body{
    background-color: black;
    height: 100vh; 
}

.interface{
    max-width: 1280px;
    margin: 0 auto;
}

.btn-contato button{
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 600;
    background-color: chartreuse;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: .2s;
}

button:hover, form .btn-enviar input:hover{
    box-shadow: 0px 0px 8px rgba(128, 255, 0, 0.801);
    transform: scale(1.05);
}

h2.title{
    color:aliceblue;
    font-size: 38px;
    text-align: center;
    margin-top: 90px;
}

h2.title span{
    color:chartreuse;
}


/* ESTILO DO HEADER CABEÇALHO */

header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1000000000000;
    background-color: rgba(0, 0, 0, 0.884);
}

header .interface.menu-desktop{
    width: 100%;
    background-color: rgb(0, 0, 0);
}

header > .interface{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header a{
    color: rgb(138, 138, 138);
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
}

header nav.menu-desktop a:hover{
    color: white;
    transform: scale(1.05);
}

header nav ul{
    list-style-type: none;
}

header nav.menu-desktop ul li{
    display: inline-block;
    padding: 0 40px;
}

/*ESTILO DO MENU MOBILE*/

.btn-abrir-menu i{
    color:#00ff00;
    font-size: 40px;
}

.menu-mobile{
    background-color: black;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    width: 0%;
    overflow: hidden;
    transition: .5s;
}

.menu-mobile.menu-mobile-active{
    width: 70%;
}

.menu-mobile.menu-mobile-active ~ .overlay-menu{
    display: block;
}

.menu-mobile nav ul{
    text-align: right;
}

.menu-mobile nav ul li a{
    color:#fff;
    font-size: 20px;
    font-weight: 300;
    padding: 20px 8%;
    display: block;
}

.menu-mobile nav ul li a:hover{
    background-color: chartreuse;
    color: black;
}

.menu-mobile .btn-fechar{
    padding: 20px 5%;
    background-color: transparent;
}

.menu-mobile .btn-fechar i{
    color:#00ff00;
    font-size: 30px;
}

.overlay-menu{
    background-color: rgba(0, 0, 0, 0.637);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 88888;
    display: none;
}

/* ESTILO DO BANNER */

section.topo-do-site{
    padding: 140px 4%

}

section.topo-do-site .flex{
    align-items: center;
    justify-content: center;
    gap: 90px
}

.topo-do-site h1{
    color: white;
    font-size: 34px;
    font-family: poppins;
    line-height: 40px;
}

.topo-do-site .txt-topo-do-site h1 span{
    color: chartreuse;
}

.topo-do-site .txt-topo-do-site p{
    color: white;
    font-size: 18px;
    font-family: poppins;
    margin: 40px 0;
}

.topo-do-site .img-topo-do-site img{
    position: relative;
    animation: flutuar 2s ease-in-out infinite alternate;
}

@keyframes flutuar{
    0%{
        top: 0;
    }
    100%{
        top: 30px;
    }
}

/* ESTILO PALAVRAS DO PRESIDENTE*/

section.palavras-do-presidente{
    padding: 80px 4%;
}

section.palavra-do-presidente .interface{
    padding: 40px 0%;
}

section.palavra-do-presidente .flex{
    align-items: center;
    gap: 50px;
}

.palavra-do-presidente .txt-palavra-do-presidente{
    color:aliceblue;
    text-align: justify;

}

.palavra-do-presidente .txt-palavra-do-presidente h2{
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 30px;
}

.palavra-do-presidente .txt-palavra-do-presidente h2 span{
    color:chartreuse;
    display: block;
    
}

.palavra-do-presidente .txt-palavra-do-presidente p{
    margin: 20px 0;
    text-align: justify;

}

/* ESTILO SOBRE A PIB DE COARI */

section.sobre-pib-coari{
    padding: 120px 4%;
}

section.sobre-pib-coari .flex{
    align-items: center;
    gap: 60px;
}

.sobre-pib-coari .txt-sobre-pib-coari{
    color:aliceblue;
    text-align: justify;

}

.sobre-pib-coari .txt-sobre-pib-coari h2{
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 30px;
}

.sobre-pib-coari .txt-sobre-pib-coari h2 span{
    color:chartreuse;
    display: block;
    
}

.sobre .txt-sobre-pib-coari p{
    margin: 20px 0;
    text-align: justify;

}

/* ESTILO DO PORTIFOLIO*/

section.fotogaleria{
    padding: 35px 4%;
    box-shadow: 0 0 35px 10px #ffffff1c;
}

section.fotogaleria .flex{
    justify-content: space-around;

}
.img-port{
    width: 340px;
    height: 405px;
    background-size: cover;
    background-position: 100% 0;
    cursor: pointer;
    border-radius: 40px;
    position:relative
}

img-port hover{
    background-position: 100% 100%;
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000009f;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    text-decoration: none;
}

.overlay:hover{
    opacity: 1;
    transition: .5s;
}

.overlay a{
    color:#fff;
    text-decoration: none;
}

/*ESTILO FORMULARIO DE CONTATO*/

section.formulario{
    padding: 120px 4%;
}

form{
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
}

form input, form textarea{
    width: 100%;
    background-color: rgba(39, 39, 39, 0.836);
    border: 0;
    outline: 0;
    padding: 20px 15px;
    border-radius: 15px;
    color:#fff;
    font-size: 18px;
    font-family: poppins;
}

form textarea{
    resize: none;
    height: 200px;
}

form .btn-enviar{
    margin-top: 20px;
    text-align: center;   
}

form .btn-enviar input{
    width: 120px;
    background-color: chartreuse;
    color:black;
    font-weight: 700;
    cursor: pointer;
    transition: .2s
}

/* ESTILO DO RODAPE */

footer{
    padding: 40px 4%;
    box-shadow: 0 0 40px 10px #ffffff1c;
}

footer .flex{
    justify-content: space-between;
}

footer .line-footer{
    padding: 20px 0;
}

.borda{
    border-top: 3px solid chartreuse;
}

.btn-social button{
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: none;
        background-color: rgb(0, 255, 21);
        font-size: 23px;
        cursor: pointer;
        margin: 0 5px;
        transition: .2s;
}

footer .line-footer p i{
    color:#00ff00;
    font-size: 22px;
}

footer .line-footer p a{
    color:#fff;
    text-decoration: none;

}

footer .line-footer p{
    color:#fff;
    text-decoration: none;
    align-items: center;
    display: flex;
}

@media screen and (min-width: 768px){
    
    /*CABEÇALHO RESPONSIVO*/
    .btn-abrir-menu{
        display: none;
    }
}

@media screen and (max-width: 1245px){
     
    /*CLASSES GERAIS*/
    .flex{
        flex-direction: column;
    }

    .topo-do-site .flex{
        flex-direction: column-reverse;
       
    }

    .sobre-pib-coari .flex{
        flex-direction: column-reverse;
    }
    /*CABEÇALHO RESPONSIVO*/
    .menu-desktop, .btn-contato{
            display: none;
        }

    /*TOPO DO SITE*/
    section.topo-do-site .flex{
        gap: 40px;;
    }

    section.topo-do-site{
        padding: 20px 8%;
    }

    .topo-do-site h1{
        font-size: 30px;
    }

    .topo-do-site .img-topo-do-site img{
        width: 100%;
    }

    /*PALAVRA DO PRESIDENTE*/
    
    section.palavras-do-presidente{
        padding: 60px 50px;
    
    }
    
    section.palavra-do-presidente .flex{
        align-items: center;
        gap: 60px;
    }
    
    .palavra-do-presidente .txt-palavra-do-presidente{
        color:aliceblue;
        text-align: justify;
    
    }
    
    .palavra-do-presidente .txt-palavra-do-presidente h2{
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 30px;
    }
    
    .palavra-do-presidente .txt-palavra-do-presidente h2 span{
        color:chartreuse;
        display: block;
        
    }
    
    .palavra-do-presidente .txt-palavra-do-presidente p{
        padding: 20px 20px;
    }

    /* ESTILO SOBRE A PIB DE COARI */

    section.sobre-pib-coari{
        padding: 80px 4%;
    }

    section.sobre-pib-coari .flex{
        align-items: center;
        gap: 60px;
    }

    .sobre-pib-coari .txt-sobre-pib-coari{
        color:aliceblue;
        text-align: justify;

    }

    .sobre-pib-coari .txt-sobre-pib-coari h2{
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 30px;
    }

    .sobre-pib-coari .txt-sobre-pib-coari h2 span{
        color:chartreuse;
        display: block;
        
    }

    .sobre .txt-sobre-pib-coari p{
        margin: 20px 0;
        text-align: justify;

    }

    /* ESTILO DO PORTIFOLIO*/
    section.fotogaleria{
        padding: 80px 8%;
    }

    .img-port{
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    }

    section.fotogaleria .flex{
        gap: 60px;
    }

    /*ESTILO RODAPE*/

    footer .flex{
        flex-direction: column;
    }

    footer .line-footer{
        text-align: center;
    }
}