/* Extra large devices (large laptops and desktops, 1200px and down) */
/* Extra large devices (large laptops and desktops, 1200px and down) */
/* Large devices (laptops/desktops, 992px and down) */
/* Medium devices (landscape tablets, 768px and down) */
/* Small devices (portrait tablets and large phones, 600px and down) */
/* Extra small devices (phones, 360px and down) */
html {
  box-sizing: border-box;
  height: 100%;
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  box-sizing: border-box;
  font-size: 1.25rem;
  background-color: #000000;
}
@media only screen and (max-width: 768px) {
  body {
    width: 100vw;
    overflow-x: hidden;
  }
}

.container {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #ffffff;
}

.logo {
  width: 100%;
  height: auto;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #252320;
}
.logo img {
  width: auto;
  height: 60px;
}

.hero {
  position: relative;
  width: 100%;
  height: 41vw;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #252320;
  background-image: url("../images/header-bg.jpg");
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .hero {
    display: none;
  }
}
.hero__texto {
  width: 50%;
  height: auto;
  margin-right: 50%;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding-left: 100px;
}
.hero__texto h1 {
  font-size: 5rem;
  font-weight: 700;
  color: #ecc452;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}
.hero__texto h2 {
  font-size: 4rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 30px 0;
  padding: 0;
}
.hero__texto h3 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #ffffff;
  margin: 30px 0 0 0;
  padding: 0 0 0 200px;
}

.hero-mobile {
  position: relative;
  width: 100%;
  height: 200vw;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #252320;
  background-image: url("../images/header-bg-mobile.jpg");
  background-size: cover;
  display: none;
}
@media only screen and (max-width: 768px) {
  .hero-mobile {
    display: flex;
  }
}
.hero-mobile__texto {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
}
.hero-mobile__texto h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ecc452;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.5);
}
.hero-mobile__texto h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 20px 0;
  padding: 0;
}
.hero-mobile__texto h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  margin: 20px 0 0 0;
}

.cta {
  position: absolute;
  width: auto;
  height: auto;
  bottom: 40px;
}
.cta a {
  display: block;
  font-family: "Montserrat", sans-serif;
  background-color: #ecc452;
  color: #252320;
  font-weight: 700;
  padding: 14px 20px;
  border: none;
  text-transform: uppercase;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .cta a {
    font-size: 1.25rem;
  }
}
.cta a:hover {
  background-color: #ffffff;
  color: #252320;
}

.clientes {
  width: 100%;
  height: auto;
  background-color: #ecc452;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.clientes h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #252320;
  margin: 0 0 40px 0;
  padding: 0 20px;
  text-transform: uppercase;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .clientes h2 {
    font-size: 1.5rem;
    font-weight: 800;
  }
}
.clientes__logos {
  width: 100%;
  height: auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 20px;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .clientes__logos {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(8, 1fr);
  }
}
.clientes__logos img {
  width: 100%;
  height: auto;
}

.depoimentos {
  width: 100%;
  height: auto;
  background-color: #252320;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .depoimentos {
    padding: 40px 20px;
  }
}
.depoimentos h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ecc452;
  margin: 0 0 40px 0;
  padding: 0;
  text-transform: uppercase;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .depoimentos h2 {
    font-size: 1.5rem;
    font-weight: 800;
  }
}
.depoimentos p {
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 10px 0;
  padding: 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .depoimentos p {
    font-size: 1.25rem;
  }
}
.depoimentos__modulos {
  width: 100%;
  height: auto;
  padding: 0 5%;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-gap: 50px;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .depoimentos__modulos {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(9, 1fr);
    grid-gap: 20px;
  }
}
.depoimentos__modulo {
  width: 100%;
  height: auto;
  background-color: #ffffff;
}
.depoimentos__titulo {
  width: 100%;
  height: 100px;
  background-color: #ecc452;
  font-weight: 700;
  padding: 0 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #252320;
}
@media only screen and (max-width: 768px) {
  .depoimentos__titulo {
    font-size: 1.25rem;
    height: auto;
    padding: 20px;
  }
}
.depoimentos__texto {
  width: 100%;
  height: 400px;
  font-weight: 500;
  padding: 40px;
  text-align: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.5rem;
  color: #252320;
}
@media only screen and (max-width: 768px) {
  .depoimentos__texto {
    font-size: 1.25rem;
    height: auto;
    padding: 20px;
  }
}
.depoimentos__texto p {
  margin: 0;
  padding: 0;
  color: #252320;
}
.depoimentos__cta {
  width: 100%;
  height: 100px;
  padding: 0 40px 0 60px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.depoimentos a {
  display: block;
  font-family: "Montserrat", sans-serif;
  background-color: #ecc452;
  color: #252320;
  font-weight: 700;
  padding: 14px 20px;
  border: none;
  text-transform: uppercase;
  font-size: 1.52rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.depoimentos a:hover {
  background-color: #ffffff;
  color: #252320;
}

.sobre {
  width: 100%;
  height: auto;
  background-color: #ecc452;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .sobre {
    padding: 40px 20px;
  }
}
.sobre h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #252320;
  margin: 0 0 40px 0;
  padding: 0;
  text-transform: uppercase;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .sobre h2 {
    font-size: 1.5rem;
    font-weight: 800;
  }
}
.sobre__info {
  width: 100%;
  height: auto;
  padding: 0 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .sobre__info {
    flex-direction: column;
    padding: 0;
  }
}
.sobre__foto {
  width: 40%;
  height: auto;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .sobre__foto {
    width: 100%;
    padding: 0;
  }
}
.sobre__foto img {
  width: 100%;
  height: auto;
}
.sobre__texto {
  width: 60%;
  height: auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .sobre__texto {
    width: 100%;
    padding: 0;
  }
}
.sobre__texto p {
  font-size: 1.5rem;
  font-weight: 400;
  color: #252320;
  margin: 0 0 20px 0;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .sobre__texto p {
    font-size: 1.25rem;
    margin: 20px 0 10px 0;
  }
}
.sobre__social {
  width: 100%;
  height: auto;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sobre__redes {
  width: 100%;
  height: auto;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sobre__redes img {
  width: 60px;
  height: auto;
  margin: 0 40px;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .sobre__redes img {
    width: 50px;
    margin: 0 20px;
  }
}
.sobre__redes a:hover {
  opacity: 0.5;
}

.contato {
  width: 100%;
  height: auto;
  padding: 40px 0;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .contato {
    padding: 40px 20px;
  }
}
.contato h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #252320;
  margin: 0 0 40px 0;
  padding: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .contato h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 20px 0;
  }
}
@media only screen and (max-width: 768px) {
  .contato p {
    font-size: 1.25rem;
    text-align: center;
  }
}

.footer {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #252320;
}
@media only screen and (max-width: 768px) {
  .footer {
    padding: 20px;
    flex-direction: column;
  }
}
.footer__logo {
  width: 50%;
  height: auto;
  padding: 20px 0 20px 100px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .footer__logo {
    width: 100%;
    padding: 20px 0;
    justify-content: center;
  }
}
.footer__logo img {
  width: auto;
  height: 60px;
}
.footer__copyright {
  width: 50%;
  height: auto;
  padding: 20px 100px 20px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .footer__copyright {
    width: 100%;
    padding: 20px 0;
    justify-content: center;
    text-align: center;
  }
}

.destaque {
  font-weight: 600;
  color: #ecc452;
}

.bold {
  font-weight: 700;
  display: inline;
}/*# sourceMappingURL=estilo.css.map */