/* ==========================================
CONFIGURAÇÕES GERAIS
========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  background: #ffffff;
}



/* ==========================================
SEÇÃO 1 — HERO CONSTRUÇÃO CIVIL
========================================== */

.hero-construcao {
  position: relative;

  width: 100%;
  min-height: 100vh;

  display: flex;
  align-items: center;

  padding: 145px 24px 90px;

  /*
  SUBSTITUA PELO NOME DA SUA IMAGEM
  Exemplo:
  background-image: url("../images/hero-construcao-civil.png");
  */

  background-image: url("../images/secao1construcaocivil.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}



/* ==========================================
CAMADA DE COR SOBRE A IMAGEM
========================================== */

.hero-construcao-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(18, 27, 40, 0.94) 0%,
      rgba(28, 45, 62, 0.83) 37%,
      rgba(47, 64, 78, 0.45) 65%,
      rgba(47, 64, 78, 0.12) 100%
    );
}



/* Sombra inferior */

.hero-construcao::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;

  height: 180px;

  background:
    linear-gradient(
      to top,
      rgba(12, 20, 29, 0.68),
      transparent
    );

  pointer-events: none;
}



/* ==========================================
CONTAINER
========================================== */

.hero-construcao-container {
  position: relative;
  z-index: 3;

  width: min(1220px, 100%);
  margin: 0 auto;
}



/* ==========================================
CONTEÚDO
========================================== */

.hero-construcao-content {
  max-width: 930px;

  color: #ffffff;

  animation: heroConstrucaoFade 1s ease forwards;
}



/* ==========================================
ETIQUETA SUPERIOR
========================================== */

.hero-construcao-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 25px;
  padding: 11px 18px;

  
  border-radius: 50px;

  background: rgba(255, 255, 255, 0.11);

  color: rgba(255, 255, 255, 0.96);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}


.hero-construcao-eyebrow i {
  color: #f0b35a;
  font-size: 18px;
}



/* ==========================================
TÍTULO
========================================== */

.hero-construcao-content h1 {
  max-width: 900px;

  margin-bottom: 28px;

  color: #ffffff;

  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -3px;
}


.hero-construcao-content h1 span {
  display: block;

  color: #f0b35a;
}



/* ==========================================
PARÁGRAFO
========================================== */

.hero-construcao-content > p {
  max-width: 770px;

  margin-bottom: 38px;

  color: rgba(255, 255, 255, 0.84);

  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
}



/* ==========================================
BOTÕES
========================================== */

.hero-construcao-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;

  margin-bottom: 42px;
}


.btn-hero-construcao-primary,
.btn-hero-construcao-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;

  min-height: 56px;
  padding: 16px 28px;

  border-radius: 50px;

  font-size: 14px;
  font-weight: 800;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}



/* BOTÃO PRINCIPAL */

.btn-hero-construcao-primary {
  border: 1px solid #f0b35a;

  background: #f0b35a;

  color: #202a33;

  box-shadow:
    0 18px 40px rgba(8, 14, 20, 0.35);
}


.btn-hero-construcao-primary:hover {
  transform: translateY(-4px);

  border-color: #ffffff;

  background: #ffffff;

  color: #202a33;

  box-shadow:
    0 24px 48px rgba(8, 14, 20, 0.45);
}



/* BOTÃO SECUNDÁRIO */

.btn-hero-construcao-secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);

  background: rgba(255, 255, 255, 0.08);

  color: #ffffff;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}


.btn-hero-construcao-secondary:hover {
  transform: translateY(-4px);

  border-color: rgba(255, 255, 255, 0.85);

  background: rgba(255, 255, 255, 0.18);

  color: #ffffff;
}



/* ANIMAÇÃO DOS ÍCONES */

.btn-hero-construcao-primary i,
.btn-hero-construcao-secondary i {
  transition: transform 0.3s ease;
}


.btn-hero-construcao-primary:hover i {
  transform: translateX(5px);
}


.btn-hero-construcao-secondary:hover i {
  transform: translateY(4px);
}



/* ==========================================
DIFERENCIAIS DA HERO
========================================== */

.hero-construcao-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}


.hero-construcao-feature {
  display: flex;
  align-items: center;
  gap: 9px;

  color: rgba(255, 255, 255, 0.83);

  font-size: 14px;
  font-weight: 600;
}


.hero-construcao-feature i {
  color: #f0b35a;
  font-size: 20px;
}



/* ==========================================
ELEMENTOS DECORATIVOS
========================================== */

.hero-construcao-decoration {
  position: absolute;
  z-index: 2;

  border-radius: 50%;

  pointer-events: none;
}



/* Círculo superior direito */

.hero-construcao-decoration-one {
  width: 440px;
  height: 440px;

  top: -230px;
  right: -160px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  box-shadow:
    0 0 0 50px rgba(255, 255, 255, 0.025),
    0 0 0 105px rgba(255, 255, 255, 0.016);
}



/* Brilho inferior */

.hero-construcao-decoration-two {
  width: 290px;
  height: 290px;

  right: 12%;
  bottom: -180px;

  background: rgba(240, 179, 90, 0.18);

  filter: blur(10px);
}



/* ==========================================
ANIMAÇÃO DE ENTRADA
========================================== */

@keyframes heroConstrucaoFade {

  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

/* ==========================================
SEÇÃO 2 — GESTÃO PARA EMPRESAS SOB MEDIDA
========================================== */

.construcao-importancia {
  position: relative;

  padding: 120px 24px;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #192531 0%,
      #263848 22%,
      #3d5262 47%,
      #8a6844 73%,
      #c69454 90%,
      #e0b879 100%
    );
}



/* ==========================================
CONTAINER
========================================== */

.construcao-container {
  position: relative;
  z-index: 2;

  width: min(1200px, 100%);
  margin: 0 auto;
}



/* ==========================================
ELEMENTOS DECORATIVOS
========================================== */

.construcao-decoration {
  position: absolute;

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;

  pointer-events: none;
}


.construcao-decoration-left {
  width: 470px;
  height: 470px;

  top: -250px;
  left: -210px;

  box-shadow:
    0 0 0 45px rgba(255, 255, 255, 0.018),
    0 0 0 95px rgba(255, 255, 255, 0.012);
}


.construcao-decoration-right {
  width: 540px;
  height: 540px;

  right: -280px;
  bottom: -280px;

  box-shadow:
    0 0 0 50px rgba(255, 255, 255, 0.018),
    0 0 0 105px rgba(255, 255, 255, 0.012);
}



/* ==========================================
CABEÇALHO DA SEÇÃO
========================================== */

.construcao-section-header {
  max-width: 950px;

  margin: 0 auto 70px;

  text-align: center;
}



/* Logo */

.construcao-gestao-logo img {
  width: 290px;
  max-width: 80%;

  margin-top: -50px;
  margin-bottom: 35px;
}



/* Etiqueta superior */

.construcao-section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin-bottom: 27px;
  padding: 11px 18px;

 
  border-radius: 50px;

  background: rgba(255, 255, 255, 0.09);

  color: #f1c47f;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}


.construcao-section-eyebrow i {
  font-size: 17px;
}



/* Título */

.construcao-section-header h2 {
  margin-bottom: 27px;

  color: #ffffff;

  font-size: clamp(31px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
}


.construcao-section-header h2 span {
  display: block;

  margin-top: 8px;

  color: #f0b35a;
}



/* Parágrafo */

.construcao-section-header p {
  max-width: 870px;

  margin: 0 auto;

  color: rgba(255, 255, 255, 0.78);

  font-size: 17px;
  line-height: 1.8;
}



/* ==========================================
CARDS DE DESTAQUE
========================================== */

.construcao-numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;

  margin-bottom: 100px;
}



