@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Familjen+Grotesk:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat";
  background-color: #feffff;
  color: #000;
  overflow-x: hidden;
  overflow-x: clip;
}

.h1-plus {
  font-family: "Familjen Grotesk";
  font-size: 100px;
  font-style: normal;
  font-weight: 500;
  line-height: 100px; /* 100% */
  letter-spacing: -2px;
}

.h1 {
  font-family: "Familjen Grotesk";
  font-size: 70px;
  font-style: normal;
  font-weight: 500;
  line-height: 70px; /* 100% */
  letter-spacing: -2px;
  margin: 0;
}

.h2 {
  font-family: "Familjen Grotesk";
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: 60px; /* 100% */
  letter-spacing: -2px;
  margin: 0;
}

.h3 {
  font-family: "Familjen Grotesk";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px; /* 100% */
  margin: 0;
}

.h4 {
  font-family: "Familjen Grotesk";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px; /* 116.667% */
  margin: 0;
}

.h5 {
  font-family: "Familjen Grotesk";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.text-p {
  font-family: "Montserrat";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.text-m {
  font-family: "Montserrat";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.61px; /* 125.611% */
}

.btn {
  display: flex;
  padding: 18px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 12px;
}
.btn.btn-gray {
  background-color: #5f5f5f;
  color: #feffff;
}
.btn.btn-white {
  background-color: #feffff;
  color: #191919;
}

@media (max-width: 991.98px) {
  .h1-plus {
    font-size: 56px;
    line-height: 58px;
    letter-spacing: -1px;
  }
  .h1 {
    font-size: 44px;
    line-height: 46px;
    letter-spacing: -1px;
  }
  .h2 {
    font-size: 38px;
    line-height: 40px;
    letter-spacing: -1px;
  }
  .h3 {
    font-size: 28px;
    line-height: 32px;
  }
  .h4 {
    font-size: 22px;
    line-height: 28px;
  }
  .text-m {
    font-size: 17px;
    line-height: 24px;
  }
  .btn {
    padding: 16px 24px;
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .h1-plus {
    font-size: 40px;
    line-height: 42px;
  }
  .h1 {
    font-size: 32px;
    line-height: 36px;
  }
  .h2 {
    font-size: 30px;
    line-height: 34px;
  }
  .h3 {
    font-size: 24px;
    line-height: 30px;
  }
  .h4 {
    font-size: 20px;
    line-height: 26px;
  }
  .btn {
    padding: 14px 20px;
    font-size: 15px;
  }
}
/* O loader começa cobrindo a tela inteira */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #050505; /* Cor do seu site */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Estado quando a página carregou: o loader sobe */
.page-loader.loaded {
  transform: translateY(-100%);
}

/* Estado de saída: o loader volta para baixo antes de mudar de página */
.page-loader.exit {
  transform: translateY(0);
}

.loader-logo {
  letter-spacing: 5px;
  font-weight: 300;
}

.max-content {
  width: max-content;
}

a {
  text-decoration: none;
}

.color-cinza-medio {
  color: #919191;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
.menu .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.menu .container .navbar-collapse {
  flex-grow: initial;
}
.menu .container .ss {
  display: inline-flex;
  flex-direction: column;
  height: 30px;
  line-height: 30px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  vertical-align: middle;
  padding-top: 0px;
}
.menu .container .ss .s {
  display: block;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  /* cubic-bezier dá um toque mais elegante que o "ease" comum */
}
.menu .container .ss .s2 {
  color: #e7e7e7; /* Exemplo: cor diferente no hover */
}
.menu .container .ss:hover .s {
  transform: translateY(-100%);
}

/* Remove a seta (opcional, para ficar igual à imagem original) */
.dropdown-toggle::after {
  display: none !important;
}

/* Estilização do Menu Dropdown */
.dropdown-menu {
  background-color: #0a0a0a; /* Fundo escuro */
  border-radius: 0; /* Bordas retas como no seu botão contato */
  margin-top: 10px;
}

.dropdown-item {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: #1a1a1a;
  color: #fff;
  padding-left: 1.5rem; /* Efeito de deslocamento no hover */
}

/* Animação de entrada suave */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate.slideIn {
  animation: slideIn 0.3s ease-out;
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
.page-case .line-wrap span {
  margin: 5px 0px;
}

.menu__close {
  display: none;
}

@media (max-width: 991.98px) {
  .menu .container {
    align-items: center;
  }
  .navbar-toggler {
    border: 0;
    box-shadow: none !important;
    padding: 4px 6px;
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  #menuNavegacao.collapsing, #menuNavegacao.show {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh !important;
    height: 100dvh !important;
    margin: 0;
    z-index: 1050;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 120px 24px 60px;
    background-color: rgba(10, 10, 10, 0.92);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
  }
  #menuNavegacao.collapsing {
    transition: opacity 0.3s ease;
    opacity: 0;
  }
  #menuNavegacao.show {
    opacity: 1;
  }
  #menuNavegacao .navbar-nav {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
  }
  #menuNavegacao .nav-link {
    font-family: "Familjen Grotesk";
    font-size: 32px;
    padding: 0 !important;
  }
  #menuNavegacao .ss {
    height: auto;
    line-height: normal;
  }
  #menuNavegacao .ss .s2 {
    display: none;
  }
  .menu__close {
    display: block;
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #5f5f5f;
    color: #feffff;
    font-size: 28px;
    z-index: 1051;
  }
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #000;
  color: #feffff;
  padding: 100px;
}
.hero .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.05) 75%);
  pointer-events: none;
}
.hero .text {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
  margin: 100px;
}

