/* ==========================================
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 PROFISSIONAIS AUTÔNOMOS
========================================== */

.hero-profissionais {
  position: relative;

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

  display: flex;
  align-items: center;

  padding: 145px 24px 90px;

  /*
  INSIRA AQUI A IMAGEM DE FUNDO DA SEÇÃO.

  Exemplo:

  background-image:
    url("../images/hero-profissionais.png");
  */

  background-image:
    url("../images/seção1profissionalautonomo.png");

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

  overflow: hidden;
}



/* ==========================================
CAMADA ESCURA SOBRE A IMAGEM
========================================== */

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

  background:
    linear-gradient(
      90deg,
      rgba(32, 43, 49, 0.96) 0%,
      rgba(60, 74, 82, 0.89) 38%,
      rgba(110, 126, 135, 0.55) 68%,
      rgba(174, 186, 192, 0.16) 100%
    );
}



/* Sombra inferior da seção */

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

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

  height: 180px;

  background:
    linear-gradient(
      to top,
      rgba(28, 38, 43, 0.72),
      transparent
    );

  pointer-events: none;
}



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

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

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



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

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

  color: #ffffff;

  animation:
    heroProfissionaisFade 1s ease forwards;
}



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

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

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

  
  border-radius: 50px;

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

  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-profissionais-eyebrow i {
  color: #d9e1e5;
  font-size: 18px;
}

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

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

.hero-profissionais-content h1 {
  max-width: 920px;

  margin-bottom: 28px;

  color: #ffffff;

  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -3px;
}


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

  margin-top: 7px;

  color: #C6923C
}



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

.hero-profissionais-content > p {
  max-width: 790px;

  margin-bottom: 38px;

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

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



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

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

  margin-bottom: 42px;
}


.btn-hero-profissionais-primary,
.btn-hero-profissionais-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-profissionais-primary {
  border: 1px solid #aebac0;

  background: #aebac0;

  color: #26343b;

  box-shadow:
    0 18px 40px rgba(16, 25, 30, 0.35);
}


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

  border-color: #ffffff;

  background: #ffffff;

  color: #26343b;

  box-shadow:
    0 24px 48px rgba(16, 25, 30, 0.45);
}



/* BOTÃO SECUNDÁRIO */

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

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

  color: #ffffff;

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


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

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

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

  color: #ffffff;
}



/* Movimento dos ícones */

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


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


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



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

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


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

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

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


.hero-profissionais-feature i {
  color: #d9e1e5;
  font-size: 20px;
}



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

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

  border-radius: 50%;

  pointer-events: none;
}



/* Círculo superior direito */

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

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

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

  box-shadow:
    0 0 0 50px rgba(255, 255, 255, 0.026),
    0 0 0 105px rgba(255, 255, 255, 0.017);
}



/* Brilho inferior */

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

  right: 12%;
  bottom: -180px;

  background: rgba(174, 186, 192, 0.24);

  filter: blur(12px);
}



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

@keyframes heroProfissionaisFade {

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

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

}

/* ==========================================
SEÇÃO 2 — GESTÃO PARA PROFISSIONAIS AUTÔNOMOS
========================================== */

.profissionais-importancia {
  position: relative;

  padding: 120px 24px;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #253139 0%,
      #39474f 24%,
      #607079 48%,
      #8e9ca3 72%,
      #aebac0 100%
    );
}



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

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

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



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

.profissionais-decoration {
  position: absolute;

    
  border-radius: 50%;

  pointer-events: none;
}


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

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

  box-shadow:
    0 0 0 45px rgba(255, 255, 255, 0.02),
    0 0 0 95px rgba(255, 255, 255, 0.013);
}


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

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

  box-shadow:
    0 0 0 50px rgba(255, 255, 255, 0.02),
    0 0 0 105px rgba(255, 255, 255, 0.013);
}



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

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

  margin: 0 auto 70px;

  text-align: center;
}



/* Logo */

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

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



/* Etiqueta superior */