/* Card */

.construcao-number-card {
  position: relative;

  min-height: 350px;

  overflow: hidden;

  padding: 35px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;

  background: rgba(255, 255, 255, 0.08);

  box-shadow:
    0 20px 45px rgba(8, 15, 22, 0.18);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}



/* Círculo decorativo interno */

.construcao-number-card::after {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  right: -100px;
  bottom: -105px;

  border-radius: 50%;

  background: rgba(240, 179, 90, 0.13);
}



/* Hover */

.construcao-number-card:hover {
  transform: translateY(-9px);

  border-color: rgba(255, 255, 255, 0.27);

  background: rgba(255, 255, 255, 0.14);

  box-shadow:
    0 30px 55px rgba(8, 15, 22, 0.28);
}



/* Card central destacado */

.construcao-number-card.construcao-card-featured {
  background:
    linear-gradient(
      145deg,
      rgba(240, 179, 90, 0.34),
      rgba(255, 255, 255, 0.09)
    );
}



/* Ícone */

.construcao-number-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 62px;
  height: 62px;

  margin-bottom: 29px;

  border-radius: 19px;

  background: #ffffff;

  color: #b8752d;

  font-size: 27px;

  box-shadow:
    0 14px 30px rgba(8, 15, 22, 0.22);
}



/* Conteúdo dos cards */

.construcao-number-content {
  position: relative;
  z-index: 2;
}


.construcao-number-content strong {
  display: block;

  margin-bottom: 13px;

  color: #ffffff;

  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.8px;
}


.construcao-number-content h3 {
  margin-bottom: 16px;

  color: #f2c98d;

  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}


.construcao-number-content p {
  margin: 0;

  color: rgba(255, 255, 255, 0.74);

  font-size: 14px;
  line-height: 1.72;
}



/* ==========================================
BLOCO DE GESTÃO INTEGRADA
========================================== */

.construcao-management {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 65px;
  align-items: center;

  padding: 65px;

  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 40px;

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(240, 179, 90, 0.18),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.97),
      rgba(243, 238, 229, 0.96)
    );

  box-shadow:
    0 35px 80px rgba(18, 26, 34, 0.2);
}



/* ==========================================
CONTEÚDO DO BLOCO
========================================== */

.construcao-management-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 22px;
  padding: 9px 15px;

  border-radius: 50px;

  background: rgba(184, 117, 45, 0.1);

  color: #a76525;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}


.construcao-management-label i {
  font-size: 17px;
}


.construcao-management-content h2 {
  margin-bottom: 25px;

  color: #1e2b35;

  font-size: clamp(36px, 4vw, 49px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.6px;
}


.construcao-management-content p {
  margin-bottom: 18px;

  color: #68727b;

  font-size: 16px;
  line-height: 1.8;
}



/* ==========================================
BOTÃO
========================================== */

.btn-construcao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  margin-top: 14px;
  padding: 16px 30px;

  border-radius: 50px;

  background: #b8752d;

  color: #ffffff;

  font-size: 14px;
  font-weight: 800;

  text-decoration: none;

  box-shadow:
    0 16px 35px rgba(184, 117, 45, 0.28);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}


.btn-construcao:hover {
  transform: translateY(-4px);

  background: #8f571f;

  color: #ffffff;

  box-shadow:
    0 22px 42px rgba(184, 117, 45, 0.37);
}


.btn-construcao i {
  transition: transform 0.3s ease;
}


.btn-construcao:hover i {
  transform: translateX(6px);
}



/* ==========================================
CARDS DE BENEFÍCIOS
========================================== */

.construcao-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}


.construcao-benefit-card {
  min-height: 230px;

  padding: 27px;

  border: 1px solid rgba(184, 117, 45, 0.1);
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.93);

  box-shadow:
    0 12px 30px rgba(38, 45, 51, 0.07);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


.construcao-benefit-card:hover {
  transform: translateY(-7px);

  border-color: rgba(184, 117, 45, 0.32);

  box-shadow:
    0 20px 38px rgba(184, 117, 45, 0.14);
}



/* Ícone */

.construcao-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 51px;
  height: 51px;

  margin-bottom: 20px;

  border-radius: 16px;

  background: rgba(184, 117, 45, 0.12);

  color: #b8752d;

  font-size: 23px;
}



/* Título */

.construcao-benefit-card h3 {
  margin-bottom: 11px;

  color: #25313a;

  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}



/* Texto */

.construcao-benefit-card p {
  margin: 0;

  color: #717980;

  font-size: 13px;
  line-height: 1.7;
}

/* ==================================================
SEÇÃO 3 — TECNOLOGIA E GESTÃO PARA NEGÓCIOS SOB MEDIDA
================================================== */

.construcao-solucao {
  position: relative;
  overflow: hidden;
  padding: 125px 24px;

  background-image:
  linear-gradient(
    90deg,
    rgba(249, 193, 158, 0.053) 0%,
    rgba(201, 128, 77, 0.1) 50%,
    rgba(109, 51, 12, 0.286) 100%
  ),
  url("../images/fundoconstrucaocivil.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.construcao-solucao-container {
  position: relative;
  z-index: 2;

  width: min(1240px, 100%);
  margin: 0 auto;
}



/* ==================================================
ELEMENTOS DECORATIVOS
================================================== */

.construcao-solucao-shape {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}


.construcao-shape-one {
  width: 430px;
  height: 430px;

  top: -250px;
  right: -180px;

  border: 1px solid rgba(184, 117, 45, 0.15);

  box-shadow:
    0 0 0 45px rgba(184, 117, 45, 0.025),
    0 0 0 100px rgba(184, 117, 45, 0.018);
}


.construcao-shape-two {
  width: 330px;
  height: 330px;

  top: 1050px;
  left: -220px;

  background: rgba(184, 117, 45, 0.09);

  filter: blur(8px);
}



/* ==================================================
ABERTURA
================================================== */

.construcao-solucao-intro {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 75px;
  align-items: center;

  margin-bottom: 105px;
}


.construcao-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 24px;
  padding: 10px 17px;

  border-radius: 50px;

  background: rgba(184, 117, 45, 0.1);

  color: #a76525;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}


.construcao-eyebrow i {
  font-size: 17px;
}


.construcao-intro-content h2 {
  margin-bottom: 26px;

  color: #26343e;

  font-size: clamp(39px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -2.2px;
}


.construcao-intro-content h2 span {
  display: block;

  color: #b8752d;
}


.construcao-intro-content p {
  max-width: 670px;

  margin-bottom: 18px;

  color: #393632;

  font-size: 16px;
  line-height: 1.82;
}


.construcao-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;

  margin-top: 35px;
}



/* ==================================================
BOTÕES DA INTRODUÇÃO
================================================== */

.btn-construcao-primary,
.btn-construcao-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;

  min-height: 54px;
  padding: 14px 24px;

  border-radius: 50px;

  font-size: 13px;
  font-weight: 800;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}


.btn-construcao-primary {
  background: #b8752d;

  color: #ffffff;

  box-shadow:
    0 14px 30px rgba(184, 117, 45, 0.25);
}


.btn-construcao-primary:hover {
  transform: translateY(-4px);

  background: #8f571f;

  color: #ffffff;
}


.btn-construcao-secondary {
  border: 1px solid rgba(184, 117, 45, 0.22);

  background: #ffffff;

  color: #a76525;
}


.btn-construcao-secondary:hover {
  transform: translateY(-4px);

  background: #f6eee3;

  color: #8f571f;
}



/* ==================================================
IMAGEM PRINCIPAL
================================================== */

.construcao-main-image {
  position: relative;

  min-height: 620px;
  padding: 12px;

  border-radius: 42px;

  background: #eee4d7;
}


