/* ==========================================================================
   Table of Contents
   ========================================================================== */
/*

    1. Font Face
    2. General
    3. Utilities
    4. Header
    5. Page Content
    6. Footer
    7. Third Party Elements
    8. Media Queries

 */
/* $variable: #b4b4c4; */
/* ==========================================================================
   1. Font Face - Sets up the website fonts
   ========================================================================== */
/*

@font-face {
  font-family: 'FontFamilyName';
  src: url('../../fonts/fontFolder/fontfile.eot');
  src: url('../../fonts/fontFolder/fontfile.eot') format('embedded-opentype'),
       url('../../fonts/fontFolder/fontfile.woff2') format('woff2'),
       url('../../fonts/fontFolder/fontfile.woff') format('woff'),
       url('../../fonts/fontFolder/fontfile.ttf') format('truetype'),
       url('../../fonts/fontFolder/fontfile.svg#FontFamilyName') format('svg');
}

*/
/* ==========================================================================
   2. General - Setting up some base styles
   ========================================================================== */
html,
body {
  height: 100%;
  margin: 0;
  font-family: "Montserrat", serif;
  overflow-x: hidden;
}

#wrapper {
  height: 100%;
  overflow: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-rendering: optimizeLegibility;
  line-height: 1;
  margin: 0;
}

p,
ul,
ol {
  margin: 0;
  padding: 0;
}

ol ol,
ul ul,
ul ol,
ol ul {
  margin: 0.4em 0;
}

a:hover,
a:focus,
a:visited,
a:active {
  text-decoration: none;
  color: inherit;
}

a[href],
input[type="submit"],
input[type="image"],
label[for],
select,
button {
  cursor: pointer;
  text-decoration: none;
}

input[type="text"],
textarea {
  display: inline-block;
}

.section {
  margin-top: 60px;
}

.loading {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 99999999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: black;
  color: white;
}

/* ==========================================================================
   3. Utilities - These things get used a lot
   ========================================================================== */
.clear-fix:after {
  content: "";
  display: block;
  clear: both;
}

tbody tr:nth-child(odd) {
  background-color: #ccc;
}

.left {
  float: left;
}

.right {
  float: right;
}

.center {
  text-align: center;
}

.hide {
  display: none;
}

.nopadding {
  padding: 0;
}

.mobile,
.tablet {
  display: none;
}

.nomobile,
.notablet {
  display: block;
}

@media (max-width: 992px) {
  .tablet {
    display: block;
  }

  .notablet {
    display: none;
  }
}
@media (max-width: 768px) {
  .mobile {
    display: block;
  }

  .nomobile {
    display: none;
  }
}
.thumb .thumb-img {
  height: 100%;
  width: 100%;
  background-size: cover !important;
}

.thumb img {
  display: none;
}

.the-content > * {
  margin-top: 0;
  margin-bottom: 0;
}

.the-content > * + * {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.the-content .alignleft {
  float: left;
  margin-right: 2em;
}

.the-content .alignright {
  float: right;
  margin-left: 2em;
}

.the-content .aligncenter {
  clear: both;
  display: block;
  margin: 0 auto;
}

/* ==========================================================================
   4. Header - The top of every page
   ========================================================================== */
/* MENU - TEMPLATE SHIT */
.navbar-brand a img,
.navbar-brand a svg {
  height: 60px;
  width: auto;
}

.navbar-brand .mobile a {
  line-height: 50px;
}

.navbar-collapse {
  justify-content: center;
}

.navbar-collapse li {
  float: left;
}

.navbar-collapse a {
  display: block;
  padding: 0 20px;
  line-height: 60px;
}

.navbar {
  color: #fff;
}

.primary-menu:after {
  content: "";
  display: block;
  clear: both;
}

#menu {
  padding: 20px 0;
}

/* MENU - CUSTOM */
#header {
  position: relative;
  z-index: 999;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.current-menu-item a::after {
  content: "";
  display: flex;
  height: 2px;
  width: 100%;
  background: #1bae70;
  justify-self: center;
}

header img {
  max-width: 200px;
}

#menu-principal a,
#menu-principal-1 a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.separador {
  border: 1px solid #fff;
  height: 20px;
  margin: 0px 20px 0px 30px;
}

.orcamento {
  background-color: #1bae70;
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  border-radius: 5px;
  display: inline-block;
  padding: 10px 30px;
}

.section-orcamento {
  color: #fff;
}

.section-orcamento .col-lg-4 {
  justify-self: center;
}

.social-links {
  display: flex;
  color: #fff;
}

