*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    /* background-color: #e3e3e3; */
    /* background: linear-gradient(to bottom right,#0b9bb8, #191970); */
}

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

header .btn-contact button, .hero-site button, .invite button{
    font-size: 18px;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    cursor: pointer;
    transition: 0.5s;
}

header .btn-contact button:hover, .hero-site button:hover, .invite button:hover{
    background-color: white;
    color: black;

}

/* Style of header*/
header{
    width: 100%;
    padding: 40px 0;
    position: fixed;
    top: 0;
    left: 0;

    transition: 0.5s;
    z-index: 999;
}

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

header .logo img{
    max-width: 200px;
}

header.rolar{
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 0 8px black;
}

header.rolar .menu-desktop nav ul li a{
    color: black;
}

header.rolar .btn-contact button{
    border: 1px solid black;
    color: black;
}

/* Style of menu mobile */
header .btn-menu-mobile{
    display: none;
    position: relative;
    z-index: 999;
}

header .btn-menu-mobile div{ 
    background-color: white;
    height: 3px;
    margin: 10px 0;
    transition: 0.2s;
}

header .btn-menu-mobile .line-menu-mobile-1{
    width: 30px;
}

header .btn-menu-mobile .line-menu-mobile-2{
    width: 20px;
}

header.rolar .btn-menu-mobile div{
    background-color: black;
}

header .btn-menu-mobile .line-menu-mobile-1.ativo1{
    transform: rotate(45deg) translate(30%);
    background-color: white;
}

header .btn-menu-mobile .line-menu-mobile-2.ativo2{
    transform: rotate(-45deg) translate(30%);
    width: 30px;
    background-color: white;
}

/* Style of menu mobile*/

header .menu-mobile{
    width: 0;
    height: 0;
    background-color: black;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    transition: 0.5s;
}

header .menu-mobile nav{
    width: 100%;
}

header .menu-mobile nav ul{
    list-style-type: none;
}

header .menu-mobile nav a{
    font-size: 24px;
    text-decoration: none;
    color: white;
    padding: 20px 0;
    display: block;
    transition: 0.5s;
}

header .menu-mobile nav a:hover{
    background-color: white;
    color: black;
    box-shadow: 0 0 20px white;
}

header .menu-mobile.abrir{
    width: 100%;
    height: 100vh;
}

body.no-over-flow{
    overflow: hidden;
}

header.rolar .btn-contact button:hover{
    background-color: black;
    color: white;
}

header.rolar .logo .logo1{
    display: none;
}

header.rolar .logo .logo2{
    display: block;
}

/* Sytle of dinamic menu*/

header .logo img.logo2{
    display: none;
}

/* End Sytle of dinamic menu*/

header .menu-desktop nav ul{
    list-style-type: none;
}

header .menu-desktop nav ul li{
    display: inline-block;
    margin: 0 40px;
}

header .menu-desktop nav ul li a{
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
}

header .menu-desktop nav ul li a:hover{
    transform: scale(1.05);
}

header .btn-contact button{
    width: 140px;
    height: 50px;
}

/* Style of hero */
section.hero-site{
    height: 98vh;
    background: linear-gradient(to bottom right,#0b9bb8, #191970);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-site .interface{
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-site .txt-hero h1{
    font-size: 4em;
    line-height: 70px;
    font-weight: 200;
}

.hero-site .txt-hero h1 span{
    display: block;
    font-weight: 800;
}

.hero-site .txt-hero p{
    font-size: 20px;
    font-weight: 300;
    margin: 20px 0;
}

.hero-site .txt-hero p span{
    display: block;
}

.hero-site button{
    width: 220px;
    height: 60px;
    font-size: 20px;
}

/* Style of about*/
section.about-site{
    background: #e3e3e3;
    padding: 80px 0;
}

.about-site .itens-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10%;
    margin-bottom: 60px;
}

.about-site .itens-container .img-itens img{
    max-width: 250px;
}

.about-site .itens-container .txt-itens h3{
    font-size: 3em;
    line-height: 50px;
    margin-bottom: 20px;
}

.about-site .itens-container .txt-itens h3 span{
    font-weight: 200;
}

/* Style of faq*/
section.faq{
    background: #e3e3e3;
    padding: 80px 0;
}

.faq .itens-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10%;
    margin-bottom: 60px;
}

.faq .itens-container .img-itens img{
    max-width: 250px;
}

.faq .itens-container .txt-itens h3{
    font-size: 3em;
    line-height: 50px;
    margin-bottom: 20px;
}

.faq .itens-container .txt-itens h3 span{
    font-weight: 200;
}

/* Style of buttons plane*/
section.plane{
    background: white;
    padding: 80px 0;
    
}

.txt-plane, .icons-plane{
    display: inline-block;
    width: 50%;
    margin-right: -4px;
    vertical-align: middle;
}