.profissionais-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: #e1e7ea;

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

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


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



/* Título */

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

  color: #ffffff;

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


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

  margin-top: 8px;

  color: #C6923C;
}



/* Parágrafo */

.profissionais-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
========================================== */

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

  margin-bottom: 100px;
}



/* Card */

.profissionais-number-card {
  position: relative;

  min-height: 350px;

  overflow: hidden;

  padding: 35px;

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

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

  box-shadow:
    0 20px 45px rgba(16, 25, 30, 0.2);

  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 interno */

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

  position: absolute;

  width: 180px;
  height: 180px;

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

  border-radius: 50%;

  background: rgba(216, 224, 228, 0.13);
}



/* Hover */

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

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

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

  box-shadow:
    0 30px 55px rgba(16, 25, 30, 0.29);
}



/* Card central destacado */

.profissionais-number-card.profissionais-card-featured {
  background:
    linear-gradient(
      145deg,
      rgba(174, 186, 192, 0.38),
      rgba(255, 255, 255, 0.09)
    );
}



/* Ícone */

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

  width: 62px;
  height: 62px;

  margin-bottom: 29px;

  border-radius: 19px;

  background: #ffffff;

  color: #56656d;

  font-size: 27px;

  box-shadow:
    0 14px 30px rgba(16, 25, 30, 0.23);
}



/* Conteúdo */

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


.profissionais-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;
}


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

  color: #e0e7ea;

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


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

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

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



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

.profissionais-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(174, 186, 192, 0.25),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(238, 242, 244, 0.97)
    );

  box-shadow:
    0 35px 80px rgba(22, 31, 36, 0.22);
}



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

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

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

  border-radius: 50px;

  background: rgba(86, 101, 109, 0.1);

  color: #52616a;

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


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


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

  color: #26343b;

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


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

  color: #69767d;

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



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

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

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

  border-radius: 50px;

  background: #5c6d76;

  color: #ffffff;

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

  text-decoration: none;

  box-shadow:
    0 16px 35px rgba(69, 85, 94, 0.28);

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


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

  background: #384950;

  color: #ffffff;

  box-shadow:
    0 22px 42px rgba(56, 73, 80, 0.38);
}


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


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



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

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


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

  padding: 27px;

  border: 1px solid rgba(86, 101, 109, 0.11);
  border-radius: 22px;

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

  box-shadow:
    0 12px 30px rgba(38, 52, 59, 0.07);

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


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

  border-color: rgba(86, 101, 109, 0.35);

  box-shadow:
    0 20px 38px rgba(69, 85, 94, 0.15);
}



/* Ícone */

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

  width: 51px;
  height: 51px;

  margin-bottom: 20px;

  border-radius: 16px;

  background: rgba(174, 186, 192, 0.23);

  color: #52616a;

  font-size: 23px;
}



/* Título */

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

  color: #26343b;

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



/* Texto */

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

  color: #717c82;

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

/* ==================================================
SEÇÃO 3 — GESTÃO PARA PROFISSIONAIS AUTÔNOMOS
================================================== */

.profissionais-solucao {

    position: relative;

    overflow: hidden;

    padding: 125px 24px;

    background-color: floralwhite;
    
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;

}



.profissionais-solucao-container{

    position:relative;

    z-index:2;

    width:min(1240px,100%);

    margin:auto;

}



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

.profissionais-shape{

    position:absolute;

    border-radius:50%;

    pointer-events:none;

}



.profissionais-shape-one{

    width:430px;

    height:430px;

    top:-230px;

    right:-180px;

    border:1px solid rgba(174,186,192,.18);

    box-shadow:

        0 0 0 45px rgba(174,186,192,.05),

        0 0 0 100px rgba(174,186,192,.025);

}



.profissionais-shape-two{

    width:320px;

    height:320px;

    bottom:-170px;

    left:-170px;

    background:rgba(174,186,192,.18);

    filter:blur(10px);

}



/* ==================================================
INTRODUÇÃO
================================================== */