.intro {
  padding: 150px 0px;
  background-color: #191919;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.intro .jumbo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.intro .jumbo h3 {
  max-width: 1017px;
  color: #919191;
}
.intro .jumbo h3 span {
  color: #e7e7e7;
}

.services {
  background-color: #000;
  padding: 150px 0px;
  color: #feffff;
}
.services .title {
  margin-bottom: 40px;
}
.services .fields {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 40px;
}
.services .fields .field {
  color: #feffff;
}
.services .fields .field h1 {
  margin: 0;
  transition: 0.4s ease;
}
.services .fields .field p {
  opacity: 0;
  height: 0;
  margin: 0;
  transition: 0.4s ease;
  color: #000;
  max-width: 550px;
  width: 100%;
}
.services .fields .field:hover h1 {
  color: #919191;
}
.services .fields .field:hover p {
  opacity: 1;
  height: auto;
  margin-top: 20px;
  color: #919191;
}

.customers {
  background-color: #191919;
  padding-top: 150px;
  /* ── Customers Slider ──────────────────────────────────────── */
}
.customers .customers__slider-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.customers .customers__slider {
  overflow: hidden;
  width: 100%;
}
.customers .customers__track {
  display: flex;
  align-items: center;
  gap: 100px;
  width: max-content;
  will-change: transform;
}
.customers .customers__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  flex-shrink: 0;
}
.customers .customers__item img {
  height: 28px;
  width: auto;
  display: block;
}
.customers {
  /* Blur progressivo nas bordas */
}
.customers .customers__blur {
  pointer-events: none;
  position: absolute;
  top: 0;
  height: 100%;
  width: 200px;
  z-index: 2;
}
.customers .customers__blur--left {
  left: 0;
  background: linear-gradient(to right, rgb(25, 25, 25) 0%, rgba(25, 25, 25, 0.85) 20%, rgba(25, 25, 25, 0.5) 50%, rgba(25, 25, 25, 0) 100%);
}
.customers .customers__blur--right {
  right: 0;
  background: linear-gradient(to left, rgb(25, 25, 25) 0%, rgba(25, 25, 25, 0.85) 20%, rgba(25, 25, 25, 0.5) 50%, rgba(25, 25, 25, 0) 100%);
}

.cases {
  background-color: #191919;
  padding: 150px 0px;
}
.cases .row {
  row-gap: 30px;
}
.cases .row .field {
  overflow: hidden; /* garante que nada saia da div */
  border-radius: 10px;
  padding: 30px;
  background-position: center;
  background-size: cover;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cases .row .field img {
  width: max-content;
}
.cases .row .field .case-card-title {
  color: #feffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  margin: 0;
  width: max-content;
}
.cases .row .field .job {
  margin-bottom: -100%;
  transition: 0.6s ease;
}
.cases .row .field .job h5 {
  color: #feffff;
}
.cases .row .field:hover .job {
  margin-bottom: 0;
  transition: 0.4s ease;
}
.cases .row .field:hover .job h5 {
  color: #feffff;
}

.servicos-grid {
  background-color: #191919;
  padding: 150px 0px;
}
.servicos-grid .row {
  row-gap: 30px;
}
.servicos-grid .field {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  padding: 30px;
  background-position: center;
  background-size: cover;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #feffff;
}
.servicos-grid .field::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0) 75%);
  transition: 0.4s ease;
}
.servicos-grid .field .servico-card-title,
.servicos-grid .field .job {
  position: relative;
  z-index: 1;
}
.servicos-grid .field .servico-card-title {
  margin: 0;
}
.servicos-grid .field .job {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: 0.4s ease;
}
.servicos-grid .field .job p {
  color: #e7e7e7;
  max-width: 420px;
}
.servicos-grid .field .job .ver-servico {
  color: #feffff;
  text-transform: uppercase;
}
.servicos-grid .field:hover::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.1) 100%);
}
.servicos-grid .field:hover .job {
  max-height: 200px;
  opacity: 1;
  margin-top: 20px;
}

