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

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital@0;1&display=swap');



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: 0;
}

body{
    font-family: 'Inter', sans-serif;;
    background-color: #0c1a37;
}
a{
    text-decoration: none;
    color: inherit;
}
.headline{
    font-family:'Libre Baskerville', serif;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    padding: 15px 0;
    letter-spacing: 1.1px
}

/*cabeçalho*/

#navbar{
    height: 130px; 
}
#navbar-container{
    width: 80%;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#navbar-items{
    display: flex;
    list-style: none;
    text-transform: uppercase;
    padding: 8px;
    display: block;
}

#navbar-items li{
    font-size: 2.2rem;
    transition: 0.3s;
    font-family: 'Libre Baskerville', serif;
    padding: 20px;
}

#navbar-items li :hover, #navbar-items li :focus{
    color: rgb(158, 159, 161);
    background-color: #363535;
    text-decoration: none;
    padding: 20px;

}

#navbar-container{
    padding: 10px 0;
}

/*menu*/
.overlay{
    width: 0;
    height: 100%;
    background-color: #03112bf5;
    color: #bdbec2;
    z-index: 9;
    position: fixed;
    left: 0;
    top: 0;
    overflow-x: hidden;
    transition: all 0.8s;
}
.overlay-content{
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.material-symbols-outlined{
    width: 40px;
}
.close{
    position: absolute;
    top: 35px;
    right: 70px;
    
}

#burguer{
    
    border-radius: 4px;
    background-color: rgb(53, 80, 105);
    display: block;
    padding: 8px;
    margin: 8px;
    cursor: pointer;
}
#burguer:hover{
    background-color: white;
    color: black;
}

/*capa*/

#showcase{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #eef1f5;
    background-image: url(/img/capa.jpg);
    background-size: cover;
    background-attachment: fixed ;
    background-position: right center;
    background-color: rgba(0,0,0,0.4);
    background-blend-mode: color;
}

#showcase-container{
    padding: 40px;
    text-align: center;
}

#showcase-container h2{
    font-family:'Libre Baskerville', serif;
    font-size: 3rem;
    font-weight: 600;
}
#showcase-container p{
    font-family: 'Libre Baskerville', serif;
    font-size: 1.5rem;
    font-weight: 100;
    font-style: italic;
    padding: 25px 0px 60px;
}
/*botão*/

.btn{
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    display: inline-block;
    padding: 15px 50px;
    font-size: 1.5rem;
    text-transform: uppercase;
    background: #0C1A34;
    color: #eee;
    border-radius: 5px;
    transition: background 500ms ease;
}
.btn:hover{
    cursor: pointer;
    background: #29354D;
}

/*sobre*/

#about{
    max-width: 750px;
    box-shadow: 2px 2px 14px 4px rgba(0, 0, 0, 0.7);
    margin:0px auto 0px;
    background: #e0e1e4;
    color: black;
}
.feature-img{
    display: flex;
    flex-direction: column;
    background: #e0e1e4;
    max-width: 100%;
}
.feature{
    display: flex;
    flex-direction: column;
    background: #d5d7dd;  
    padding: 0 8px; 
}
.feature h2{
    font-family: 'Libre Baskerville', serif;
    font-size: 2rem;
    font-weight: 600;
    padding: 10px 0px;

}
.feature p{
    font-size: 1rem;
    font-weight: 400;
    text-align: justify;
    padding: 10px 0px;
}
.feature-title{
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    font-style: italic;
}

/*Para quem é*/
#who-is{
    width: 100%;
    background: #e0e1e4;
    color: #000000;
    padding: 20px;
}
.img{
    width: 80%;
    margin: auto;
    padding: 20px 10px;
    text-align: center;
    justify-content: center;
}
.who-is-container{
    display: grid;
    grid-template-columns: repeat(1, 1fr) ;
    justify-items: center;
}
.benefits {
    display: inline-block;
    width: 90%;
    box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
}
.benefits-items p{
    font-size: 1.2rem;
    padding-top: 20px; 
    text-align: center;
}
.not-benefits{
    font-size: 1.2rem;
    text-align: center;
    width: 100%;
}
#who-is-not{
    display: grid;
    grid-template-columns: repeat(1, 1fr) ;
    justify-items: center;
    width: 100%;
    background: #e0e1e4;
    color: #000000;
}
#who-is-not p{
    font-size: 1.2rem;
    padding-top: 10px; 
    text-align: center;
}

/*Como começar*/
.menuText p{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    text-align: justify;
    padding: 25px;
}
.menuText h2{
    font-family:'Libre Baskerville', serif;
    font-size: 1.4rem;
    font-weight: 500;
    background-color: #29354d64;
    padding: 10px;
}
#conta{
    text-align: center;
    justify-content: center;
    width: 100%;
}
#menu-conta{
    text-align: center;
    justify-content: center;
    max-width: 90%;
}
#start{
    background-color: #e0e1e4;
}
#step{
    max-width: 90%;
    margin: auto;
    font-size: 1.5rem;
    text-align: center;
}
#step h2{
    padding-top: 50px ;
}

.warning{
    font-weight: 500;
    padding: 50px;
    text-transform: uppercase;
    font-size: 1.1rem;
    
}
.step-description a{
    text-decoration: underline;
}
.step-description a:hover{
    background-color: #99999b38;
}
.step-description {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.3rem;
    font-weight: 400;
    padding: 30px;
    text-align: center;
    
}
.exemplo-container{
    display: grid;
    grid-template-columns: repeat(1, 1fr) ;
    justify-items: center;
    padding: 30px;
    background-color: #d1d3d642;
}

.exemplo img{
    max-width: 100%;
    box-shadow: 2px 3px 2px 1px rgba(0, 0, 0, 0.2);
    padding-top: 10px;
}
.exemplo p{
    font-family: 'Libre Baskerville', serif;
    margin: auto;
    text-align: justify;
    font-size: 1.1rem;
}
.exemplo-container-btn{
    background-color: #d1d3d642;
    font-family: 'Inter', sans-serif;
    padding: 25px;
    text-transform: lowercase;
    border-radius: 5px;
    transition: background 500ms ease;
    margin: auto;
}

/*mostrar e esconder menu*/

.general-step{
    width: 0;
    height: 100%;
    background-color: #dddbdb;
    z-index: 9;
    position: fixed;
    left: 0;
    top: 0;
    overflow-x: hidden;
    transition: all 0.5s;
    padding-top: 60px;
    text-align: center;
    
}
.menuText{
    display: inline;
    text-align: center;
}
#burguerText{
    color: #dddbdb;
    border-radius: 4px;
    background-color: rgb(4, 37, 68);
    padding: 8px;
    margin: 8px;
    cursor: pointer;
}
#burguer:hover{
    background-color: white;
    color: black;
}
#step1{
    padding-top: 50px;
}
/*Contato*/
#contact{
    width: 100%;
    background: #0C1A34;
    color: #eee;
    padding: 5px;
}
#contact p{
    color: #eee;
    font-size: 1.2rem;
    text-align: center;
    padding: 0 10px;
}
.contact-item{
    width: 100%;
    padding: 20px;
    font-size: 1.5rem;
    text-align: center;
    
}
.qrcode{
    padding-top: 10px;
}


/*footer*/
#footer{
    background:#0c1a34d8 ;
    color: #eee;
    padding-bottom: 8px;
    text-align: center;
}
.assinatura{
    font-size: 0.6rem;
    padding-top: 20px;
}