.profissionais-solucao-intro{

    display:grid;

    grid-template-columns:1fr .90fr;

    gap:80px;

    align-items:center;

    margin-bottom:110px;

}



.profissionais-eyebrow{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    margin-bottom:25px;

    border-radius:50px;

    background:#edf2f4;

    color:#56656d;

    font-size:12px;

    font-weight:800;

    text-transform:uppercase;

    letter-spacing:.8px;

}



.profissionais-eyebrow i{

    font-size:17px;

}



.profissionais-intro-content h2{

    margin-bottom:28px;

    color:#252525;

    font-size:clamp(40px,5vw,62px);

    font-weight:800;

    line-height:1.08;

    letter-spacing:-2px;

}



.profissionais-intro-content h2 span{

    display:block;

    color:#C6923C;

}



.profissionais-intro-content p{

    margin-bottom:18px;

    color:#252525;

    font-size:16px;

    line-height:1.9;

}



.profissionais-intro-actions{

    display:flex;

    gap:16px;

    flex-wrap:wrap;

    margin-top:35px;

}



/* BOTÕES */

.btn-profissionais-primary,

.btn-profissionais-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-height:56px;

    padding:15px 28px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    text-decoration:none;

    transition:.30s;

}



.btn-profissionais-primary{

    background:#6b7b84;

    color:#fff;

    box-shadow:0 15px 35px rgba(70,90,100,.28);

}



.btn-profissionais-primary:hover{

    background:#495860;

    transform:translateY(-4px);

    color:#fff;

}



.btn-profissionais-secondary{

    border:1px solid #c8d2d7;

    background:#fff;

    color:#56656d;

}



.btn-profissionais-secondary:hover{

    transform:translateY(-4px);

    background:#eef3f5;

}



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

.profissionais-main-image{

    position:relative;

    min-height:620px;

    padding:12px;

    border-radius:40px;

    background:#dbe3e7;

}



.profissionais-main-image::before{

    content:"";

    position:absolute;

    z-index:-1;

    width:85%;

    height:85%;

    top:-25px;

    right:-25px;

    border-radius:40px;

    background:

        repeating-linear-gradient(

            -45deg,

            rgba(174,186,192,.18) 0,

            rgba(174,186,192,.18) 1px,

            transparent 1px,

            transparent 11px

        );

}



.profissionais-main-image img{

    width:100%;

    height:100%;

    min-height:596px;

    object-fit:cover;

    border-radius:30px;

}



/* ==================================================
CARD FLUTUANTE
================================================== */

.profissionais-floating-card{

    position:absolute;

    right:-25px;

    bottom:45px;

    display:flex;

    align-items:center;

    gap:15px;

    max-width:320px;

    padding:20px;

    border-radius:20px;

    background:rgba(255,255,255,.95);

    box-shadow:0 25px 45px rgba(0,0,0,.15);

}



.profissionais-floating-icon{

    width:50px;

    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:15px;

    background:#dfe7ea;

    color:#56656d;

    font-size:22px;

}



.profissionais-floating-card strong{

    display:block;

    margin-bottom:4px;

    color:#26343b;

    font-size:14px;

}



.profissionais-floating-card span{

    color:#6d7880;

    font-size:12px;

}



/* ==================================================
PAINEL
================================================== */

.profissionais-data-panel{

    display:grid;

    grid-template-columns:.75fr .75fr 1.3fr;

    gap:22px;

    margin-bottom:120px;

}



.profissionais-highlight-card,

.profissionais-information-card{

    border-radius:28px;

    padding:34px;

}



/* CARDS ESCUROS */

.profissionais-highlight-card{

    position:relative;

    overflow:hidden;

    background:#5c6d76;

    color:#fff;

    box-shadow:0 22px 45px rgba(70,90,100,.20);

}



.profissionais-highlight-card::after{

    content:"";

    position:absolute;

    width:170px;

    height:170px;

    right:-90px;

    bottom:-90px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

}



