*{
    box-sizing: border-box;
    list-style: none;
    font-size: 20px;
    font-family: "Monteserrat", sans-serif;
}
body{
    margin: 0;
    color: white;
    
}

.navbar{
    height: 150px;
    background: #021c2c;
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: fixed;
}

.logo{
    margin-left: 10%;
    flex:20%; 
    text-align: left;
}
.logo h1{
    font-size: 40px;
    padding: 10px ;
    color: #ff6400;
    border-radius: 10px;
    font-family: "Bebas Neue", sans-serif ;
    letter-spacing: 15px;
    border: 2px solid white;
}
.menu{
    flex: 60%;
    justify-content: center;
    align-content: center;
    text-align: right;
    padding: 20px;
    margin-right: 10%;
    
}

.menu a{
    color: white;
    font-weight: 500;
    text-decoration: none;
    padding: 5px 15px;
    transition: 0.3s ease;
    width: 100%;
    
}

.menu a:hover{
    color: #ff6400;
    border-bottom: 4px solid green;
}

#botao{
    background-color: skyblue;
    padding: 20px 25px;
    border-radius: 20px;
    margin-right: 2%;
    margin-left: 5%;
    transition: 0.3s ease;
    text-transform: uppercase;
}
#botao:hover{
    border: none;
    background: #ff6400;
    color:white;
}

.header{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    background: white;
    padding-top: 200px;
    
}

.headline{
    margin-left: 10%;
    flex: 40%;
    border: 1px solid #021c2c;
    
}

.headline h2{
    font-size: 80px;
    color: #021c2c;
    word-spacing: 20px;
    padding: 0;
    margin: 0;
}
.headline p{
    font-size: 20px;
    font-weight: 700;
    color: #021c2c;
    padding: 0;
    text-align: justify;
}
.btn-orcamento{
    display: inline-block;
    background: skyblue;
    border: none;
    padding: 20px;
    color:#021c2c;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 20px;
}
.btn-orcamento:hover{
    border: none;
    background: #ff6400;
    color:white;
}

.img-headline{
    margin-right:  10%;
    flex: 40%;
    text-align: center;
    
}

.img-headline img{
    max-width: 90%;  
    max-height: 90%; 
    border-radius: 20px;
    
}

section{
    margin-top: 80px;
    margin-left: 0%;
    margin-right: 0%;
    display: inline block;
    text-align: center;
    padding: 0%;
    border-top: 3px solid #021c2c;
}
section h2{
    padding-top: 20px;
    width:100%;
    font-size:50px;
    margin:0;
    font-weight: bold;
    color: #021c2c;
    
}

.servicos{
    display: inline-block;
    margin-top: 2%;
    
}

.card{
    display: inline-block;
    width: 30%;
    padding:15px 30px;
    margin:1%;
    font-size: 5px;
    border: 1px solid #ff6400;
    border-radius: 10px;
    color:#021c2c;
    text-align: justify;
    
}
.card:hover{
    color: white;
    background:#021c2c;
    border: 0px;
    padding:40px;
}

footer{
    margin-top: 100px;
    height: 400px;
    background: #021c2c;
    text-align: center;
    font-size: 30px;
    border-top:2px solid #ff6400;
}

.logo-rodape h1{
    font-size: 40px;
    padding: 10px ;
    color: #ff6400;
    border-radius: 10px;
}

.whats{
    position: fixed;
    bottom: 50px;
    right: 50px;
}