.numbers {
  padding: 50px 0px 150px 0px;
  background-color: #191919;
  color: #feffff;
}
.numbers .space {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.numbers .numbers-field {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.numbers .numbers-field .text {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.numbers .numbers-field .text p {
  max-width: 300px;
  margin: 0;
}
.numbers .numbers-field hr {
  margin: 0px;
  color: inherit;
  border: 0;
  border-top: 1px solid #000;
  opacity: 1;
}

.intro-internal {
  padding: 250px 0px 150px 0px;
  color: #feffff;
  background-color: #191919;
  text-align: center;
}
.intro-internal .field {
  max-width: 632px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 0 auto;
}
.intro-internal .field h3 {
  max-width: 1017px;
  color: #919191;
}
.intro-internal .field h3 span {
  color: #e7e7e7;
}
.intro-internal .field .links {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.intro-internal.error-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.about1 {
  background-color: #191919;
  color: #feffff;
  padding: 30px 0px 150px 0px;
}
.about1 .r1 {
  margin-bottom: 50px;
}
.about1 .r1 h2 {
  margin-bottom: 40px;
}

.about2 {
  background-color: #191919;
  color: #feffff;
  padding: 150px 0px;
}
.about2 .flex {
  display: flex;
  flex-direction: column;
  gap: 200px;
}
.about2 .flex-right {
  display: flex;
  align-items: center;
  justify-content: end;
}
.about2 .text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about2 .text h5 {
  color: #919191;
}
.about2 .text p {
  max-width: 400px;
}
.about2 .links {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  flex-direction: column;
}
.about2 .text2 {
  display: flex;
  flex-direction: column;
  gap: 63px;
  max-width: 500px;
  margin: 0 0 0 auto;
}
.about2 .text2 .field {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.about2 .text2 .field hr {
  margin: 0px;
  color: inherit;
  border: 0;
  border-top: 1px solid #000;
  opacity: 1;
}
.about2 .text2 .p-text {
  max-width: 402px;
}

.about3 {
  background-color: #191919;
  color: #feffff;
  padding: 150px 0px;
  text-align: center;
}
.about3 .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.metodo {
  background-color: #191919;
  color: #feffff;
  overflow: hidden;
  min-height: 100vh;
}
.metodo .container,
.metodo .row {
  overflow: visible;
}
.metodo .metodo-header {
  padding-top: 150px;
  padding-bottom: 0;
}
.metodo .fields-wrap {
  padding: 80px 0 150px;
  overflow: visible;
}
.metodo .fields {
  display: flex;
  gap: 25px;
  will-change: transform;
  width: max-content;
  padding-right: 375px;
}
.metodo .fields .field {
  background-color: #5f5f5f;
  display: flex;
  height: 500px;
  padding: 50px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 375px;
  flex-shrink: 0;
  gap: 20px;
  color: #feffff;
  border-radius: 12px;
}
.metodo .fields .field .text-p {
  color: #919191;
}
.metodo .fields .field .c1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.service1 {
  background-color: #191919;
  color: #feffff;
  padding: 50px 0px 150px 0px;
}
.service1 .text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service1 img {
  margin: 0 0 0 auto;
  display: block;
}
.service1 .flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service2 {
  background-color: #191919;
  color: #feffff;
  padding: 50px 0px 50px 0px;
}
.service2 .field {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 63px;
}
.service2 .field .text {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.service2 .field .text hr {
  margin: 0px;
  color: inherit;
  border: 0;
  border-top: 1px solid #e7e7e7;
  opacity: 1;
}
.service2 img {
  margin: 0 auto 0 0;
  display: block;
}

.case-hero {
  display: flex;
  width: 100%;
  height: 70vh;
  background-color: #191919;
}
.case-hero img {
  flex: 1 1 50%;
  height: 100%;
  width: 50%;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .case-hero {
    flex-direction: column;
    height: auto;
  }
  .case-hero img {
    flex: none;
    width: 100%;
    height: 40vh;
  }
}

@media (max-width: 767px) {
  .menu .container .ss:hover .s {
    transform: translateY(0%);
  }
  .case-video-adaptado video {
    width: 100%;
  }
}
.case-intro {
  background-color: #191919;
  color: #feffff;
  padding: 90px 0px 90px 0px;
}
.case-intro .case-meta {
  display: flex;
  gap: 40px;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-start;
}
.case-intro .case-meta hr {
  margin: 0px 0px;
  color: inherit;
  border: 0;
  border-top: 1px solid #5f5f5f;
  opacity: 1;
  height: 1px;
  width: 100%;
}
.case-intro .case-meta .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case-intro .case-meta .field p.text-p {
  color: #919191;
}
.case-intro hr {
  margin: 90px 0px;
  color: inherit;
  border: 0;
  border-top: 1px solid #5f5f5f;
  opacity: 1;
}
.case-intro .case-contexto p.text-p {
  color: #919191;
}
.case-intro .case-contexto hr {
  margin: 30px 0px 40px 0px;
}
.case-intro .case-contexto .field {
  margin-bottom: 0px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.case-intro .case-contexto .field:last-child {
  margin-bottom: 0;
}
.case-intro .case-contexto .field p.text-m {
  max-width: 640px;
  color: #e7e7e7;
}
@media (max-width: 767px) {
  .case-intro .case-meta {
    justify-content: flex-start;
    margin-top: 40px;
  }
}

.case-full {
  background-color: #191919;
  line-height: 0;
}
.case-full img {
  display: block;
}
.case-full.case-video {
  padding-top: 100px;
}

.case-video .video-frame {
  position: relative;
  cursor: pointer;
}
.case-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #000;
  object-fit: cover;
}
.case-video .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(254, 255, 255, 0.6);
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: 0.3s ease;
}
.case-video .video-play img {
  width: 28px;
  height: auto;
  margin-left: 4px;
}
.case-video .video-play:hover {
  background-color: rgba(0, 0, 0, 0.65);
  transform: translate(-50%, -50%) scale(1.06);
}
.case-video .video-frame.is-playing .video-play {
  opacity: 0;
  pointer-events: none;
}

.case-video-adaptado {
  background-color: #000;
  padding: 100px 0px;
  width: 100%;
}
.case-video-adaptado video {
  display: block;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 1500/800;
  background-color: #000;
  object-fit: contain;
  margin: 0 auto;
}

.case-scroll {
  padding: 100px 0px;
}
.case-scroll.case-full {
  line-height: normal;
}
.case-scroll .laptop-mockup {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 3397/2017;
}
.case-scroll .laptop-frame-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  pointer-events: none;
}
.case-scroll .scroll-frame {
  position: absolute;
  left: 12.07%;
  top: 8.53%;
  right: 11.84%;
  bottom: 11.11%;
  overflow: hidden;
  z-index: 1;
  --scroll-distance: 0px;
}
.case-scroll .scroll-image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  will-change: transform;
  animation: caseScroll 6s infinite;
}

@keyframes caseScroll {
  0% {
    transform: translateY(0);
    animation-timing-function: ease-in-out;
  }
  83.333% {
    transform: translateY(var(--scroll-distance));
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(0);
  }
}
.case-depoimento {
  background-color: #191919;
  color: #feffff;
  padding: 150px 0px;
  text-align: left;
}
.case-depoimento .field {
  max-width: 780px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.case-depoimento .text-quote {
  font-family: "Familjen Grotesk";
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  line-height: 34px;
  color: #919191;
  margin: 0;
}
.case-depoimento p.text-p {
  color: #e7e7e7;
  margin: 0;
  text-transform: none;
}

.case-trabalho {
  background-color: #191919;
  color: #feffff;
  padding: 150px 0px 150px 0px;
}
.case-trabalho h5 {
  margin-bottom: 20px;
}
.case-trabalho p.text-m {
  color: #e7e7e7;
  max-width: 500px;
}
.case-trabalho .trabalho-campo {
  gap: 20px;
  display: flex;
  flex-direction: column;
}
.case-trabalho .trabalho-campo p {
  margin-bottom: 0;
}

.case-imagens {
  background-color: #191919;
  padding: 0px 0px 150px 0px;
}
.case-imagens .row {
  row-gap: 30px;
}
.case-imagens img {
  width: 100%;
  display: block;
}
.case-imagens img.img-510 {
  max-width: 510px;
  margin: 0 auto;
}

.case-centralizado {
  background-color: #191919;
  padding: 200px 0px;
  text-align: center;
}
.case-centralizado p {
  max-width: 713px;
  margin: 0 auto;
  color: #919191;
}

.color-cinza-claro {
  color: #e7e7e7;
}

.no-padding {
  padding: 0px;
}

.case-galeria {
  background-color: #191919;
  padding: 0px 0px 0px 0px;
}
.case-galeria .row {
  row-gap: 20px;
}
.case-galeria img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 2/4;
}

.case-next {
  background-color: #191919;
  color: #feffff;
  padding: 100px 0px 100px 0px;
}
.case-next .case-next-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #feffff;
}
.case-next .case-next-link img {
  max-height: 30px;
}
.case-next .case-next-link svg {
  transition: transform 0.3s ease;
}
.case-next .case-next-link:hover svg {
  transform: translateX(10px);
}
.case-next .case-dots {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}
.case-next .case-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #5f5f5f;
}
.case-next .case-dots .dot.active {
  background-color: #feffff;
}

footer {
  background-color: #000;
  color: #feffff;
  padding: 150px 0px 100px 0px;
}
footer .cc {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer .cc .fields {
  display: flex;
  min-width: 300px;
  justify-content: space-between;
}
footer .cc .fields .field {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
footer .cc .fields .field a {
  color: #feffff;
  display: block;
}
footer .cc .logo-rodape {
  max-width: 82px;
  margin: 0 auto;
}
footer .cc .contact {
  min-width: 300px;
}
footer .cc .contact a {
  margin-bottom: 20px;
}
footer img.di {
  margin-top: 100px;
}
footer .ss {
  display: inline-flex;
  flex-direction: column;
  height: 30px;
  line-height: 30px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  vertical-align: middle;
  padding-top: 0px;
}
footer .ss .s {
  display: block;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  /* cubic-bezier dá um toque mais elegante que o "ease" comum */
}
footer .ss .s2 {
  color: #e7e7e7; /* Exemplo: cor diferente no hover */
}
footer .ss:hover .s {
  transform: translateY(-100%);
}

.modal-contato .modal-dialog {
  max-width: 480px;
}
.modal-contato .modal-content {
  background-color: #191919;
  color: #feffff;
  border-radius: 12px;
  border: 0;
  padding: 20px;
}
.modal-contato .modal-header {
  padding: 10px 10px 0px 10px;
}
.modal-contato .modal-header .text-p {
  color: #919191;
}
.modal-contato .modal-body {
  padding: 20px 10px 10px 10px;
}
.modal-contato .campo {
  margin-bottom: 20px;
}
.modal-contato .form-label {
  font-family: "Montserrat";
  font-size: 14px;
  color: #919191;
  margin-bottom: 8px;
}
.modal-contato .form-control {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #5f5f5f;
  border-radius: 0;
  color: #feffff;
  padding: 10px 0px;
  font-family: "Montserrat";
  font-size: 16px;
}
.modal-contato .form-control:focus {
  background-color: transparent;
  border-color: #feffff;
  box-shadow: none;
  color: #feffff;
}
.modal-contato .form-control::placeholder {
  color: #919191;
}
.modal-contato .btn {
  border: 0;
  margin-top: 10px;
  cursor: pointer;
}

.modal-video .modal-dialog {
  max-width: 900px;
}
.modal-video .modal-content {
  background-color: #191919;
  color: #feffff;
  border-radius: 12px;
  border: 0;
  padding: 12px;
}
.modal-video .modal-header {
  padding: 6px 6px 10px 6px;
}
.modal-video .modal-header .text-p {
  color: #919191;
}
.modal-video .modal-body {
  padding: 0;
  line-height: 0;
}
.modal-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #000;
  border-radius: 4px;
}

@media (max-width: 991.98px) {
  .hero {
    padding: 24px;
    height: 80vh;
  }
  .hero .text {
    margin: 24px;
    gap: 24px;
  }
  .intro {
    padding: 90px 0px;
    min-height: 0;
  }
  .intro .jumbo {
    gap: 24px;
  }
  .services {
    padding: 90px 0px;
  }
  .services .fields {
    gap: 30px;
    margin-bottom: 0;
  }
  .services .fields .field p {
    opacity: 1;
    height: auto;
    margin-top: 12px;
    color: #919191;
    display: none;
  }
  .customers {
    padding-top: 90px;
  }
  .customers .customers__track {
    gap: 60px;
  }
  .customers .customers__blur {
    width: 60px;
  }
  .cases {
    padding: 90px 0px;
  }
  .cases .row .field {
    min-height: 320px;
  }
  .cases .row .field .job {
    margin-bottom: 0;
  }
  .servicos-grid {
    padding: 90px 0px;
  }
  .servicos-grid .field {
    min-height: 320px;
  }
  .servicos-grid .field .job {
    max-height: none;
    opacity: 1;
    margin-top: 16px;
  }
  .numbers {
    padding: 40px 0px 90px 0px;
  }
  .numbers .numbers-field {
    gap: 24px;
  }
  .numbers .numbers-field .text {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .numbers .space {
    gap: 20px;
    margin-bottom: 60px;
  }
  .intro-internal {
    padding: 140px 0px 70px 0px;
  }
  .intro-internal .field {
    gap: 24px;
  }
  .intro-internal .links {
    flex-wrap: wrap;
  }
  .about1 {
    padding: 24px 0px 90px 0px;
  }
  .about1 .r1 {
    margin-bottom: 30px;
  }
  .about1 .r1 img {
    margin-top: 30px;
  }
  .about2 {
    padding: 90px 0px;
  }
  .about2 .flex {
    gap: 30px;
  }
  .about2 .flex-right {
    justify-content: flex-start;
  }
  .about2 .text2 {
    gap: 40px;
    max-width: 100%;
    margin: 0;
    margin-top: 50px;
  }
  .about2 .text2 .field {
    gap: 10px;
  }
  .about3 {
    padding: 90px 0px;
  }
  .about3 .text {
    gap: 20px;
  }
  .metodo {
    min-height: 0;
  }
  .metodo .metodo-header {
    padding-top: 0px;
  }
  .metodo .fields-wrap {
    padding: 40px 0 30px 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .metodo .fields {
    padding-right: 24px;
    transform: none !important;
  }
  .service1 {
    padding: 30px 0px 90px 0px;
  }
  .service1 .flex {
    margin-bottom: 60px;
  }
  .service1 img {
    margin: 0 auto;
  }
  .service2 {
    padding: 30px 0px;
  }
  .service2 img {
    margin: 0 auto 30px auto;
  }
  .service2 .field {
    gap: 30px;
  }
  .case-intro {
    padding: 50px 0px;
  }
  .case-intro hr {
    margin: 50px 0px;
  }
  .case-scroll {
    padding: 50px 0px;
  }
  .case-depoimento {
    padding: 70px 0px;
  }
  .case-depoimento .text-quote {
    font-size: 21px;
    line-height: 28px;
  }
  .case-trabalho {
    padding: 70px 0px;
  }
  .case-imagens {
    padding: 0px 0px 70px 0px;
  }
  .case-centralizado {
    padding: 90px 0px;
  }
  .case-next {
    padding: 60px 0px;
  }
  .case-next img {
    max-height: 35px;
  }
  footer {
    padding: 90px 0px 60px 0px;
  }
  footer .cc {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
  }
  footer .cc .fields {
    min-width: 0;
    width: 100%;
    gap: 40px;
  }
  footer .cc .contact {
    min-width: 0;
    width: 100%;
  }
  footer img.di {
    margin-top: 60px;
  }
}
@media (max-width: 575.98px) {
  .intro-internal {
    padding-top: 120px;
  }
  footer .cc .fields {
    flex-direction: column;
    gap: 32px;
  }
}
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  z-index: 998;
  transition: transform 0.2s ease;
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #feffff;
}
.whatsapp-float:hover {
  transform: scale(1.08);
}

.cookie-banner {
  display: none;
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 380px;
  z-index: 997;
  background-color: #191919;
  color: #feffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.cookie-banner.is-visible {
  display: block;
}
.cookie-banner .cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-banner p {
  color: #feffff;
  margin: 0;
}
.cookie-banner a {
  color: #feffff;
  text-decoration: underline;
}
.cookie-banner .btn {
  padding: 12px 20px;
  font-size: 15px;
  align-self: flex-start;
}

.legal-content {
  padding: 90px 0px 150px 0px;
}
.legal-content p {
  margin-bottom: 24px;
}
.legal-content ul {
  margin: 0 0 24px 0;
  padding-left: 20px;
}
.legal-content ul li {
  margin-bottom: 8px;
}

@media (max-width: 575.98px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 84px;
    max-width: none;
    padding: 20px;
  }
  .legal-content {
    padding: 60px 0px 90px 0px;
  }
}

/*# sourceMappingURL=style.css.map */