.profissionais-highlight-card strong{

    display:block;

    margin-bottom:10px;

    font-size:48px;

    font-weight:800;

}



.profissionais-highlight-card h3{

    margin-bottom:14px;

    color:#fff;

    font-size:18px;

}



.profissionais-highlight-card p{

    color:rgba(255,255,255,.78);

    line-height:1.7;

    font-size:14px;

}



/* CARD CENTRAL */

.profissionais-highlight-card.destaque{

    background:

        linear-gradient(

            145deg,

            #7f9199,

            #aebac0

        );

}



/* CARD BRANCO */

.profissionais-information-card{

    background:#ffffff;

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}



.profissionais-information-card span{

    display:block;

    margin-bottom:16px;

    color:#5d6e77;

    font-size:11px;

    font-weight:800;

    text-transform:uppercase;

    letter-spacing:1px;

}



.profissionais-information-card h3{

    margin-bottom:18px;

    color:#26343b;

    font-size:30px;

    font-weight:800;

    line-height:1.3;

}



.profissionais-information-card p{

    color:#6c7880;

    line-height:1.8;

    font-size:15px;

}

/* ==================================================
DESAFIOS DO PROFISSIONAL AUTÔNOMO
================================================== */

.profissionais-riscos {
  margin-bottom: 120px;
}



/* Cabeçalho */

.profissionais-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;

  margin-bottom: 52px;
}


.profissionais-heading::after {
  content: "";

  flex: 1;

  height: 1px;
  margin-bottom: 11px;

  background:
    linear-gradient(
      90deg,
      rgba(174, 186, 192, 0.65),
      rgba(174, 186, 192, 0)
    );
}


.profissionais-heading h2 {
  max-width: 760px;

  margin: 0;

  color: #26343b;

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


.profissionais-heading h2 span {
  display: block;

  margin-top: 7px;

  color: #6b7b84;
}



/* ==================================================
GRID DOS DESAFIOS
================================================== */

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



/* Card */

.profissionais-risk-card {
  position: relative;

  min-height: 310px;

  overflow: hidden;

  padding: 31px 27px;

  border: 1px solid rgba(86, 101, 109, 0.11);
  border-radius: 26px;

  background-color: #bb8e2cda;
  
  
}



/* Círculo decorativo */




/* Hover */








/* Ícone */

.profissionais-risk-card > i {
  position: relative;
  z-index: 2;

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

  width: 58px;
  height: 58px;

  margin-bottom: 35px;

  border-radius: 18px;

  background: #657680;

  color: #ffffff;

  font-size: 25px;

}



/* Título */

.profissionais-risk-card h3 {
  position: relative;
  z-index: 2;

  margin-bottom: 14px;

  color: #26343b;

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



/* Texto */

.profissionais-risk-card p {
  position: relative;
  z-index: 2;

  margin: 0;

  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.75;
}



/* Variações dos ícones */

.profissionais-risk-card:nth-child(2) > i {
  background: #788992;
}


.profissionais-risk-card:nth-child(3) > i {
  background: #566770;
}


.profissionais-risk-card:nth-child(4) > i {
  background: #87979f;
}



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

.profissionais-control-block {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;

  margin-bottom: 125px;
  padding: 58px;

  border: 1px solid rgba(174, 186, 192, 0.28);
  border-radius: 42px;

  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(174, 186, 192, 0.25),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #f5f8f9,
      #e8eef1
    );

  box-shadow:
    0 32px 70px rgba(48, 63, 71, 0.13);
}



/* ==================================================
IMAGEM DO DASHBOARD
================================================== */

.profissionais-control-image {
  position: relative;

 min-height: 350px !important;
  height: 350px !important;


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




.profissionais-control-image::after {
  content: "";

  position: absolute;

  width: 190px;
  height: 190px;

  right: -20px;
  bottom: -15px;

  border-radius: 50%;

  background: rgba(174, 186, 192, 0.35);

  filter: blur(2px);
}


.profissionais-control-image img {
  width: 80% !important;
  max-width: 100% !important;

  height: 350px !important;
  min-height: 0 !important;

  object-fit: cover !important;
  object-position: center !important;

  border-radius: 30px;
}



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

.profissionais-control-content > span {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;

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

  border-radius: 50px;

  background: rgba(86, 101, 109, 0.1);

  color: #596a73;

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


.profissionais-control-content > span::before {
  content: "\F3E8";

  font-family: "bootstrap-icons";

  font-size: 16px;
}


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

  color: #26343b;

  font-size: clamp(35px, 4vw, 51px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.6px;
}


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

  color: #6d7980;

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



/* ==================================================
LISTA DE RECURSOS
================================================== */

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


.profissionais-control-feature {
  display: flex;
  align-items: flex-start;
  gap: 17px;

  padding: 19px;

  border: 1px solid rgba(86, 101, 109, 0.09);
  border-radius: 20px;

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

  box-shadow:
    0 10px 28px rgba(55, 69, 76, 0.055);

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


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

  border-color: rgba(86, 101, 109, 0.25);

  box-shadow:
    0 16px 33px rgba(55, 69, 76, 0.12);
}



/* Ícone */

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

  width: 46px;
  height: 46px;

  border-radius: 15px;

  background: rgba(174, 186, 192, 0.24);

  color: #566770;

  font-size: 21px;
}



/* Textos */

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

  color: #26343b;

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


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

  color: #737f85;

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

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

.profissionais-carousel-section {
  margin-bottom: 20px;
}



/* Cabeçalho */

.profissionais-carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;

  margin-bottom: 45px;
}


.profissionais-carousel-header::after {
  content: "";

  flex: 1;

  height: 1px;
  margin-bottom: 12px;

  background:
    linear-gradient(
      90deg,
      rgba(174, 186, 192, 0.75),
      transparent
    );
}


.profissionais-carousel-header h2 {
  max-width: 760px;

  margin: 0;

  color: #26343b;

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



/* ==================================================
ESTRUTURA DO CARROSSEL
================================================== */

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

  overflow-x: auto;

  padding: 10px 5px 32px;

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

  scrollbar-width: thin;
  scrollbar-color: #71828b #dce4e8;
}


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


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

  background: #dce4e8;
}


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

  background: #71828b;
}



