/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 18/06/2021, 08:17:01
    Author     : Lucio
*/

/*VARIÁVEIS*/
:root{
    --header-color:#dfe3e9;
    --h1-color:#392e4a;
    --h2-color:#392e4a;
    --btn-dark-bg:rgba(23,26,32,0.8);
    --btn-light-bg:rgba(255,255,255,0.65);
    --btn-dark-color:#FFF;
    --btn-light-color:#000;
}




@font-face {
     font-family: bitsumishi;
     src: url(../fonts/BITSUMIS.TTF);
     
     font-family: aldo;
     src: url(../fonts/Aldo_PC.ttf);
     
     font-family: arimo;
     src: url(../fonts/Arimo-Regular.ttf);
     
     font-family: GothamMedium;
     src: url(../fonts/GothamMedium.otf);
     
     font-family: GothamBook;
     src: url(../fonts/GothamBookRegular.otf);
         
}

body{
    margin:0;
    font-family: 'GothamMedium', Helvetica, Arial;
    font-size: 14px;
    
}

/*HEADER*/
header{
    display: flex;
    justify-content: space-between;
    /*justify-content: space-around;*/
    align-items: center;
    height: 50px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
}

header ul, header li{
    list-style: none;
}

header .logo{
    width: 100px;
    margin-left: 50px;
    margin-top: 50px;
}

header .middle ul{
    display: flex;
    
}

header .middle li{
    margin: 0 10px;
}

header .middle a{
    text-decoration: none;
    color: var(--header-color);
    text-transform: uppercase;
}

header .rigthside ul{
    display: flex;
}

header .rigthside li{
    margin: 0 10px;
}

header .rigthside a{
    text-decoration: none;
    color: var(--header-color);
    text-transform: uppercase;
}

header .menu--icon{
    width: 18px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    cursor: pointer;
}

header .menu--icon div{
    height: 2px;
    background-color: var(--header-color);
}

/*MAIN*/

main{
    background-image: url(../images/banner2.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

main .info{
    height: 45vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

main h1{
    margin: 0;
    font-size: 80px;
    font-weight: 600;
    color: var(--h1-color);
}

main h2{
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    color: var(--h2-color);
    font-family: GothamBook, Helvetica, Arial;
}

main h2 a{
    color: var(--h1-color);
}

/*FOOTER*/
footer{
    position: fixed;
    left:0;
    bottom: 30px;
    right: 0;
}

footer .buttons--area{
    display: flex;
    justify-content: center;
   
    
}

footer .buttons--area a{
    display: block;
    width: 220px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    padding: 15px;
    border-radius: 30px;
    margin:0 10px;
}

footer .btn--dark{
background-color: var(--btn-dark-bg);    
color:var(--btn-dark-color);
}

footer .btn--ligth{
background-color: var(--btn-light-bg);    
color:var(--btn-light-color);
    
}

footer .arrow--area{
    display: flex;
    justify-content: center;
    margin-top: 30px;
    height: 30px;
}

@keyframes arrow{
    0%{
        margin-top:0px;
    }
    50%{
        margin-top:15px;
    }
    
    100%{
        margin-top:0px;
    }
}
footer .arrow{
    height: 15px;
    animation-name: arrow;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

/*MEDIA QUERYS*/

@media(max-width:1200px){
    header .middle{
        display: none;
    }
    header .rigthside li{
        display: none;
    }
    
    header .rigthside li.menu{
        display: block;
        margin-right: 20px;
    }
}

@media(max-width:600px){
    footer .buttons--area{
        flex-direction: column;
        align-items: center;
    }
    
    footer .buttons--area a{
        margin: 10px 20px;
        width: calc(100vw-60px);
    }
}
