:root {
  --main-color: #2e2d41;
  --secondary-color: #c8b291;
  --secondary-black: #000063;
  --secondary-gray: #eeeeee;
  --secondary-red: #ff0000;
  --secondary-orange: #dc8432;
  --gradient-1:linear-gradient(-45deg, rgba(255,222,0,1), rgba(0,114,38,1));
}
html {
  font-family: 'Inter', sans-serif;
}
/* Base */
body {
  line-height: 1.7;
  color: gray;
  font-weight: 300;
  font-size: 1.1rem; 
  background-image: url('../img/hero_1.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;  
}
h1, h2 {
  font-weight: 900;
  color: var(--secondary-color);
}
.btn-primary {
  background-color:var(--main-color);
  border:none;
  font-weight: 700;
}
.btn-primary:hover {
  background-color:var(--secondary-color);
  border:none;
}

::-moz-selection {
  background: #000;
  color: #fff; }

::selection {
  background: #000;
  color: #fff; }

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  a:hover {
    text-decoration: none; }

.border-2 {
  border-width: 2px;
}

.text-black {
  color: #000 !important; }

.bg-black {
  background: #000 !important; }

.color-black-opacity-5 {
  color: rgba(0, 0, 0, 0.5); }

.color-white-opacity-5 {
  color: rgba(255, 255, 255, 0.5);
}
  .hero {
    position: relative;
    background: url(../img/bg-top.jpg);
    background-size: cover;
    background-position: center;
  }
  
  .hero h1 {
    font-size: 70px;
    font-weight: 800;
    margin: 0;
    color:white;
    padding: 0;
  }
  .hero p {
    padding: 0;
    margin: 1em 0 0 0;
    font-weight: 400;
    color:white;
    font-size: 1.25em;
    line-height: 1em;
  }

  .servicos h3 {
    font-weight:700;
    line-height: 1em;
    color:var(--main-color)
  }
  .servicos hr {
    border:solid 3px var(--secondary-color);
  }
  .ctaBox {
    background-color:#eeeeee;
  }