/* ==================================================
CARD DO CARROSSEL
================================================== */

.profissionais-carousel-card {
  position: relative;

  flex: 0 0 350px;

  overflow: hidden;

  border: 1px solid rgba(86, 101, 109, 0.11);
  border-radius: 27px;

  background: #ffffff;

  box-shadow:
    0 15px 35px rgba(49, 64, 72, 0.1);

  scroll-snap-align: start;

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


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

  border-color: rgba(86, 101, 109, 0.3);

  box-shadow:
    0 25px 46px rgba(49, 64, 72, 0.17);
}



/* ==================================================
ÁREA DA IMAGEM
================================================== */

.profissionais-card-image {
  position: relative;

  width: 100%;
  height: 235px;

  overflow: hidden;

  background-color: #dfe6e9;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  transition: transform 0.5s ease;
}


.profissionais-carousel-card:hover .profissionais-card-image {
  transform: scale(1.055);
}



/* Camada sobre as imagens */

.profissionais-card-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(30, 43, 49, 0.48),
      rgba(30, 43, 49, 0.03) 65%
    );
}



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

/*
Substitua os nomes abaixo pelas imagens que você criar.
*/

.agenda-img {
  background-image:
    url("../images/z1.png");
}


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


.servicos-img {
  background-image:
    url("../images/z3.png");
}


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


.indicadores-img {
  background-image:
    url("../images/z1.png");
}



/* ==================================================
TÍTULO DO CARD
================================================== */

