/* Estilo do site | Base global */

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--padrao);
  color: var(--texto);
  line-height: 1.6;
  font-weight: 400;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 500;
  color: var(--texto);
  letter-spacing: 1px;
}

/* Imagens responsivas */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Banners */

.banner_video {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.banner_video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(50%);
}

.logo_mobile {
  width: 40%;
}

/* Tamanhos de texto */
.text_13px {
  font-size: 13px;
}

.text_14px {
  font-size: 14px;
}

.text_15px {
  font-size: 15px;
}

.text_18px {
  font-size: 18px;
}

.text_50px {
  font-size: 50px;
}

.text_mail {
  font-size: 16px;
}

@media (max-width: 768px) {
  .banner_video {
    height: 55vh;
  }

  .logo_mobile {
    width: 25%;
  }

  .text_mail {
    font-size: 12px;
  }
}

/* Cores de fundo */
.background_color_principal_azul {
  background-color: var(--principal-azul);
}

.background_color_secundario_azul {
  background-color: var(--secundario-azul);
}

.background_color_fundo_escuro {
  background-color: var(--fundo-escuro-quando-tom-azul);
}

/* Cores de texto */
.text_color_texto {
  color: var(--texto);
}

.text_color_texto_claro {
  color: var(--texto-claro);
}

.text_color_principal_azul {
  color: var(--principal-azul);
}

.text_color_secundario_azul {
  color: var(--secundario-azul);
}

/* .text_color_principal_azul:hover {
  color: var(--secundario-azul);
  transition: color 0.15s ease-in-out;
} */

.icon_color_principal_azul {
  color: var(--principal-azul);
}

.icon_color_principal_azul:hover {
  color: var(--secundario-azul);
  transition: color 0.15s ease-in-out;
}

/* Estilos de texto */
.font_title {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
}

.font_text {
  font-family: "Montserrat", sans-serif;
}

/* Detalhes de listas */
.modal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.modal-body li {
  margin-bottom: 0.5rem;
}

/* Tamanhos */
.w_2_5rem {
  width: 2.5rem;
}

.h_0_5rem {
  height: 0.5rem;
}

.fade_swap {
  opacity: 0;
  transition:
    transform 0.5s ease,
    opacity 0.3s ease;
  transform: rotateY(40deg);
  transform-style: preserve-3d;
}

.fade_swap.is-visible {
  opacity: 1;
  transform: rotateY(0deg);
}

@media (min-width: 992px) {
  .separador {
    position: relative;
  }

  .separador::after {
    content: "";
    position: absolute;
    top: 20%;
    right: 0;
    width: 2px;
    height: 60%;
    background-color: rgba(0, 0, 0, 0.219);
  }

  .separador:last-child::after {
    display: none;
  }
}

.como_trabalhamos {
  background: #f8f9fa;
}

.etapa_card {
  border-radius: 12px;
  transition: 0.3s ease;
  max-width: 500px;
}

.etapa_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.imagem_card,
#emptyState,
#cardsProjetos {
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.imagem_card.is-hide,
#emptyState.is-hide,
#cardsProjetos.is-hide {
  display: none;
  opacity: 0;
  transform: scale(0.95) translateY(10px);
  pointer-events: none;
}