.construcao-main-image::before {
  content: "";

  position: absolute;
  z-index: -1;

  width: 85%;
  height: 85%;

  top: -25px;
  right: -25px;

  border-radius: 42px;

  background:
    repeating-linear-gradient(
      -45deg,
      rgba(184, 117, 45, 0.11) 0,
      rgba(184, 117, 45, 0.11) 1px,
      transparent 1px,
      transparent 11px
    );
}


.construcao-main-image > img {
  width: 100%;
  height: 100%;
  min-height: 596px;

  object-fit: cover;

  border-radius: 32px;
}



/* Card flutuante */

.construcao-floating-card {
  position: absolute;

  right: -30px;
  bottom: 45px;

  display: flex;
  align-items: center;
  gap: 15px;

  max-width: 310px;
  padding: 19px 22px;

  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 21px;

  background: rgba(255, 255, 255, 0.95);

  box-shadow:
    0 22px 50px rgba(80, 55, 30, 0.18);

  backdrop-filter: blur(15px);
}


.construcao-floating-icon {
  display: flex;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  border-radius: 15px;

  background: rgba(184, 117, 45, 0.13);

  color: #b8752d;

  font-size: 22px;
}


.construcao-floating-card strong,
.construcao-floating-card span {
  display: block;
}


.construcao-floating-card strong {
  margin-bottom: 4px;

  color: #26343e;

  font-size: 13px;
  font-weight: 800;
}


.construcao-floating-card span {
  color: #777a7d;

  font-size: 11px;
  line-height: 1.5;
}



/* ==================================================
PAINEL DE INFORMAÇÕES
================================================== */

.construcao-data-panel {
  display: grid;
  grid-template-columns: 0.75fr 0.75fr 1.25fr;
  gap: 22px;

  margin-bottom: 115px;
}


.construcao-highlight-card,
.construcao-information-card {
  position: relative;

  overflow: hidden;

  padding: 32px;

  border-radius: 28px;
}


.construcao-highlight-card {
  background: #26343e;

  box-shadow:
    0 22px 45px rgba(38, 52, 62, 0.18);
}


.construcao-highlight-card::after {
  content: "";

  position: absolute;

  width: 160px;
  height: 160px;

  right: -80px;
  bottom: -80px;

  border-radius: 50%;

  background: rgba(240, 179, 90, 0.18);
}


.construcao-highlight-gold {
  background:
    linear-gradient(
      145deg,
      #a76525,
      #d2974e
    );
}


.construcao-highlight-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  margin-bottom: 34px;
}


.construcao-highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 49px;
  height: 49px;

  border-radius: 15px;

  background: rgba(255, 255, 255, 0.13);

  color: #f1c47f;

  font-size: 22px;
}


.construcao-highlight-label {
  padding: 7px 11px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.1);

  color: rgba(255, 255, 255, 0.82);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}


.construcao-highlight-number {
  display: block;

  margin-bottom: 9px;

  color: #ffffff;

  font-size: 50px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}


.construcao-highlight-card h3 {
  margin-bottom: 15px;

  color: #f1c47f;

  font-size: 17px;
  font-weight: 800;
}


.construcao-highlight-gold h3 {
  color: #ffffff;
}


.construcao-highlight-card p {
  margin-bottom: 20px;

  color: rgba(255, 255, 255, 0.76);

  font-size: 13px;
  line-height: 1.7;
}


.construcao-highlight-card small {
  color: rgba(255, 255, 255, 0.55);

  font-size: 10px;
  line-height: 1.5;
}



/* Card informativo */

.construcao-information-card {
  border: 1px solid rgba(184, 117, 45, 0.14);

  background:
    radial-gradient(
      circle at 95% 5%,
      rgba(184, 117, 45, 0.16),
      transparent 35%
    ),
    #fbf7f1;
}


.construcao-information-label {
  display: block;

  margin-bottom: 17px;

  color: #a76525;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}


.construcao-information-card h3 {
  margin-bottom: 17px;

  color: #26343e;

  font-size: 25px;
  font-weight: 800;
  line-height: 1.25;
}


.construcao-information-card > p {
  margin-bottom: 22px;

  color: #70767a;

  font-size: 15px;
  line-height: 1.7;
}


.construcao-information-list {
  display: grid;
  gap: 15px;
}


.construcao-information-list span {
  display: flex;
  align-items: center;
  gap: 9px;

  color: #545e65;

  font-size: 14px;
}


.construcao-information-list i {
  color: #b8752d;
}



/* ==================================================
DESAFIOS
================================================== */

.construcao-risks {
  margin-bottom: 115px;
}


.construcao-section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 80px;
  align-items: end;

  margin-bottom: 52px;
}


.construcao-small-heading {
  display: block;

  margin-bottom: 16px;

  color: #a76525;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}


.construcao-section-heading h2,
.construcao-carousel-header h2 {
  margin: 0;

  color: #26343e;

  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
}


.construcao-section-heading h2 span {
  color: #b8752d;
}


.construcao-heading-detail {
  display: flex;
  align-items: center;
  gap: 17px;

  padding: 20px;

  border: 1px solid rgba(184, 117, 45, 0.12);
  border-radius: 20px;

  background: #fbf7f1;
}


.construcao-heading-icon {
  display: flex;
  flex: 0 0 52px;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;

  border-radius: 16px;

  background: #b8752d;

  color: #ffffff;

  font-size: 22px;
}


.construcao-heading-detail p {
  margin: 0;

  color: #70767a;

  font-size: 12px;
  line-height: 1.6;
}



/* Grid dos desafios */

.construcao-risk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 19px;
}


.construcao-risk-card {
  position: relative;

  min-height: 305px;

  overflow: hidden;

  padding: 29px 26px;

  border: 1px solid rgba(184, 117, 45, 0.1);
  border-radius: 25px;

  background: #ffffff;

  box-shadow:
    0 15px 38px rgba(80, 55, 30, 0.08);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}


.construcao-risk-card:hover {
  transform: translateY(-9px);

  border-color: #b8752d;

  box-shadow:
    0 24px 45px rgba(184, 117, 45, 0.16);
}


.construcao-risk-number {
  position: absolute;

  top: 18px;
  right: 21px;

  color: rgba(184, 117, 45, 0.1);

  font-size: 43px;
  font-weight: 800;
}


.construcao-risk-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 55px;
  height: 55px;

  margin-bottom: 35px;

  border-radius: 17px;

  background: #b8752d;

  color: #ffffff;

  font-size: 24px;
}


.construcao-risk-card h3 {
  margin-bottom: 13px;

  color: #26343e;

  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}


.construcao-risk-card p {
  margin: 0;

  color: #70767a;

  font-size: 14px;
  line-height: 1.7;
}



/* ==================================================
GESTÃO INTEGRADA
================================================== */

.construcao-control-block {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: center;

  margin-bottom: 120px;
  padding: 55px;

  border-radius: 40px;

  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(184, 117, 45, 0.15),
      transparent 35%
    ),
    #f6eee3;
}


.construcao-control-image {
  position: relative;

  min-height: 500px;
  margin-top: -50px;
}


.construcao-control-image > img {
  width: 100%;
  height: 330px;

  object-fit: contain;

  border-radius: 30px;
}


.construcao-control-detail {
  position: absolute;

  right: 25px;
  bottom: 25px;
  left: 0;

  display: flex;
  align-items: center;
  gap: 13px;

  padding: 17px 19px;

  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 18px;

  background: rgba(38, 52, 62, 0.94);

  color: #ffffff;

  font-size: 14px;
  line-height: 1.5;

  backdrop-filter: blur(12px);
}