.profissionais-carousel-card h3 {
  position: relative;

  min-height: 91px;

  display: flex;
  align-items: center;

  margin: 0;
  padding: 28px 27px;

  color: #26343b;

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

.profissionais-carousel-card p {
  margin: 0;

  padding: 0 27px 28px;

  color: #6b7b84;

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


/* Linha decorativa */

.profissionais-carousel-card h3::before {
  content: "";

  width: 35px;
  height: 4px;

  margin-right: 13px;

  border-radius: 50px;

  background: #71828b;

  transition: width 0.3s ease;
}


.profissionais-carousel-card:hover h3::before {
  width: 48px;
}



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

.profissionais-cta {
  position: relative;

  min-height: 660px;

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

  overflow: hidden;

  padding: 110px 24px;

  /*
  INSIRA AQUI A IMAGEM DE FUNDO DA CHAMADA FINAL
  */

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

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



/* ==================================================
CAMADA SOBRE A IMAGEM
================================================== */

.profissionais-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(30, 42, 48, 0.96) 0%,
      rgba(54, 70, 78, 0.88) 48%,
      rgba(104, 122, 131, 0.55) 100%
    );
}



/* Sombra superior */

.profissionais-cta::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;

  height: 130px;

  background:
    linear-gradient(
      to bottom,
      rgba(31, 43, 49, 0.38),
      transparent
    );

  pointer-events: none;
}



/* Elemento decorativo */

.profissionais-cta::after {
  content: "";

  position: absolute;
  z-index: 2;

  width: 490px;
  height: 490px;

  top: -300px;
  right: -170px;

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

  box-shadow:
    0 0 0 55px rgba(255, 255, 255, 0.025),
    0 0 0 115px rgba(255, 255, 255, 0.015);

  pointer-events: none;
}



/* ==================================================
CONTEÚDO DA CHAMADA
================================================== */

.profissionais-cta-content {
  position: relative;
  z-index: 3;

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

  text-align: center;
}



/* Etiqueta */

.profissionais-cta-content > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

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

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

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

  color: #dfe6e9;

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

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


.profissionais-cta-content > span::before {
  content: "\F5DB";

  font-family: "bootstrap-icons";

  font-size: 17px;
}



/* Título */

.profissionais-cta-content h2 {
  max-width: 950px;

  margin: 0 auto 26px;

  color: #ffffff;

  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2.4px;
}



/* Parágrafo */

.profissionais-cta-content p {
  max-width: 760px;

  margin: 0 auto 38px;

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

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



/* ==================================================
BOTÃO DA CHAMADA FINAL
================================================== */

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

  min-height: 59px;
  padding: 17px 32px;

  border: 1px solid #aebac0;
  border-radius: 50px;

  background: #aebac0;

  color: #26343b;

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

  text-decoration: none;

  box-shadow:
    0 20px 42px rgba(12, 21, 25, 0.35);

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


.btn-profissionais-cta::after {
  content: "\F138";

  font-family: "bootstrap-icons";

  font-size: 17px;

  transition: transform 0.3s ease;
}


.btn-profissionais-cta:hover {
  transform: translateY(-5px);

  border-color: #ffffff;

  background: #ffffff;

  color: #26343b;

  box-shadow:
    0 27px 50px rgba(12, 21, 25, 0.44);
}


.btn-profissionais-cta:hover::after {
  transform: translateX(6px);
}

/* ===========================
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 GERAL — SEÇÃO 3
================================================== */

@media (max-width: 1100px) {

  .profissionais-solucao-intro {
    grid-template-columns: 1fr 0.85fr;

    gap: 50px;
  }


  .profissionais-main-image {
    min-height: 550px;
  }


  .profissionais-main-image img {
    min-height: 526px;
  }


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


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

}



@media (max-width: 900px) {

  .profissionais-solucao {
    padding: 100px 22px;
  }


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

    gap: 65px;
    margin-bottom: 85px;
  }


  .profissionais-intro-content {
    max-width: 760px;
  }


  .profissionais-main-image {
    width: min(680px, 100%);
    min-height: 610px;

    margin: 0 auto;
  }


  .profissionais-main-image img {
    min-height: 586px;
  }


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

}



