@charset "UTF-8";
* {
  margin: 0;
  padding: 0; }

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
input, select, textarea, button,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  box-sizing: border-box;
  font-size: 100%;
  font: inherit;
  outline: none;
  vertical-align: baseline;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

button:focus, a:focus {
  outline: none; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, iframe {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none;
  margin-bottom: 0; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

strong {
  font-weight: bold; }

em {
  font-style: italic; }

/* Geral */
body {
  background: #1e1e1e;
  color: #fff;
  font: 16px/1.45 "Open Sans", sans-serif;
  font-weight: 300;
  margin-top: 90px;
  text-align: left; }

a {
  color: #fff;
  cursor: pointer;
  -o-transition: 0.3s ease-out;
  -ms-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden; }
  a:hover {
    color: inherit;
    text-decoration: none; }

.texto a {
  color: #f58a33;
  text-decoration: underline; }
  .texto a:hover {
    text-decoration: underline; }
.texto p {
  margin-bottom: 1rem; }
  .texto p > strong {
    font-weight: 700; }
  .texto p > em {
    font-style: italic; }
.texto ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem; }
.texto ul li {
  list-style: disc outside;
  text-align: left; }

.redes-sociais {
  align-items: center;
  display: flex;
  justify-content: flex-start; }
  .redes-sociais li {
    margin-left: .75rem; }

/* Titulos */
h1, h2, h3, h4, h5, h6 {
  color: #fff;
  cursor: default;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  line-height: 1.1;
  padding: 2rem 0 1rem; }

h1, .h1 {
  font-size: 2.2em;
  font-weight: 700; }

h2, .h2 {
  font-size: 1.8em; }

h3, .h3 {
  font-size: 1.6em; }

h4, .h4 {
  font-size: 1.4em; }

h5, .h5 {
  font-size: 1.2em; }

h6, .h6 {
  font-size: 1.1em; }

/* Botões */
.btn {
  border: 1px solid transparent;
  font-size: .95em;
  font-weight: 700;
  padding: .25rem 1.5rem .35rem;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  -o-transition: 0.3s ease-out;
  -ms-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 4px 5px rgba(0, 0, 0, 0);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0); }
  .btn:hover {
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.35); }
  .btn.btn-primary {
    border-color: #f58a33;
    background-color: #f58a33;
    color: #fff; }
    .btn.btn-primary:hover {
      background-color: #323232;
      border-color: #323232; }

/* Formularios */
form .form-group {
  margin-bottom: .75rem; }
form .form-control {
  background: #fff;
  border-color: #808080;
  color: #1e1e1e;
  font-size: 1em;
  height: auto;
  padding: .25rem 1rem .35rem;
  border-radius: 8px; }
form label {
  color: #fff;
  font-size: 0.9em;
  font-weight: 700;
  margin-bottom: 0.25rem; }
form .custom-select.is-invalid,
form .form-control.is-invalid,
form .was-validated .custom-select:invalid,
form .was-validated .form-control:invalid {
  background: #ffefef; }

/* Menu */
nav.navbar {
  background: #1e1e1e;
  padding: 0;
  -o-transition: 0.2s ease-out;
  -ms-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden; }
  nav.navbar .navbar-top {
    height: 120px;
    overflow-y: hidden; }
  nav.navbar .navbar-brand {
    position: relative; }
    nav.navbar .navbar-brand img {
      width: 174px;
      -o-transition: 0.2s ease-out;
      -ms-transition: 0.2s ease-out;
      -moz-transition: 0.2s ease-out;
      -webkit-transition: 0.2s ease-out;
      transition: 0.2s ease-out;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden; }
    nav.navbar .navbar-brand:before {
      background: rgba(255, 255, 255, 0.35);
      border-radius: 50%;
      box-shadow: 0 0 50px 10px rgba(255, 255, 255, 0.6);
      content: '';
      height: 45%;
      left: 10%;
      position: absolute;
      top: 27.5%;
      width: 80%;
      z-index: -1; }
  nav.navbar .navbar-toggler {
    padding: .25rem .5rem; }
    nav.navbar .navbar-toggler svg rect {
      fill: #f58a33; }
  nav.navbar .navbar-icon-close {
    align-self: flex-end;
    background: transparent;
    color: #1e1e1e;
    display: block;
    font-size: 2.4em;
    font-weight: 400;
    line-height: 0.7;
    margin: .5rem 0 auto;
    padding: 0 .75rem; }
  nav.navbar .nav-link {
    font-size: .95em;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase; }
    nav.navbar .nav-link:hover {
      color: #f58a33; }
  nav.navbar a svg path {
    fill: #fff;
    -o-transition: 0.3s ease-out;
    -ms-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden; }
  nav.navbar a:hover svg path {
    fill: #f58a33; }
  nav.navbar .btn-primary {
    color: #000;
    margin: 0 .75rem;
    padding: .75rem;
    text-transform: uppercase; }
    nav.navbar .btn-primary:hover {
      background: #f58a33;
      border-color: #f58a33;
      color: #fff;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); }
  nav.navbar .form-busca {
    color: #1e1e1e; }
    nav.navbar .form-busca form {
      align-items: center;
      border-left: 1px solid #808080;
      border-right: 1px solid #808080;
      display: flex;
      justify-content: space-between;
      margin: 0 auto;
      max-width: 680px;
      padding: 0 1rem;
      position: relative;
      width: 100%; }
      nav.navbar .form-busca form input {
        font-size: 1.2em;
        position: relative;
        width: 100%; }
      nav.navbar .form-busca form button {
        background: transparent;
        font-weight: 700;
        font-size: .9em;
        padding: .25rem .5rem;
        position: relative;
        -o-transition: 0.3s ease-out;
        -ms-transition: 0.3s ease-out;
        -moz-transition: 0.3s ease-out;
        -webkit-transition: 0.3s ease-out;
        transition: 0.3s ease-out;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden; }
        nav.navbar .form-busca form button:hover {
          background: #f58a33; }
      nav.navbar .form-busca form:before {
        border-bottom: 35px solid #fff;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        bottom: 0;
        content: '';
        height: 1px;
        position: absolute;
        right: 61px;
        width: 1px;
        -o-transition: 0.1s ease-out;
        -ms-transition: 0.1s ease-out;
        -moz-transition: 0.1s ease-out;
        -webkit-transition: 0.1s ease-out;
        transition: 0.1s ease-out;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden; }
    nav.navbar .form-busca.show form:before {
      bottom: 90%; }
  nav.navbar.mini {
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.3); }
    nav.navbar.mini .navbar-top {
      height: 60px; }
    nav.navbar.mini .navbar-brand img {
      width: 100px; }
    nav.navbar.mini .form-busca.show form:before {
      bottom: 60%; }

/* Rodape */
footer .logo img {
  width: 144px; }
footer a:hover {
  text-decoration: underline; }
footer .top-footer {
  background: #323232;
  color: #fff;
  padding: 2rem 0; }
  footer .top-footer .mapa ul, footer .top-footer .endereco {
    font-size: 0.8em; }
  footer .top-footer h5 {
    border-bottom: 1px solid #fff;
    color: #fff;
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 1rem;
    padding: 0 0 .5rem; }
  footer .top-footer a:not(:hover) {
    color: #fff; }
  footer .top-footer .mapa ul {
    columns: 2;
    max-width: 300px; }
footer .creditos {
  background: #fff;
  font-size: .9em;
  font-weight: 400;
  padding: .75rem 0;
  color: #1e1e1e; }
  footer .creditos a:not(:hover) {
    color: #1e1e1e; }

/* Elementos de Layout */
.page-title {
  background: #505050;
  padding: 2rem 0; }
  .page-title h1 {
    padding: 0; }

.grid .item {
  background: #505050;
  border-radius: 8px;
  display: block;
  max-width: 280px;
  margin: 1rem 0;
  overflow: hidden;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4); }
  .grid .item .titulo {
    align-items: center;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: .9em;
    font-weight: 700;
    min-height: 56px;
    line-height: 1.1;
    padding: .5rem 1.5rem;
    text-transform: uppercase;
    -o-transition: 0.3s ease-out;
    -ms-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden; }
  .grid .item .subtitulo {
    display: block;
    font-size: 0.7em;
    margin-top: .25rem;
    text-transform: none; }
  .grid .item:hover {
    background: #f58a33;
    -webkit-box-shadow: 0 0 15px #000;
    -moz-box-shadow: 0 0 15px #000;
    box-shadow: 0 0 15px #000; }
    .grid .item:hover h2 {
      color: #505050; }
.grid .border-right {
  border-right-color: #505050 !important; }

/* Nossos Serviços */
.nossos-servicos {
  background: #f58a33; }
  .nossos-servicos .item {
    border-radius: 8px;
    margin: 0 auto 3rem;
    max-width: 350px;
    overflow: hidden;
    position: relative; }
    .nossos-servicos .item h3 {
      background: rgba(0, 0, 0, 0.7);
      bottom: 0;
      margin: 0;
      padding: 1.75rem;
      position: absolute;
      width: 100%; }

/* Atalhos */
.atalhos a {
  background: transparent;
  border-radius: 8px;
  height: 100%;
  padding: 1rem; }
  .atalhos a h3 {
    cursor: pointer;
    font-size: 1.7em; }
  .atalhos a:hover {
    background: #191919; }

/* Home */
.home-qualidade {
  margin-top: -90px;
  position: relative;
  z-index: 1; }
  .home-qualidade h2 {
    color: #f58a33; }
  .home-qualidade p {
    font-size: 1.2em; }

.home-banner .imagem {
  height: 30vw;
  min-height: 250px;
  background-position: center;
  background-size: cover; }

/* Contato */
.contato .formulario {
  background: #505050;
  border-radius: 8px; }
  .contato .formulario .btn {
    min-width: 135px; }
.contato .redes-sociais li {
  margin: 0 1rem 1rem 0; }

/* MOBILE */
@media (max-width: 576px) {
  nav.navbar .form-busca form {
    border: none;
    padding: 0; }
    nav.navbar .form-busca form input {
      font-size: 1em; }

  .grid .item {
    margin-left: auto;
    margin-right: auto; }
    .grid .item .titulo {
      padding: .5rem .75rem; } }
@media (max-width: 992px) {
  nav.navbar {
    font-size: 1.2em; }
    nav.navbar .navbar-top {
      height: 90px; }
    nav.navbar .navbar-header {
      width: 100%; }
    nav.navbar .navbar-brand img {
      width: 140px; }
    nav.navbar .navbar-collapse {
      align-items: center;
      background: #f58a33;
      display: flex;
      flex-direction: column;
      height: 100vh;
      justify-content: center;
      left: 0;
      padding: 1rem;
      position: fixed;
      text-align: center;
      top: 0;
      width: 100vw;
      -o-transition: 0.2s ease-out;
      -ms-transition: 0.2s ease-out;
      -moz-transition: 0.2s ease-out;
      -webkit-transition: 0.2s ease-out;
      transition: 0.2s ease-out;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden; }
      nav.navbar .navbar-collapse:not(.show) {
        left: 105%; }
    nav.navbar .nav-link {
      color: #1e1e1e;
      text-align: center; }
    nav.navbar .btn-primary {
      background: #1e1e1e;
      border-color: #1e1e1e;
      color: #f58a33;
      margin: 2rem 0 3rem; }
    nav.navbar.mini .navbar-top {
      height: 50px; }
    nav.navbar.mini .navbar-brand img {
      width: 80px; }

  footer .mapa {
    margin: 2rem 0; }

  .page-title h1 {
    text-align: center; }

  .home-banner .carousel-caption {
    right: 40%; }

  .galeria .grid h2 {
    font-size: 1.4em;
    padding-bottom: .25rem; } }
/* DESKTOP */
@media (min-width: 768px) {
  nav.navbar .form-busca.show form:before {
    bottom: 100%; }

  footer .top-footer .container {
    display: flex;
    justify-content: space-between; }
    footer .top-footer .container .logo {
      align-self: center; }
    footer .top-footer .container .contatos {
      width: 75%; } }
@media (min-width: 992px) {
  body {
    margin-top: 120px; }

  nav.navbar.navbar-expand-lg .navbar-nav {
    align-items: center; }
    nav.navbar.navbar-expand-lg .navbar-nav .nav-link {
      padding-left: 1rem;
      padding-right: 1rem; }
    nav.navbar.navbar-expand-lg .navbar-nav .btn-primary {
      margin-left: 1rem; }
  nav.navbar .navbar-collapse {
    justify-content: flex-end; }
  nav.navbar .form-busca form:before {
    right: 96px; }

  footer .top-footer .container .contatos {
    width: 80%; } }
@media (min-width: 1200px) {
  nav.navbar .form-busca form:before {
    right: 6px; }

  footer .top-footer .container .contatos {
    width: 83%; } }
