@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');


*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body{
    font-family: 'Inter', sans-serif;
    background-color: #172644;
}
a{
    text-decoration: none;
    color: inherit;
}
.headline{
    font-family:'Libre Baskerville', serif;
    font-size: 2.2rem;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    padding: 25px 0;
    letter-spacing: 1.1px
}
.mainmenubtn{
    display: none;
}
.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;
}
/*cabeçalho*/

#navbar{   
    width: 100%;
    background: #0C1A34;
    color:#eee;
    height: 90px;
    position: fixed;
}
#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;
    
}
#navbar-items li{
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 500;
    
}
#navbar-items li :hover{
    text-decoration: underline;
}

#burguer{
    display:none;
}

/*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{
    text-align: center;
}

#showcase-container h2{
    font-family:'Libre Baskerville', serif;
    font-size: 5rem;
    font-weight: 400;
}
#showcase-container p{
    font-family: 'Libre Baskerville', serif;
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    padding: 30px 0px 80px;
}

/*sobre*/
#about{
    max-width: 1350px;
    box-shadow: 2px 2px 14px 4px rgba(0, 0, 0, 0.7);
    margin:0px auto 0px;
    width: 100%;
    background: #e0e1e4;
    color: black;
}
#features-container{
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.feature{
    display: flex;
    flex-direction: column;
    background: #d5d7dd;   
}
.feature-img{
    display: flex;
    flex-direction: column;
    background: #e0e1e4;
    width: auto;
}
.feature h2{
    font-family: 'Libre Baskerville', serif;
    font-size: 2.1rem;
    font-weight: 600;
    padding: 10px 0px;

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

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

.benefits-items p{
    font-size: 1.2rem;
    padding-top: 20px; 
    text-align: center;
    
    
}
.not-benefits{
    font-size: 1.5rem;
    padding: 30px 40px; 
    text-align: center;
    width: 100%;
}


/*Como começar*/
.menuText p{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    text-align: center;
    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%;
    margin: auto;
}
#menu-conta{
    text-align: center;
    justify-content: center;
    width: 60%;
}
#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{
    text-align: center;
    justify-content: center;
    margin: auto;
    
}
.exemplo-container{
    display: grid;
    grid-template-columns: repeat(1, 1fr) ;
    justify-items: center;
    padding: 30px;
    background-color: #d1d3d642;
    width: 80%;
    align-items: center;
    margin: auto;
  
}

.exemplo img{
    max-width: 50%;
    box-shadow: 2px 3px 2px 1px rgba(0, 0, 0, 0.2);
    padding-top: 10px;
}
.exemplo p{
    font-family: 'Libre Baskerville', serif;
    margin: 10px auto;
    text-align: center;
    font-size: 1.1rem;
    width: 70%;
}
.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;
}






/*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.8rem;
    padding: 15px 0 10px 0;
}