@media (max-width: 768px) {

  .profissionais-solucao {
    padding: 85px 20px;
  }


  .profissionais-intro-content h2 {
    font-size: 39px;
    letter-spacing: -1.5px;
  }


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


  .profissionais-intro-actions {
    align-items: stretch;
    flex-direction: column;

    max-width: 390px;
  }


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


  .profissionais-main-image {
    min-height: 500px;
  }


  .profissionais-main-image img {
    min-height: 476px;
  }


  .profissionais-floating-card {
    right: 15px;
    bottom: 25px;
    left: 15px;

    max-width: none;
  }


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

    margin-bottom: 90px;
  }


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


  .profissionais-highlight-card,
  .profissionais-information-card {
    padding: 29px 25px;
  }


  .profissionais-highlight-card strong {
    font-size: 40px;
  }


  .profissionais-information-card h3 {
    font-size: 26px;
  }


  .profissionais-carousel-header {
    display: block;

    margin-bottom: 35px;
  }


  .profissionais-carousel-header::after {
    display: none;
  }


  .profissionais-carousel-header h2 {
    font-size: 36px;
  }


  .profissionais-carousel-card {
    flex-basis: 310px;
  }


  .profissionais-card-image {
    height: 215px;
  }


  .profissionais-cta {
    min-height: 590px;

    padding: 90px 20px;

    background-position: 65% center;
  }


  .profissionais-cta-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(28, 40, 46, 0.97) 0%,
        rgba(51, 67, 75, 0.92) 70%,
        rgba(82, 99, 108, 0.8) 100%
      );
  }


  .profissionais-cta-content h2 {
    font-size: 42px;
    letter-spacing: -1.7px;
  }


  .profissionais-cta-content p {
    font-size: 15px;
  }

}



@media (max-width: 480px) {

  .profissionais-solucao {
    padding: 75px 16px;
  }


  .profissionais-eyebrow {
    padding: 9px 14px;

    font-size: 9px;
  }


  .profissionais-intro-content h2 {
    font-size: 34px;
  }


  .profissionais-main-image {
    min-height: 420px;

    padding: 8px;

    border-radius: 29px;
  }


  .profissionais-main-image img {
    min-height: 404px;

    border-radius: 23px;
  }


  .profissionais-main-image::before {
    display: none;
  }


  .profissionais-floating-card {
    padding: 16px;
  }


  .profissionais-floating-icon {
    flex: 0 0 44px;

    width: 44px;
    height: 44px;
  }


  .profissionais-highlight-card,
  .profissionais-information-card {
    padding: 26px 21px;

    border-radius: 23px;
  }


  .profissionais-carousel-header h2 {
    font-size: 32px;
  }


  .profissionais-carousel-card {
    flex-basis: 280px;
  }


  .profissionais-card-image {
    height: 195px;
  }


  .profissionais-carousel-card h3 {
    min-height: 84px;

    padding: 24px 21px;

    font-size: 16px;
  }


  .profissionais-cta {
    min-height: 560px;

    padding: 80px 17px;
  }


  .profissionais-cta-content > span {
    font-size: 9px;
  }


  .profissionais-cta-content h2 {
    font-size: 36px;
  }


  .profissionais-cta-content p {
    font-size: 14px;
  }


  .btn-profissionais-cta {
    width: 100%;
    max-width: 350px;

    padding: 16px 22px;
  }

}   

/* ==================================================
RESPONSIVIDADE — PARTE 2
================================================== */

@media (max-width: 1100px) {

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


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

    gap: 45px;
  }


  .profissionais-control-image {
    min-height: auto;
  }


  .profissionais-control-image img {
    max-width: 680px;
  }

}