.construcao-control-detail i {
  color: #f1c47f;

  font-size: 30px;
}


.construcao-control-content > h2 {
  margin-bottom: 24px;

  color: #26343e;

  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -1.5px;
}


.construcao-control-content > p {
  margin-bottom: 32px;

  color: #70767a;

  font-size: 14px;
  line-height: 1.8;
}


.construcao-control-features {
  display: grid;
  gap: 15px;
}


.construcao-control-feature {
  display: flex;
  gap: 17px;

  padding: 18px;

  border: 1px solid rgba(184, 117, 45, 0.08);
  border-radius: 19px;

  background: #ffffff;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.construcao-control-feature:hover {
  transform: translateX(7px);

  box-shadow:
    0 14px 30px rgba(184, 117, 45, 0.12);
}


.construcao-control-feature > span {
  display: flex;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  border-radius: 14px;

  background: rgba(184, 117, 45, 0.12);

  color: #b8752d;

  font-size: 25px;
}


.construcao-control-feature h3 {
  margin-bottom: 6px;

  color: #26343e;

  font-size: 14px;
  font-weight: 800;
}


.construcao-control-feature p {
  margin: 0;

  color: #757b7f;

  font-size: 11px;
  line-height: 1.6;
}



/* ==================================================
CARROSSEL DE RECURSOS
================================================== */

.construcao-carousel-section {
  margin-bottom: 115px;
}


.construcao-carousel-header {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 70px;
  align-items: end;

  margin-bottom: 45px;
}


.construcao-carousel-header > p {
  margin: 0;

  color: #70767a;

  font-size: 13px;
  line-height: 1.75;
}


.construcao-carousel {
  display: flex;
  gap: 22px;

  overflow-x: auto;

  padding: 10px 5px 30px;

  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;

  scrollbar-width: thin;
  scrollbar-color: #b8752d #eee3d4;
}


.construcao-carousel::-webkit-scrollbar {
  height: 7px;
}


.construcao-carousel::-webkit-scrollbar-track {
  border-radius: 50px;

  background: #eee3d4;
}


.construcao-carousel::-webkit-scrollbar-thumb {
  border-radius: 50px;

  background: #b8752d;
}



/* Card do carrossel */

.construcao-carousel-card {
  flex: 0 0 350px;

  overflow: hidden;

  border: 1px solid rgba(184, 117, 45, 0.1);
  border-radius: 27px;

  background: #ffffff;

  box-shadow:
    0 15px 35px rgba(80, 55, 30, 0.09);

  scroll-snap-align: start;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


.construcao-carousel-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 25px 45px rgba(184, 117, 45, 0.16);
}



/* Área da imagem */

.construcao-carousel-image {
  position: relative;

  height: 220px;

  overflow: hidden;

  background: #eee4d7;
}


.construcao-card-image {
  width: 100%;
  height: 100%;
  min-height: 220px;

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  transition: transform 0.5s ease;
}


.construcao-carousel-card:hover .construcao-card-image {
  transform: scale(1.06);
}



/* ==========================================
IMAGENS DOS CARDS
========================================== */

.construcao-orcamentos-img {
  background-image:
    url("../images/orcamentodetalhadoconstrucaocivil.png");
}


.construcao-pedidos-img {
  background-image:
    url("../images/controledeservicosconstrucaocivil.png");
}


.construcao-materiais-img {
  background-image:
    url("../images/estoqueorganizadoconstrucaocivil.png");
}


.construcao-clientes-img {
  background-image:
    url("../images/cadastroehistoricoconstrucaocivil.png");
}


.construcao-financeiro-img {
  background-image:
    url("../images/controlefinanceiroconstrucaocivil.png");
}



/* Categoria */

.construcao-card-category {
  position: absolute;
  z-index: 2;

  bottom: 17px;
  left: 18px;

  padding: 7px 12px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.94);

  color: #a76525;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}



/* Conteúdo do card */

.construcao-carousel-content {
  position: relative;

  padding: 31px 27px;
}


.construcao-carousel-icon {
  position: absolute;

  top: -28px;
  right: 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 55px;
  height: 55px;

  border: 5px solid #ffffff;
  border-radius: 17px;

  background: #b8752d;

  color: #ffffff;

  font-size: 21px;
}


.construcao-carousel-content h3 {
  margin-bottom: 12px;

  color: #26343e;

  font-size: 18px;
  font-weight: 800;
}


.construcao-carousel-content p {
  margin: 0;

  color: #70767a;

  font-size: 12px;
  line-height: 1.7;
}



/* Navegação */

.construcao-carousel-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;

  margin-top: 19px;
}


.construcao-carousel-navigation > span {
  display: flex;
  align-items: center;
  gap: 8px;

  color: #85827e;

  font-size: 11px;
}


.construcao-carousel-dots {
  display: flex;
  gap: 8px;
}


.construcao-carousel-dots a {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: #ddd0be;

  transition:
    width 0.3s ease,
    background 0.3s ease;
}


.construcao-carousel-dots a:hover {
  width: 28px;

  border-radius: 50px;

  background: #b8752d;
}

/* ==================================================
CHAMADA FINAL
================================================== */

.varejo-final-cta {
  position: relative;

  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 27px;
  align-items: center;

  overflow: hidden;

  padding: 48px 52px;

  border-radius: 32px;

  background:
  linear-gradient(
    125deg,
    #2f2118 0%,
    #8f571f 55%,
    #b8752d 100%
  );

  box-shadow: 0 25px 60px rgba(72, 44, 215, 0.23);
}


.varejo-cta-decoration {
  position: absolute;

  width: 260px;
  height: 260px;

  top: -150px;
  right: 180px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;

  box-shadow:
    0 0 0 35px rgba(255, 255, 255, 0.025),
    0 0 0 75px rgba(255, 255, 255, 0.018);
}


.varejo-cta-icon {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 68px;
  height: 68px;

  border-radius: 21px;

  background: rgba(255, 255, 255, 0.13);

  color: #c9c0ff;

  font-size: 29px;
}


.varejo-cta-content {
  position: relative;
  z-index: 2;
}


.varejo-cta-content span {
  display: block;

  margin-bottom: 8px;

  color: #c9c0ff;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}


.varejo-cta-content h2 {
  margin-bottom: 10px;

  color: #ffffff;

  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.2;
}


.varejo-cta-content p {
  max-width: 650px;

  margin: 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 12px;
  line-height: 1.65;
}


.varejo-cta-button {
  position: relative;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-width: 225px;
  padding: 16px 22px;

  border-radius: 50px;

  background: #ffffff;

  color: #683f0c;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}


.varejo-cta-button:hover {
  transform: translateY(-4px);

  background: #ffedc0;

  color: #7b5710;
}

.mercado-link-ativo {
  color: #ff922d !important;
  font-weight: 700 !important;
}



/* ===========================
MODAL DE ACESSO AOS SISTEMAS
=========================== */

#loginSistemasModal {
    position: fixed;

    z-index: 20010 !important;

    inset: 0;

    width: 100%;
    height: 100%;

    padding-right: 0 !important;

    overflow-x: hidden;
    overflow-y: auto;
}

body.modal-open {
    overflow: hidden !important;

    padding-right: 0 !important;
}



/* ===========================
FUNDO ESCURO DO MODAL
=========================== */

.modal-backdrop {
    z-index: 20000 !important;

    background: #ffffff00 !important;

    transition: opacity 0.28s ease !important;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.68 !important;
}



/* ===========================
ÁREA PRINCIPAL DO MODAL
=========================== */

#loginSistemasModal .modal-dialog {
    display: flex;

    align-items: center;
    justify-content: center;

    width: calc(100% - 40px);

    max-width: 1160px;

    min-height: calc(100vh - 40px);

    margin: 20px auto;
}