.menu-home {
  background-color: transparent;
  z-index: 1;
}

.menu-internas {
  background-color: #313131;
  z-index: 1;
}

.social-links a {
  padding: 0px 20px 0px 0px;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
}

.menu-content a {
    display: block;
    color: #FFFFFF;
    margin: 15px 0;
    text-decoration: none;
    transition: color 0.3s;
}

.menu-content a:hover {
    color: #fff;
}

/* ==========================================================================
   5. Page Content - When you click on an individual page
   ========================================================================== */
.banner-home,
.banner-empreendimento {
  width: 100%;
  color: #fff;
  position: relative;
}

.banner-home img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.gradiente {
  background-image: linear-gradient(#00000054, black);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
  top: 0;
}

.box-home {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 25%;
  right: 25%;
  transform: translateY(-50%);
}

.box-single {
  position: absolute;
  text-align: center;
  top: 25%;
  margin-top: 150px;
  transform: translateY(-50%);
}

.banner-home .title {
  text-transform: uppercase;
}

.title,
.title-quem-banner {
  font-size: 36px;
  font-weight: 600;
  line-height: 52px;
  letter-spacing: 0.15em;
}

.title.portfolio::after {
  content: "";
  display: flex;
  height: 4px;
  width: 400px;
  background: #1bae70;
  justify-self: center;
}

.desc {
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
}

.desc-quem-banner {
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
}

.title-section {
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 0.15em;
}

.atuacao {
  background-color: #f3f3f3;
  padding: 50px 0px;
}

.box-atuacao {
  background-color: #fff;
  padding: 25px;
  height: 100%;
  align-content: center;
  border-radius: 5px;
}

.box-atuacao-mob {
  background-color: #fff;
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
}

.atuacao-img {
  width: 64px !important;
  height: 64px;
}

.owl-atuacao .owl-nav,
.owl-valores .owl-nav {
  display: flex;
  justify-content: space-between;
}

.item-portfolio {
  border-radius: 5px;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}

.portfolio-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  display: block;
  aspect-ratio: 4/5;
}

.item-portfolio:hover .portfolio-img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 174, 112, 0.65);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 5px;
}

.item-portfolio:hover .overlay {
  opacity: 1;
}

.portfolio-title {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  color: #fff;
  text-transform: uppercase;
}