@media (max-width: 768px) {

  .profissionais-riscos {
    margin-bottom: 85px;
  }


  .profissionais-heading {
    display: block;

    margin-bottom: 38px;
  }


  .profissionais-heading::after {
    display: none;
  }


  .profissionais-heading h2 {
    font-size: 36px;
    letter-spacing: -1.3px;
  }


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


  .profissionais-risk-card {
    min-height: auto;

    padding: 28px 24px;
  }


  .profissionais-risk-card > i {
    margin-bottom: 27px;
  }


  .profissionais-control-block {
    margin-bottom: 90px;
    padding: 40px 27px;

    border-radius: 31px;
  }


  .profissionais-control-image::after {
    width: 130px;
    height: 130px;
  }


  .profissionais-control-content h2 {
    font-size: 36px;
  }


  .profissionais-control-content > p {
    font-size: 15px;
  }

}



@media (max-width: 480px) {

  .profissionais-heading h2 {
    font-size: 32px;
  }


  .profissionais-risk-card {
    padding: 26px 21px;
  }


  .profissionais-control-block {
    padding: 32px 20px;
  }


  .profissionais-control-content h2 {
    font-size: 32px;
  }


  .profissionais-control-feature {
    gap: 13px;

    padding: 16px;
  }


  .profissionais-control-feature > span {
    flex-basis: 42px;

    width: 42px;
    height: 42px;
  }

}

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

@media (max-width: 992px) {

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


  .profissionais-number-card:last-child {
    grid-column: 1 / -1;
  }


  .profissionais-management {
    grid-template-columns: 1fr;

    gap: 50px;
    padding: 50px;
  }

}



@media (max-width: 768px) {

  .profissionais-importancia {
    padding: 90px 20px;
  }


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


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


  .profissionais-numbers-grid {
    grid-template-columns: 1fr;

    margin-bottom: 65px;
  }


  .profissionais-number-card:last-child {
    grid-column: auto;
  }


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


  .profissionais-management {
    padding: 38px 25px;

    border-radius: 30px;
  }


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


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

}



@media (max-width: 480px) {

  .profissionais-importancia {
    padding: 75px 16px;
  }


  .profissionais-gestao-logo img {
    width: 230px;
  }


  .profissionais-section-header h2 {
    font-size: 34px;
    letter-spacing: -1.3px;
  }


  .profissionais-section-eyebrow {
    font-size: 9px;
  }


  .profissionais-number-card {
    padding: 28px 24px;
  }


  .profissionais-management {
    padding: 32px 20px;
  }


  .profissionais-management-content h2 {
    font-size: 34px;
  }


  .btn-profissionais {
    width: 100%;
  }

}


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

@media (max-width: 992px) {

  .hero-profissionais {
    min-height: auto;

    padding:
      160px 24px
      100px;

    background-position: center;
  }


  .hero-profissionais-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(32, 43, 49, 0.96) 0%,
        rgba(60, 74, 82, 0.88) 55%,
        rgba(110, 126, 135, 0.5) 100%
      );
  }


  .hero-profissionais-content {
    max-width: 780px;
  }

}



@media (max-width: 768px) {

  .hero-profissionais {
    padding:
      135px 20px
      80px;

    background-position: 65% center;
  }


  .hero-profissionais-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(29, 40, 46, 0.97) 0%,
        rgba(53, 68, 76, 0.92) 70%,
        rgba(77, 93, 102, 0.8) 100%
      );
  }


  .hero-profissionais-content h1 {
    margin-bottom: 23px;

    font-size: clamp(37px, 11vw, 54px);
    letter-spacing: -2px;
  }


  .hero-profissionais-content > p {
    margin-bottom: 31px;

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


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

    max-width: 390px;
  }


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


  .hero-profissionais-features {
    align-items: flex-start;
    flex-direction: column;

    gap: 15px;
  }


  .hero-profissionais-decoration-one {
    width: 320px;
    height: 320px;

    top: -190px;
    right: -190px;
  }

}



@media (max-width: 480px) {

  .hero-profissionais {
    padding:
      125px 17px
      70px;
  }


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

    font-size: 10px;
  }


  .hero-profissionais-content h1 {
    font-size: 39px;
    line-height: 1.08;
  }


  .hero-profissionais-content > p {
    font-size: 15px;
  }


  .hero-profissionais-feature {
    font-size: 12px;
  }

}