.login-modal-content {
    position: relative;

    overflow: hidden;

    width: 100%;

    max-height: calc(100vh - 40px);

    border: 0;

    border-radius: 28px;

    background: #ffffff;

    box-shadow:
        0 24px 60px rgba(8, 18, 35, 0.28);

    backface-visibility: hidden;
}



/* ===========================
BOTÃO FECHAR
=========================== */

.login-modal-close {
    position: absolute;

    z-index: 20;

    top: 20px;
    right: 20px;

    width: 42px;
    height: 42px;

    padding: 0;

    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.94);

    background-size: 13px;

    opacity: 1;

    box-shadow:
        0 10px 26px rgba(20, 20, 60, 0.14);

    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}

.login-modal-close:hover {
    transform: rotate(90deg);

    background-color: #ffffff;
}



/* ===========================
GRID PRINCIPAL
=========================== */

.login-modal-grid {
    display: grid;

    grid-template-columns:
        minmax(340px, 0.85fr)
        minmax(520px, 1.35fr);

    min-height: 650px;
}



/* ===========================
LADO ESQUERDO
=========================== */

.login-modal-visual {
    position: relative;

    display: flex;

    align-items: flex-end;

    overflow: hidden;

    min-height: 650px;

    padding: 54px 48px;
}



/* ===========================
IMAGEM DO LADO ESQUERDO
=========================== */

.login-modal-background {
    position: absolute;

    z-index: 1;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

@media (hover: hover) {

    .login-modal-content:hover .login-modal-background {
        transform: scale(1.025);
    }

}



/* ===========================
SOBREPOSIÇÃO DA IMAGEM
=========================== */

.login-modal-overlay {
    position: absolute;

    z-index: 2;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(55, 55, 97, 0.22) 0%,
            rgba(55, 55, 97, 0.62) 48%,
            rgba(30, 30, 72, 0.96) 100%
        );
}



/* ===========================
CONTEÚDO DO LADO ESQUERDO
=========================== */

.login-modal-visual-content {
    position: relative;

    z-index: 3;

    width: 100%;

    color: #ffffff;
}



/* ===========================
LOGO BMS
=========================== */

.login-modal-logo {
    display: block;

    width: 100px;
    height: auto;

    margin-bottom: 80px;

    object-fit: contain;
}



/* ===========================
ETIQUETA
=========================== */

.login-modal-tag {
    display: inline-flex;

    align-items: center;

    margin-bottom: 18px;

    padding: 9px 15px;

    border: 1px solid rgba(255, 255, 255, 0.24);

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.12);

    color: #ffffff;

    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}



/* ===========================
TÍTULO DO LADO ESQUERDO
=========================== */

.login-modal-visual-content h2 {
    max-width: 420px;

    margin: 0 0 17px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: clamp(30px, 3vw, 45px);

    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -0.04em;
}



/* ===========================
PARÁGRAFO DO LADO ESQUERDO
=========================== */

.login-modal-visual-content > p {
    max-width: 420px;

    margin: 0;

    color: rgba(255, 255, 255, 0.82);

    font-family: "Montserrat", sans-serif;

    font-size: 15px;

    font-weight: 400;

    line-height: 1.75;
}



/* ===========================
REDES SOCIAIS DO MODAL
=========================== */

.login-modal-socials {
    display: flex;

    align-items: center;

    flex-wrap: nowrap;

    width: 100%;

    gap: 7px;

    margin-top: 34px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.login-modal-social-link {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex: 1;

    min-width: 0;
    min-height: 36px;

    gap: 5px;

    padding: 7px 8px;

    border: 1px solid rgba(255, 255, 255, 0.24);

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;

    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    font-weight: 600;

    line-height: 1;

    white-space: nowrap;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.login-modal-social-link i {
    flex-shrink: 0;

    color: #ffffff;

    font-size: 13px;

    line-height: 1;
}

.login-modal-social-link span {
    color: #ffffff;
}

.login-modal-social-link:hover {
    transform: translateY(-3px);

    border-color: rgba(255, 255, 255, 0.5);

    background: rgba(255, 255, 255, 0.17);

    color: #ffffff;

    box-shadow:
        0 12px 25px rgba(15, 15, 40, 0.18);
}

.login-modal-social-link:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.35);

    outline-offset: 3px;
}



/* ===========================
LADO DIREITO
=========================== */

.login-modal-systems {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 72px 55px 45px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(86, 92, 207, 0.09),
            transparent 35%
        ),
        #ffffff;
}



/* ===========================
CABEÇALHO DO LADO DIREITO
=========================== */

.login-modal-header {
    margin-bottom: 30px;
}

.login-modal-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: #565ccf;

    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.login-modal-header h3 {
    margin: 0 0 10px;

    color: #282844;

    font-family: "Poppins", sans-serif;

    font-size: clamp(27px, 3vw, 37px);

    font-weight: 700;

    line-height: 1.18;

    letter-spacing: -0.035em;
}

.login-modal-header p {
    margin: 0;

    color: #77778d;

    font-family: "Montserrat", sans-serif;

    font-size: 14px;

    line-height: 1.7;
}



/* ===========================
GRID DOS SISTEMAS
=========================== */

.login-systems-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 15px;
}



/* ===========================
CARD DE SISTEMA
=========================== */

.login-system-card {
    position: relative;

    display: flex;

    align-items: center;

    gap: 15px;

    min-height: 150px;

    overflow: hidden;

    padding: 21px 20px;

    border: 1px solid #e6e6ef;

    border-radius: 20px;

    background: #ffffff;

    color: inherit;

    text-decoration: none;

    box-shadow:
        0 10px 30px rgba(43, 43, 85, 0.05);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.login-system-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    border-radius: 20px 0 0 20px;

    background: var(--system-color);

    transform: scaleY(0);

    transform-origin: bottom;

    transition: transform 0.35s ease;
}

.login-system-card::after {
    content: "";

    position: absolute;

    right: -70px;
    bottom: -80px;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background: var(--system-background);

    transition: transform 0.4s ease;
}

.login-system-card:hover {
    transform: translateY(-7px);

    border-color: var(--system-border);

    color: inherit;

    box-shadow:
        0 20px 38px rgba(43, 43, 85, 0.12);
}

.login-system-card:hover::before {
    transform: scaleY(1);
}

.login-system-card:hover::after {
    transform: scale(1.2);
}



/* ===========================
CORES DE CADA SISTEMA
=========================== */

.login-system-card-otica {
    --system-color: #565ccf;

    --system-background: rgba(86, 92, 207, 0.08);

    --system-border: rgba(86, 92, 207, 0.35);
}

.login-system-card-gestao {
    --system-color: #9306cf;

    --system-background: rgba(0, 188, 106, 0.08);

    --system-border: rgba(113, 0, 188, 0.35);
}

.login-system-card-winfit {
    --system-color: #0c9519;

    --system-background: rgba(198, 146, 60, 0.09);

    --system-border: rgba(60, 198, 65, 0.4);
}

.login-system-card-automecanica {
    --system-color: #fca038;

    --system-background: rgba(252, 160, 56, 0.1);

    --system-border: rgba(252, 160, 56, 0.4);
}



/* ===========================
ÍCONE DO SISTEMA
=========================== */

.login-system-icon {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 60px;

    width: 60px;
    height: 60px;

    padding: 10px;

    border-radius: 17px;

    background: #f6f6fa00;

    transition:
        transform 0.35s ease,
        background-color 0.35s ease;
}

.login-system-card:hover .login-system-icon {
    transform: scale(1.06);

    background: var(--system-background);
}

.login-system-icon img {
    display: block;

    width: 110%;
    height: 110%;

    object-fit: cover;
}