.plane .txt-plane h3{
    font-size: 2.5em;
    line-height: 50px; 
    font-weight: 300;
    margin-bottom: 20px; 
}

.plane .txt-plane h3 span{
    display: block;
    font-weight: 700;
}

.plane .icons-plane a{
    text-decoration: none;
}

.plane .icons-plane button{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60%;
    height: 60px;
    margin: 0 auto 20px auto;
    padding: 0 60px;
    background: transparent;
    border: 2px solid black;
    cursor: pointer;
    transition: 0.5s;
}

.plane .icons-plane_old button{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60%;
    height: 60px;
    margin: 0 auto 20px auto;
    padding: 0 60px;
    background: transparent;
    border: 2px solid red;
    cursor: pointer;
    transition: 0.5s;
}

.plane .icons-plane button i{
    font-size: 20px;
}

.plane .icons-plane button:hover{
    background-color: black;
}

.plane .icons-plane button:hover i, .plane .icons-plane button:hover p{
    color: white;
}

/* Style of invite*/

section.invite{
    /* background: #e3e3e3; */
    height: 600px;
    background-image: url(../images/img-fundo.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    color: white;
    text-align: center;
}

.invite > .overlay{
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.777);
    width: 100%;
    height: 100%;   
    z-index: 1;
}

.invite > .interface{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    z-index: 2;
    position: relative;
}

.invite h3{
    font-size: 3em;
    line-height: 50px;
    font-weight: 200;
}

.invite h3 span{
    display: block;
    font-weight: 600;
}

.invite p{
    margin: 20px 0;
    font-size: 20px;
    font-weight: 300;
}

.invite button{
    width: 220px;
    height: 60px;
}

/* Style of howto*/

section.howto{
    background: #e3e3e3;
    padding: 80px 0;
}

.txt-howto, .instructions{
    display: inline-block;
    width: 50%;
    margin-right: -4px;
    vertical-align: top;
}

.howto .txt-howto{
    position: sticky;
    top: 50%;
    padding-bottom: 10%;
}

.howto .txt-howto h3{
    font-size: 4em;
    line-height: 60px;
    font-weight: 300;
}

.howto .txt-howto h3 span{
    display: block;
    font-weight: 700;
}

.instructions .instructions-box{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    border: 2px solid black;
    padding: 20px;
}

.instructions .instructions-box img{
    max-width: 100px;
}

.instructions .instructions-box h4{
    font-size: 1.5em;
    font-weight: 800;
    margin-bottom: 10px;
}

.instructions .instructions-box h4 span{
    font-weight: 300;
}

.instructions .instructions-box p{
    line-height: 20px;
}

/* Style of footer*/

footer{
    background-color: black;
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

footer .top-footer button{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
    color: white;
    font-size: 24px;
    cursor: pointer;
    margin: 0 10px;
    transition: 0.5s;
}

footer .top-footer button:hover{
    background-color: white;
    color: black;
}

footer .middle-footer{
    margin: 20px 0;
} 

footer .middle-footer a{
    color: white;
    margin: 0 15px;
}

footer .bottom-footer{
    border-top: 2px solid white;
}

footer .bottom-footer p{
    color: white;
    margin-top: 10px;
}

/* Styke of form */

section.sigin{
    width: 100%;
    min-height: 100vh;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sigin .container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    width: 400px;
    max-width: 100%;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sigin .header {
    background-color: #e3e3e3;
    padding: 20px;
}

.sigin .form {
    padding: 20px;
}

.sigin .form-control {
    margin-bottom: 10px;
    padding-bottom: 20px;
    position: relative;
}

.sigin .form-control label {
    display: inline-block;
    margin-bottom: 5px;
}

.sigin .form-control input{
    border: 2px solid #e3e3e3;
    display: block;
    border-radius: 10px;
    font-size: 14px;
    width: 100%;
    padding: 10px;
}

.sigin .form-control i{
    position: absolute;
    top: 45px;
    right: 10px;
    visibility: hidden;
}

.sigin .form-control small{
    position: absolute;
    bottom: 0;
    left: 0;
    visibility: hidden;
}

.sigin .form button{
    background-color: black;
    border: 2px solid e3e3e3;
    color: white;
    font-size: 14px;
    width: 100%;
    border-radius: 10px;
    padding: 10px;
}

.sigin .mensagem p{
    font-weight: bold; 
    color: green;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sigin .form button:hover{
    background-color: white;
    color: black;
}

/* Style of error and success */

.sigin .form-control.success input {
    border-color: green;
}

.sigin .form-control.error input {
    border-color: red;
}

.sigin .form-control.success i.fa-check-circle {
    color: green;
    visibility: visible;
}

.sigin .form-control.error i.fa-exclamation-circle {
    color: red;
    visibility: visible;
}

.sigin .form-control.error small {
    color: red;
    visibility: visible;
}