.btn-saiba-mais {
  color: #313131;
  background-color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.1em;
  border-radius: 5px;
  /* border: 1px solid #313131; */
  display: flex;
  width: 200px;
  height: 50px;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

.box-btn-portfolio,
.box-btn-saiba {
  justify-items: center;
}

.btn-portfolio {
  color: #313131;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.1em;
  border-radius: 5px;
  border: 1px solid #313131;
  display: flex;
  width: 200px;
  height: 50px;
  justify-content: center;
  align-items: center;
  transition: 300ms all ease-in-out;
}

.btn-portfolio:hover,
.btn-saiba:hover {
  background-color: #1bae70;
  color: #fff;
  border: none;
}
.btn-saiba {
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.1em;
  border-radius: 5px;
  border: 1px solid #fff;
  display: flex;
  width: 200px;
  height: 50px;
  justify-content: center;
  align-items: center;
  transition: 300ms all ease-in-out;
}

.owl-carousel .owl-item img {
  display: block;
  height: auto;
  max-width: 85%;
  max-height: 85%;
}

.atuacao h4 {
  color: #1bae70;
  font-size: 15px;
  font-weight: 600;
  line-height: 25px;
}

.atuacao span {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.quem-somos-display {
  position: relative;
  overflow: hidden;
}

.quem-somos {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 70px 0px;
  color: #fff;
  position: relative;
}

.quem-somos img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-empreendimento img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  max-height: 600px;
  min-height: 350px;
}

.info-quem-somos {
  position: relative;
  z-index: 1;
}

.item-img {
  width: auto !important;
}

.fundo-branco {
  background-color: #fff;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
  margin: 15px 0;
}

.shadow {
  background-color: #000000;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 60%;
  top: 0;
}
.title-quem,
.title-politica {
  font-size: 22px;
  font-weight: 700;
  line-height: 35px;
}

.title-quem::after {
  content: "";
  height: 2px;
  width: 50px;
  background: #1bae70;
  position: absolute;
  top: 18px;
  left: 160px;
}

.title-politica::after {
  content: "";
  height: 2px;
  width: 50px;
  background: #1bae70;
  position: absolute;
  top: 18px;
  left: 75px;
}

.desc-quem {
  font-size: 30px;
  font-weight: 500;
  line-height: 40px;
}

.text-quem {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.numeros {
  align-items: center;
}

.numeros .col-lg-3.col-xl-2:last-child .number-box {
  border-right: none;
}

.title-num {
  font-size: 30px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.13em;
}

.desc-num {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.05em;
}

.span-num {
  font-size: 55px;
  font-weight: 700;
  line-height: 75%;
  color: #1bae70;
}

.text-num {
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  color: #888888;
}

.number-box {
  border-right: 1px solid #d9d9d9;
  padding: 50px 0px;
  height: 100%;
}

.desc-section {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}

.banner-sobre {
  width: 100%;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}

.banner-sobre img,
.banner-portfolio img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.box-sobre {
  text-align: center;
  transform: translateY(5%);
}

.box-portfolio {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.banner-portfolio {
  width: 100%;
  align-content: center;
  color: #fff;
  position: relative;
}

.circulo-missao {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 100px;
  width: 135px;
  height: 135px;
  justify-content: center;
  box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.15);
}

.box-valores {
  background: #1bae7014;
  padding: 45px 35px;
  border-radius: 5px;
  text-align: center;
  height: 100%;
}

.box-valores-mob {
  background: #1bae7014;
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box-valores img {
  max-height: 55px;
}

.span-valores {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #1bae70;
}

.desc-valores {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.conheca {
  position: relative;
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  height: 450px;
}

.img-conheca {
  object-fit: cover;
  object-position: center;
  position: absolute;
  height: 450px;
  width: 100%;
}

.conheca::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.conheca-container {
  position: relative;
  text-align: center;
  z-index: 2;
}

.img-sobre {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  height: 100%;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
}

.breadcrumb-item {
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
}
.breadcrumb-inicio {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}

.breadcrumb-portfolio a {
  color: #fff;
}

.breadcrumb-item-contato,
.breadcrumb-item-faq,
.breadcrumb-item-single {
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  color: #1bae70;
}
.breadcrumb-item-single {
  color: #fff;
  font-weight: bold;
}

.img-galeria {
  border-radius: 5px;
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.title-sobre {
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
  text-align: left;
  color: #1bae70;
}

.subtitle-sobre {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
}

.title-galeria {
  font-size: 35px;
  font-weight: 600;
  line-height: 45px;
  letter-spacing: 0.07em;
  color: #1bae70;
}

.subtitle-galeria {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.05em;
  color: #313131;
}

.btn-orcamento.active,
.btn-msg.active {
  background-color: #1bae70;
  border: none;
  color: #fff;
  align-content: center;
  text-decoration: none;
}

.btn-orcamento,
.btn-msg {
  color: #1bae70;
  border: 1px solid #1bae70;
  width: 340px;
  height: 50px;
  border-radius: 5px;
}

.span-tel,
.span-email,
.span-end,
.span-social {
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  text-align: left;
  color: #1bae70;
}

.tel-form,
.email-form,
.end-form {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
}

.label-nome,
.label-email,
.label-telefone,
.label-assunto,
.label-mensagem,
.label-pessoa {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  text-align: left;
  color: #1bae70;
}

.form-box {
  border: 1px solid #dadada !important;
  width: 100%;
}

.assunto {
  height: 40px;
}

.form-checkbox {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}
.span-politica {
  text-decoration-line: underline;
  color: #1bae70;
}

.btn-enviar {
  color: #1bae70 !important;
  width: 100%;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #1bae70 !important;
  background: #f0f0f0 !important;
}

.separador-contato {
  border: 1px solid #d9d9d9;
}

.title-contato {
  font-size: 40px;
  font-weight: 600;
  line-height: 49px;
  text-align: center;
}

.desc-contato {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
}

.title-faq {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
}

.btn-faq {
  width: 225px;
  display: flex;
  height: 45px;
  align-items: center;
  color: #fff !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0.1em;
  background-color: #1bae70;
  justify-content: center;
  border-radius: 5px;
}
.accordion-button {
  font-weight: 600;
  color: #313131;
}

.accordion-body {
  color: #313131;
  font-weight: 500;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #313131;
  background-color: #ebfff6;
  box-shadow: none;
}

.accordion {
  --bs-accordion-bg: #f7f4f4;
  /* --bs-accordion-btn-icon: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIxIiB2aWV3Qm94PSIwIDAgMjAgMSIgZmlsbD0ibm9uZSI+CjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIxIiBmaWxsPSIjMUJBRTcwIi8+Cjwvc3ZnPg=="); */
  /* --bs-accordion-btn-active-icon: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMSIgdmlld0JveD0iMCAwIDIwIDIxIiBmaWxsPSJub25lIj4KPHJlY3QgeT0iMTAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIxIiBmaWxsPSIjMUU3QzUzIi8+CjxyZWN0IHg9IjEwLjUiIHk9IjAuNSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjEiIHRyYW5zZm9ybT0icm90YXRlKDkwIDEwLjUgMC41KSIgZmlsbD0iIzFCQUU3MCIvPgo8L3N2Zz4="); */
}

.accordion-item {
  border: none;
}

.accordion-button::after {
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMSIgdmlld0JveD0iMCAwIDIwIDIxIiBmaWxsPSJub25lIj4KPHJlY3QgeT0iMTAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIxIiBmaWxsPSIjMUU3QzUzIi8+CjxyZWN0IHg9IjEwLjUiIHk9IjAuNSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjEiIHRyYW5zZm9ybT0icm90YXRlKDkwIDEwLjUgMC41KSIgZmlsbD0iIzFCQUU3MCIvPgo8L3N2Zz4=");
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMSIgdmlld0JveD0iMCAwIDIwIDIxIiBmaWxsPSJub25lIj4KPHJlY3QgeT0iMTAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIxIiBmaWxsPSIjMUJBRTcwIi8+Cjwvc3ZnPg==");
}

.accordion-body {
  background-color: #ebfff6;
}

.page-404 h1 {
  font-size: 114px;
  font-weight: bold;
}

.page-404 a {
  font-size: 16px;
  color: #888;
  border: 1px solid #ccc;
  padding: 5px 15px;
  margin-top: 15px;
  display: inline-block;
  transition: 300ms all ease-in-out;
}

.page-404 a:hover {
  background-color: black;
  color: white;
}

.page-404 .the-content {
  font-size: 24px;
  font-weight: 600;
  color: #aaa;
}

.page-404 .the-content {
  font-size: 24px;
  font-weight: 600;
  color: #9f9f9f;
}

.page-404 {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* BLOG ROLL - CUSTOM SHIT */
.post-excerpt {
  height: 200px;
}

/* PAGE & SINGLE - TEMPLATE SHIT */
.page-header {
  margin-bottom: 30px;
}

.the-content p + p {
  margin-top: 15px;
}

.page-container {
  padding: 30px 0;
}

.the-categories li {
  display: inline-block;
}

.the-categories li + li:before {
  content: ",";
  position: relative;
  display: inline-block;
  margin-right: 4px;
  left: -2px;
}

.share-this li {
  display: inline-block;
}

/* GALERIAS - TEMPLATE SHIT */
.galerias-content {
  margin-top: -30px;
}

.galerias-element {
  margin-top: 30px;
}

.galerias-element .thumb-img {
  display: block;
  width: 100%;
  height: 200px;
}

/* CONTATO - TEMPLATE SHIT */
.contato-container {
  margin-top: -30px;
}

.contato-container .lince-input {
  margin-top: 30px;
}

.contato-container br {
  display: none;
}

textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
  outline: none;
  border: none;
  resize: none;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  font-size: 14px;
  transition: 0.2s;
}

textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1), 0 3px 5px rgba(0, 0, 0, 0.1);
  border: none;
}

input[type="submit"] {
  outline: none;
  cursor: pointer;
  border: none;
  background: #66cc33;
  color: white;
  padding: 10px;
}

label.error {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 10px;
  color: red;
}

.lince-input .label-file {
  background: #b4b4c4;
  padding: 10px;
  cursor: pointer;
  width: 30%;
  box-sizing: border-box;
  display: inline-block;
  font-size: 14px;
  text-align: center;
}

input[type="text"].file-archive {
  width: 70%;
}

.alertify-button {
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  background: #66cc33 !important;
  text-shadow: none !important;
  margin-top: 20px;
}

/*Contact Form 7 Fixes*/
.lince-input .wpcf7-form-control-wrap {
  display: block;
}

/*Galeria Wordpress*/
p + .gallery,
ul + .gallery,
.gallery + p,
.gallery + ul,
.gallery + .gallery {
  margin-top: 30px;
}

.gallery {
  margin: 0;
  top: -20px;
  position: relative;
  /*    padding: 30px 20px;
      background: rgba(0,0,0,20/100);*/
}

.gallery-item {
  display: inline-block;
  max-width: 33.33%;
  padding: 0 1.1400652% 2.2801304%;
  text-align: center;
  vertical-align: top;
  width: 100%;
  margin: 0;
  padding: 0 1.1400652% 0;
  margin-top: 20px;
}

.gallery-icon {
  height: 200px;
}

/* ==========================================================================
   6. Footer - The bottom of every page
   ========================================================================== */
.menu-footer {
  color: #fff;
}
.copyright {
  background-color: #202020;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}

.copyright p a {
  font-weight: bold;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  text-decoration-line: underline;
  text-decoration-style: solid;
}

.privacidade {
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  color: #1bae70 !important;
  text-decoration-line: underline !important;
}

.separador-footer {
  border: 1px solid #3f755e80;
}
/* ==========================================================================
   7. Third Party Elements - Embeds from other services
   ========================================================================== */
/* Facebook Comments */
.facebook-cmt .fb-comments,
.facebook-cmt .fb-comments span,
.facebook-cmt .fb-comments iframe {
  width: 100% !important;
}

/*Wordpress Default  Things*/
.gallery-columns-1 .gallery-item {
  max-width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-icon img {
  margin: 0 auto;
  width: 100%;
  height: auto;
}

.gallery-caption {
  color: #686868;
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  font-style: italic;
  line-height: 1.6153846154;
  padding-top: 0.5384615385em;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none;
}

/* ==========================================================================
   8. Media Queries -
   ========================================================================== */
@media (max-width: 1200px) {
  .numeros .col-lg-12.col-xl-4 .number-box {
    border-right: none;
    border-left: none;
  }

  .navbar-collapse a {
    padding: 0 18px;
  }

  .title {
    font-size: 28px;
    font-weight: 600;
    line-height: 35px;
    letter-spacing: 0.15em;
  }

  .title.portfolio {
    font-size: 30px;
    font-weight: 700;
    line-height: 35px;
    text-align: center;
  }

  .title-quem-banner {
    font-size: 30px;
    font-weight: 700;
    line-height: 35px;
    text-align: center;
  }

  .desc-quem-banner {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    text-align: center;
  }

  .desc {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
  }

  .owl-nav {
    display: none;
  }
}

@media (max-width: 992px) {
  /* PAGE & SINGLE - TEMPLATE SHIT */
  .post + .post {
    margin-top: 30px;
  }

  /*DISPLAY SHIT*/
  .tablet {
    display: block;
  }

  .slider-container .cycle-slideshow {
    height: auto;
  }

  .slider-container .display-container {
    display: block;
  }

  .slider-container .display-container .txt {
    position: absolute;
    top: 40%;
    z-index: 999;
    width: 100%;
    text-align: center;
    padding: 20px;
  }

  .slider-container .display-next,
  .slider-container .display-prev {
    display: none;
  }

  .number-box {
    border-left: 1px solid #d9d9d9;
    border-right: none;
    padding: 50px 35px;
  }

  .sobre-single img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  /* MENU - TEMPLATE SHIT */
  #menu {
    padding: 0;
  }
  .menu-footer .navbar-brand {
    position: relative;
  }

  .menu-footer .navbar-brand::after {
    content: "";
    height: 1px;
    width: 1000px;
    background: #3f755e80;
    opacity: 50%;
    position: absolute;
    bottom: -7px;
    right: -300px;
  }

  .separador-footer {
    display: none;
  }

  .owl-clientes .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 25px;
    left: 0px;
    right: 0px;
  }

  .owl-clientes .fundo-branco {
    box-shadow: none;
  }

  .item-portfolio .overlay {
    transition: opacity 0.3s ease-in-out;
    pointer-events: none; /* evita clique acidental na overlay no mobile */
  }
  
  .item-portfolio:hover .overlay {
    opacity: 0; /* remove hover no mobile */
  }

  .social-links {
    gap: 30px;
  }

  .navbar-collapse li {
    float: none;
  }

  .navbar-collapse a {
    padding: 0;
    line-height: 45px;
  }

  /* Sub Menu Things */
  .navbar-collapse .sub-menu {
    max-height: 0px !important;
    padding: 0 0 0 20px;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    transition: 1s ease;
  }

  .navbar-collapse .menu-item-has-children.opened .sub-menu {
    max-height: 200px !important;
    opacity: 1;
  }

  .menu-internas {
    background-color: #FFFFFF;
  }

  .box-home {
    left: auto;
    right: auto;
    line-height: 28px;
  }

  /* CONTATO - TEMPLATE SHIT */
  .label-file span {
    display: none;
  }

  /*GALLERY WP SHIT*/
  .gallery-item {
    width: 100%;
    max-width: 100% !important;
  }
}