/* ===========================
INFORMAÇÕES DO SISTEMA
=========================== */

.login-system-information {
    position: relative;

    z-index: 2;

    display: flex;

    flex: 1;

    flex-direction: column;

    min-width: 0;
}

.login-system-category {
    margin-bottom: 4px;

    color: #9292a6;

    font-family: "Montserrat", sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.06em;

    text-transform: uppercase;
}

.login-system-information strong {
    display: block;

    margin-bottom: 6px;

    color: #30304c;

    font-family: "Poppins", sans-serif;

    font-size: 17px;

    font-weight: 700;

    line-height: 1.3;
}

.login-system-information small {
    display: block;

    color: #858598;

    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    font-weight: 400;

    line-height: 1.55;
}



/* ===========================
SETA DO CARD
=========================== */

.login-system-arrow {
    position: absolute;

    z-index: 3;

    top: 15px;
    right: 15px;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 31px;
    height: 31px;

    border-radius: 50%;

    background: #f5f5f9;

    color: #77778e;

    font-size: 13px;

    transition:
        transform 0.35s ease,
        background-color 0.35s ease,
        color 0.35s ease;
}

.login-system-card:hover .login-system-arrow {
    transform: translate(2px, -2px);

    background: var(--system-color);

    color: #ffffff;
}



/* ===========================
RODAPÉ DO MODAL
=========================== */

.login-modal-footer {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #ededf3;

    color: #858598;

    font-family: "Montserrat", sans-serif;

    font-size: 12px;
}

.login-modal-footer i {
    color: #00bc6a;

    font-size: 17px;
}



/* ===========================
ANIMAÇÃO SUAVE DO MODAL
=========================== */

#loginSistemasModal.fade .modal-dialog {
    opacity: 0;

    transform:
        translate3d(0, 14px, 0)
        scale(0.99);

    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.24s ease;

    will-change:
        transform,
        opacity;
}

#loginSistemasModal.show .modal-dialog {
    opacity: 1;

    transform:
        translate3d(0, 0, 0)
        scale(1);
}


/* ===========================
MODAL FALE COM ESPECIALISTA
=========================== */

#especialistaModal {

    position: fixed;

    z-index: 20010 !important;

    inset: 0;

    width: 100%;
    height: 100%;

    padding-right: 0 !important;

    overflow-x: hidden;
    overflow-y: auto;

}



/* ===========================
POSIÇÃO DO MODAL
=========================== */

#especialistaModal .modal-dialog {

    display: flex;

    align-items: center;

    width: calc(100% - 50px);

    max-width: 1240px;

    min-height: calc(100vh - 50px);

    margin: 25px auto;

}



/* ===========================
CONTEÚDO PRINCIPAL
=========================== */

.especialista-modal-content {

    width: 100%;

    max-height: calc(100vh - 50px);

    overflow: hidden;

    border: 0;

    border-radius: 28px;

    background: #ffffff;

    box-shadow:
        0 26px 70px rgba(5, 15, 25, 0.3);

}



/* ===========================
GRID DO MODAL
=========================== */

.especialista-modal-grid {

    grid-template-columns:
        minmax(370px, 0.95fr)
        minmax(570px, 1.25fr);

    min-height: 690px;

}



/* ===========================
LADO ESQUERDO
=========================== */

.especialista-modal-visual {

    min-height: 690px;

}



/* ===========================
BENEFÍCIOS DO LADO ESQUERDO
=========================== */

.especialista-benefits {

    display: flex;

    flex-direction: column;

    gap: 16px;

    margin-top: 30px;

}



.especialista-benefit {

    display: flex;

    align-items: center;

    gap: 13px;

}



.especialista-benefit-icon {

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    border-radius: 13px;

    background: rgba(255, 255, 255, 0.13);

    color: #ffffff;

    font-size: 18px;

}



.especialista-benefit p {

    margin: 0;

    color: rgba(255, 255, 255, 0.9);

    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    font-weight: 500;

    line-height: 1.5;

}



/* ===========================
ÁREA DO FORMULÁRIO
=========================== */

.especialista-modal-form-area {

    display: flex;

    flex-direction: column;

    justify-content: center;

    overflow-y: auto;

    padding: 58px 54px 45px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(86, 92, 207, 0.06),
            transparent 38%
        ),
        #ffffff;

}



/* ===========================
CABEÇALHO DO FORMULÁRIO
=========================== */

.especialista-modal-header {

    margin-bottom: 25px;

}



.especialista-modal-header h3 {

    margin: 0 0 9px;

    color: #282844;

    font-family: "Poppins", sans-serif;

    font-size: clamp(27px, 3vw, 36px);

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -0.035em;

}



.especialista-modal-header p {

    max-width: 600px;

    margin: 0;

    color: #77778d;

    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    line-height: 1.65;

}



/* ===========================
FORMULÁRIO
=========================== */

.especialista-form {

    display: flex;

    flex-direction: column;

    gap: 16px;

}



/* ===========================
LINHAS DO FORMULÁRIO
=========================== */

.especialista-form-row {

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 16px;

}



/* ===========================
CAMPO
=========================== */

.especialista-field {

    display: flex;

    flex-direction: column;

    gap: 7px;

    min-width: 0;

}



.especialista-field-full {

    width: 100%;

}



.especialista-field label {

    color: #282844;

    font-family: "Montserrat", sans-serif;

    font-size: 12px;

    font-weight: 700;

}



/* ===========================
INPUTS E SELECTS
=========================== */

.especialista-field input,
.especialista-field select,
.especialista-field textarea {

    width: 100%;

    border: 1px solid #dedee8;

    border-radius: 15px;

    outline: none;

    background: #f9fafb;

    color: #30304c;

    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;

}



.especialista-field input,
.especialista-field select {

    height: 52px;

    padding: 0 16px;

}



.especialista-field textarea {

    min-height: 120px;

    padding: 15px 16px;

    line-height: 1.6;

    resize: vertical;

}



.especialista-field input::placeholder,
.especialista-field textarea::placeholder {

    color: #9797a7;

}



/* ===========================
FOCO DOS CAMPOS
=========================== */

.especialista-field input:focus,
.especialista-field select:focus,
.especialista-field textarea:focus {

    border-color: rgba(86, 92, 207, 0.65);

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(86, 92, 207, 0.1);

}



/* ===========================
SELECT
=========================== */

.especialista-field select {

    cursor: pointer;

}



/* ===========================
CONSENTIMENTO
=========================== */

.especialista-consent {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: #77778d;

    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    line-height: 1.55;

    cursor: pointer;

}



.especialista-consent input {

    flex: 0 0 15px;

    width: 15px;
    height: 15px;

    margin-top: 2px;

    accent-color: #565ccf;

    cursor: pointer;

}



/* ===========================
BOTÃO ENVIAR
=========================== */

.especialista-submit {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    width: 100%;

    min-height: 54px;

    margin-top: 2px;

    padding: 14px 24px;

    border: 0;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #565ccf,
            #4448aa
        );

    color: #ffffff;

    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 15px 30px rgba(86, 92, 207, 0.22);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;

}



.especialista-submit i {

    font-size: 16px;

    transition: transform 0.3s ease;

}



.especialista-submit:hover {

    transform: translateY(-3px);

    filter: brightness(1.05);

    box-shadow:
        0 20px 36px rgba(86, 92, 207, 0.3);

}



.especialista-submit:hover i {

    transform: translateX(4px);

}



/* ===========================
ANIMAÇÃO SUAVE
=========================== */

#especialistaModal.fade .modal-dialog {

    opacity: 0;

    transform:
        translate3d(0, 16px, 0)
        scale(0.99);

    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.25s ease;

    will-change:
        transform,
        opacity;

}



#especialistaModal.show .modal-dialog {

    opacity: 1;

    transform:
        translate3d(0, 0, 0)
        scale(1);

}

/* ===========================
CAMPO ANTISPAM
=========================== */

.especialista-honey {

    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;

    opacity: 0 !important;

    pointer-events: none !important;

}



/* ===========================
MENSAGEM DO FORMULÁRIO
=========================== */

.especialista-form-status {

    display: none;

    align-items: flex-start;

    gap: 10px;

    width: 100%;

    padding: 13px 15px;

    border: 1px solid transparent;

    border-radius: 13px;

    font-family: "Montserrat", sans-serif;

    font-size: 12px;

    font-weight: 600;

    line-height: 1.55;

}



/* ===========================
MENSAGEM DE SUCESSO
=========================== */

.especialista-form-status.is-success {

    display: flex;

    border-color: rgba(0, 188, 106, 0.28);

    background: rgba(0, 188, 106, 0.1);

    color: #087a48;

}



.especialista-form-status.is-success::before {

    content: "\F26A";

    flex-shrink: 0;

    font-family: "bootstrap-icons";

    font-size: 17px;

    line-height: 1.2;

}



/* ===========================
MENSAGEM DE ERRO
=========================== */

.especialista-form-status.is-error {

    display: flex;

    border-color: rgba(205, 53, 53, 0.25);

    background: rgba(205, 53, 53, 0.08);

    color: #a62525;

}



.especialista-form-status.is-error::before {

    content: "\F33A";

    flex-shrink: 0;

    font-family: "bootstrap-icons";

    font-size: 17px;

    line-height: 1.2;

}



/* ===========================
BOTÃO DURANTE O ENVIO
=========================== */

.especialista-submit:disabled {

    cursor: wait;

    opacity: 0.72;

    transform: none !important;

    box-shadow:
        0 10px 22px rgba(86, 92, 207, 0.16);

}



.especialista-submit.is-loading i {

    animation: especialista-loading 0.8s linear infinite;

}



@keyframes especialista-loading {

    from {

        transform: rotate(0deg);

    }

    to {

        transform: rotate(360deg);

    }

}

/* ==================================================
BOTÃO FLUTUANTE WHATSAPP
================================================== */

.floating-whatsapp {

    position: fixed;

    right: 28px;

    bottom: 28px;

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 68px;

    height: 68px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #25d366,
        #18b956
    );

    color: #ffffff;

    text-decoration: none;

    box-shadow:
        0 15px 35px rgba(37,211,102,.35);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}



.floating-whatsapp:hover{

    transform:
        translateY(-5px)
        scale(1.06);

    color:#fff;

    box-shadow:
        0 22px 45px rgba(37,211,102,.45);

}



.floating-whatsapp i{

    position:relative;

    z-index:3;

    font-size:34px;

}



/* ==================================================
PULSO
================================================== */

.floating-whatsapp-pulse{

    position:absolute;

    inset:0;

    border-radius:50%;

    background:rgba(37,211,102,.35);

    animation:
        whatsappPulse 2.2s infinite;

}



@keyframes whatsappPulse{

    0%{

        transform:scale(.9);

        opacity:.8;

    }

    70%{

        transform:scale(1.55);

        opacity:0;

    }

    100%{

        transform:scale(1.55);

        opacity:0;

    }

}



/* ==================================================
RESPONSIVO
================================================== */

@media(max-width:768px){

    .floating-whatsapp{

        width:60px;

        height:60px;

        right:18px;

        bottom:18px;

    }

    .floating-whatsapp i{

        font-size:30px;

    }

}


/* ===========================
TABLET
=========================== */

@media (max-width: 991px) {

    #especialistaModal .modal-dialog {

        width: calc(100% - 28px);

        min-height: calc(100vh - 28px);

        margin: 14px auto;

    }



    .especialista-modal-content {

        max-height: calc(100vh - 28px);

        overflow-y: auto;

        border-radius: 23px;

    }



    .especialista-modal-grid {

        grid-template-columns: 1fr;

        min-height: auto;

    }



    .especialista-modal-visual {

        min-height: 430px;

    }



    .especialista-modal-form-area {

        overflow: visible;

        padding: 46px 36px 38px;

    }

}



/* ===========================
CELULAR
=========================== */

@media (max-width: 650px) {

    #especialistaModal .modal-dialog {

        width: calc(100% - 18px);

        margin: 9px auto;

    }



    .especialista-modal-content {

        max-height: calc(100vh - 18px);

        border-radius: 19px;

    }



    .especialista-modal-visual {

        min-height: 390px;

        padding: 42px 24px 30px;

    }



    .especialista-benefits {

        gap: 12px;

        margin-top: 22px;

    }



    .especialista-benefit-icon {

        flex-basis: 37px;

        width: 37px;
        height: 37px;

        border-radius: 11px;

        font-size: 15px;

    }



    .especialista-benefit p {

        font-size: 12px;

    }



    .especialista-modal-form-area {

        padding: 38px 21px 28px;

    }



    .especialista-form-row {

        grid-template-columns: 1fr;

        gap: 16px;

    }



    .especialista-field input,
    .especialista-field select {

        height: 50px;

    }



    .especialista-submit {

        min-height: 51px;

    }

}



/* ===========================
CELULAR PEQUENO
=========================== */

@media (max-width: 420px) {

    .especialista-modal-visual {

        min-height: 360px;

    }



    .especialista-modal-header h3 {

        font-size: 26px;

    }



    .especialista-field textarea {

        min-height: 110px;

    }



    .especialista-consent {

        font-size: 10px;

    }

}


/* ===========================
RESPONSIVIDADE
=========================== */

@media (max-width: 991px) {

    #loginSistemasModal .modal-dialog {
        width: calc(100% - 28px);

        min-height: calc(100vh - 28px);

        margin: 14px auto;
    }

    .login-modal-content {
        max-height: calc(100vh - 28px);

        overflow-x: hidden;
        overflow-y: auto;

        border-radius: 22px;
    }

    .login-modal-grid {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .login-modal-visual {
        min-height: 360px;

        padding: 45px 38px;
    }

    .login-modal-logo {
        width: 135px;

        margin-bottom: 24px;
    }

    .login-modal-visual-content h2 {
        max-width: 520px;
    }

    .login-modal-visual-content > p {
        max-width: 550px;
    }

    .login-modal-socials {
        max-width: 560px;

        margin-top: 24px;
    }

    .login-modal-systems {
        padding: 50px 38px 38px;
    }

}

@media (max-width: 650px) {

    #loginSistemasModal .modal-dialog {
        width: calc(100% - 20px);

        min-height: calc(100vh - 20px);

        margin: 10px auto;
    }

    .login-modal-content {
        max-height: calc(100vh - 20px);

        border-radius: 20px;
    }

    .login-modal-close {
        top: 14px;
        right: 14px;

        width: 38px;
        height: 38px;
    }

    .login-modal-visual {
        min-height: 320px;

        padding: 42px 25px 30px;
    }

    .login-modal-visual-content h2 {
        font-size: 30px;
    }

    .login-modal-socials {
        gap: 6px;

        margin-top: 22px;

        padding-top: 20px;
    }

    .login-modal-social-link {
        min-height: 34px;

        padding: 7px 6px;

        font-size: 10px;
    }

    .login-modal-social-link i {
        font-size: 12px;
    }

    .login-modal-systems {
        padding: 39px 20px 28px;
    }

    .login-modal-header {
        margin-bottom: 23px;
    }

    .login-modal-header h3 {
        font-size: 27px;
    }

    .login-systems-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .login-system-card {
        min-height: 125px;

        padding: 18px;
    }

    .login-system-information small {
        max-width: 250px;
    }

}

@media (max-width: 420px) {

    .login-modal-visual {
        min-height: 285px;
    }

    .login-modal-logo {
        width: 115px;

        margin-bottom: 20px;
    }

    .login-modal-tag {
        margin-bottom: 13px;

        padding: 7px 12px;

        font-size: 9px;
    }

    .login-modal-visual-content h2 {
        margin-bottom: 12px;

        font-size: 26px;
    }

    .login-modal-visual-content > p {
        font-size: 13px;

        line-height: 1.65;
    }

    .login-modal-socials {
        flex-wrap: wrap;
    }

    .login-modal-social-link {
        flex: 1 1 calc(50% - 6px);
    }

    .login-modal-systems {
        padding-right: 16px;
        padding-left: 16px;
    }

    .login-system-icon {
        flex-basis: 52px;

        width: 52px;
        height: 52px;
    }

    .login-system-information strong {
        font-size: 16px;
    }

    .login-system-information small {
        font-size: 10px;
    }

}

@media (prefers-reduced-motion: reduce) {

    #loginSistemasModal.fade .modal-dialog,
    .modal-backdrop,
    .login-modal-close,
    .login-modal-background,
    .login-modal-social-link,
    .login-system-card,
    .login-system-card::before,
    .login-system-card::after,
    .login-system-icon,
    .login-system-arrow {
        transition: none !important;
    }

  }


/* ==================================================
RESPONSIVIDADE
================================================== */

@media (max-width: 1050px) {

  .construcao-solucao-intro {
    gap: 45px;
  }


  .construcao-main-image {
    min-height: 540px;
  }


  .construcao-main-image > img {
    min-height: 516px;
  }


  .construcao-data-panel {
    grid-template-columns: repeat(2, 1fr);
  }


  .construcao-information-card {
    grid-column: 1 / -1;
  }


  .construcao-risk-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .construcao-control-block {
    gap: 45px;
    padding: 45px 35px;
  }

}



@media (max-width: 850px) {

  .construcao-solucao-intro {
    grid-template-columns: 1fr;
  }


  .construcao-main-image {
    max-width: 650px;
  }


  .construcao-floating-card {
    right: 20px;
  }


  .construcao-section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }


  .construcao-control-block {
    grid-template-columns: 1fr;
  }


  .construcao-control-image {
    min-height: 400px;
    margin-top: 0;
  }


  .construcao-carousel-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

}



@media (max-width: 650px) {

  .construcao-solucao {
    padding: 90px 18px;
  }


  .construcao-intro-content h2 {
    font-size: 40px;
  }


  .construcao-intro-content p {
    font-size: 15px;
  }


  .construcao-intro-actions {
    flex-direction: column;
  }


  .btn-construcao-primary,
  .btn-construcao-secondary {
    width: 100%;
  }


  .construcao-main-image {
    min-height: 450px;
  }


  .construcao-main-image > img {
    min-height: 426px;
  }


  .construcao-floating-card {
    right: 15px;
    bottom: 20px;
    left: 15px;

    max-width: none;
  }


  .construcao-data-panel {
    grid-template-columns: 1fr;
  }


  .construcao-information-card {
    grid-column: auto;
  }


  .construcao-risk-grid {
    grid-template-columns: 1fr;
  }


  .construcao-risk-card {
    min-height: auto;
  }


  .construcao-control-block {
    padding: 35px 22px;

    border-radius: 28px;
  }


  .construcao-control-image {
    min-height: 330px;
  }


  .construcao-control-image > img {
    height: auto;
  }


  .construcao-control-detail {
    position: relative;

    right: auto;
    bottom: auto;
    left: auto;

    margin-top: 15px;
  }


  .construcao-carousel-card {
    flex-basis: 300px;
  }

}



@media (max-width: 450px) {

  .construcao-intro-content h2 {
    font-size: 35px;
    letter-spacing: -1.5px;
  }


  .construcao-main-image {
    min-height: 390px;
    padding: 8px;

    border-radius: 30px;
  }


  .construcao-main-image > img {
    min-height: 374px;

    border-radius: 24px;
  }


  .construcao-highlight-number {
    font-size: 42px;
  }


  .construcao-section-heading h2,
  .construcao-carousel-header h2,
  .construcao-control-content > h2 {
    font-size: 32px;
  }


  .construcao-carousel-card {
    flex-basis: 275px;
  }


  .construcao-carousel-navigation {
    align-items: flex-start;
    flex-direction: column;
  }

}

/* ==========================================
RESPONSIVIDADE
========================================== */

@media (max-width: 1050px) {

  .construcao-management {
    gap: 45px;

    padding: 50px 40px;
  }

}



@media (max-width: 900px) {

  .construcao-numbers-grid {
    grid-template-columns: 1fr;
  }


  .construcao-number-card {
    min-height: auto;
  }


  .construcao-management {
    grid-template-columns: 1fr;
  }

}



@media (max-width: 650px) {

  .construcao-importancia {
    padding: 90px 18px;
  }


  .construcao-section-header {
    margin-bottom: 50px;
  }


  .construcao-section-header p {
    font-size: 15px;
  }


  .construcao-gestao-logo img {
    width: 230px;

    margin-top: -25px;
  }


  .construcao-number-card {
    padding: 28px 25px;
  }


  .construcao-management {
    padding: 38px 22px;

    border-radius: 28px;
  }


  .construcao-benefits {
    grid-template-columns: 1fr;
  }


  .construcao-benefit-card {
    min-height: auto;
  }

}



@media (max-width: 450px) {

  .construcao-section-header h2 {
    font-size: 32px;
    letter-spacing: -1.3px;
  }


  .construcao-management-content h2 {
    font-size: 32px;
  }


  .construcao-number-content strong {
    font-size: 34px;
  }


  .btn-construcao {
    width: 100%;
  }

}

/* ==========================================
RESPONSIVIDADE
========================================== */

@media (max-width: 992px) {

  .hero-construcao {
    min-height: 850px;

    padding-top: 150px;

    background-position: 62% center;
  }


  .hero-construcao-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(18, 27, 40, 0.96) 0%,
        rgba(28, 45, 62, 0.86) 55%,
        rgba(28, 45, 62, 0.38) 100%
      );
  }


  .hero-construcao-content {
    max-width: 760px;
  }

}



@media (max-width: 768px) {

  .hero-construcao {
    min-height: auto;

    padding:
      145px
      20px
      75px;

    background-position: 68% center;
  }


  .hero-construcao-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(18, 27, 40, 0.97) 0%,
        rgba(28, 45, 62, 0.9) 70%,
        rgba(28, 45, 62, 0.68) 100%
      );
  }


  .hero-construcao-content h1 {
    font-size: clamp(38px, 10vw, 53px);
    letter-spacing: -2px;
  }


  .hero-construcao-content > p {
    font-size: 16px;
    line-height: 1.7;
  }


  .hero-construcao-actions {
    align-items: stretch;
    flex-direction: column;
  }


  .btn-hero-construcao-primary,
  .btn-hero-construcao-secondary {
    width: 100%;
  }


  .hero-construcao-features {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

}



@media (max-width: 480px) {

  .hero-construcao {
    padding:
      125px
      16px
      65px;
  }


  .hero-construcao-eyebrow {
    padding: 9px 14px;

    font-size: 10px;
  }


  .hero-construcao-content h1 {
    margin-bottom: 22px;

    font-size: 38px;
    line-height: 1.08;
  }


  .hero-construcao-content > p {
    margin-bottom: 30px;

    font-size: 15px;
  }


  .hero-construcao-feature {
    font-size: 13px;
  }

}