/* ==========================================
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 VAREJO
========================================== */

.hero-varejo {
  position: relative;

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

  display: flex;
  align-items: center;

  padding: 145px 24px 90px;

  background-image: url("../images/seção1varejo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}


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

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

  background:
    linear-gradient(
      90deg,
      rgba(22, 12, 80, 0.666) 0%,
      rgba(51, 25, 143, 0.133) 43%,
      rgba(73, 44, 215, 0.126) 70%,
      rgba(73, 44, 215, 0.119) 100%
    );
}


/* Sombra inferior para integrar com a próxima seção */

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

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

  height: 170px;

  background:
    linear-gradient(
      to top,
      rgba(16, 8, 61, 0.45),
      transparent
    );

  pointer-events: none;
}


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

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

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


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

.hero-varejo-content {
  max-width: 1000px;

  color: #ffffff;

  animation: heroVarejoFade 1s ease forwards;
}


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

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

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

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

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

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

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

  backdrop-filter: blur(12px);
}

.hero-varejo-eyebrow i {
  color: #c9c0ff;
  font-size: 18px;
}


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

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

  margin-bottom: 28px;

  color: #ffffff;

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

.hero-varejo-content h1 span {
 

  color: #a898f8;
}


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

.hero-varejo-content > p {
  max-width: 720px;

  margin-bottom: 38px;

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

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


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

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

  margin-bottom: 42px;
}


.btn-hero-varejo-primary,
.btn-hero-varejo-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,
    box-shadow 0.3s ease;
}


/* BOTÃO PRINCIPAL */

.btn-hero-varejo-primary {
  border: 1px solid #ffffff;

  background: #ffffff;

  color: #482cd7;

  box-shadow:
    0 18px 40px rgba(18, 8, 71, 0.3);
}

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

  background: #c9c0ff;
  border-color: #c9c0ff;

  color: #24116f;

  box-shadow:
    0 24px 48px rgba(18, 8, 71, 0.4);
}


/* BOTÃO SECUNDÁRIO */

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

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

  color: #ffffff;

  backdrop-filter: blur(12px);
}

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

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

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

  color: #ffffff;
}


/* ANIMAÇÃO DOS ÍCONES */

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

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

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


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

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

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

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

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

.hero-varejo-feature i {
  color: #c9c0ff;
  font-size: 20px;
}


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

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

  border-radius: 50%;

  pointer-events: none;
}


/* Círculo superior direito */

.hero-varejo-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-varejo-decoration-two {
  width: 290px;
  height: 290px;

  right: 12%;
  bottom: -180px;

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

  filter: blur(8px);
}


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

@keyframes heroVarejoFade {

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

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

}



/* ==========================================
SEÇÃO 2 — GESTÃO E MERCADO DO VAREJO
========================================== */

.varejo-importancia {
  position: relative;
  padding: 120px 24px;
  overflow: hidden;

  background: linear-gradient(
    180deg,
    #27175f 0%,
    #102042 20%,
    #1d3275 42%,
    #524c92 66%,
    #8e82ed 84%,
    #c2b9f7 94%,
    #cfc8ed 100%
  );
}


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

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

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


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

.varejo-decoration {
  position: absolute;

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

  pointer-events: none;
}


.varejo-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);
}


.varejo-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);
}

.gestao-logo img{

    width:290px;
    margin-top: -50px;
    margin-bottom:50px;

}


/* ==========================================
CABEÇALHO
========================================== */

.varejo-section-header {
  max-width: 930px;

  margin: 0 auto 70px;

  text-align: center;
}


/* Etiqueta superior */

.varejo-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: #d4cdff;

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

  backdrop-filter: blur(12px);
}

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


/* Título */

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

  color: #ffffff;

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

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

  color: #5d50b3;
}


/* Parágrafo */

.varejo-section-header p {
  max-width: 850px;

  margin: 0 auto;

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

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


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

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

  margin-bottom: 90px;
}


/* Card */

.varejo-number-card {
  position: relative;

  overflow: hidden;

  min-height: 330px;
  padding: 35px;

  
  border-radius: 28px;

  background: rgba(185, 110, 243, 0.26);

  box-shadow: 0 20px 45px rgba(10, 4, 43, 0.14);

  backdrop-filter: blur(14px);

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


/* Efeito decorativo interno */

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

  position: absolute;

  width: 180px;
  height: 180px;

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

  border-radius: 50%;

  background: rgba(191, 181, 255, 0.12);
}


/* Hover */

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

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

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

  box-shadow: 0 30px 55px rgba(10, 4, 43, 0.22);
}


/* Card central destacado */

.varejo-number-card.varejo-card-featured {
  background:
    linear-gradient(
      145deg,
      rgba(137, 113, 255, 0.39),
      rgba(255, 255, 255, 0.1)
    );
}


/* Ícone */

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

  width: 62px;
  height: 62px;

  margin-bottom: 29px;

  border-radius: 19px;

  background: #ffffff;

  color: #482cd7;

  font-size: 27px;

  box-shadow: 0 14px 30px rgba(14, 6, 59, 0.18);
}


/* Conteúdo */

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

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

  margin-bottom: 13px;

  color: #ffffff;

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

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

  color: #bfb5ff;

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

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

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

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


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

.varejo-management {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 65px;
  align-items: center;
  margin-top: 180px;
  padding: 65px;

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

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

 
}


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




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

  color: #180d3e;

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


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

  color: #6d6683;

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


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

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

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

  border-radius: 50px;

  background: #482cd7;

  color: #ffffff;

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

  text-decoration: none;

  box-shadow: 0 16px 35px rgba(72, 44, 215, 0.25);

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


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

  background: #321ab0;

  color: #ffffff;

  box-shadow: 0 22px 42px rgba(72, 44, 215, 0.34);
}


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


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


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

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


.varejo-benefit-card {
  min-height: 225px;
  padding: 27px;

  border: 1px solid rgba(72, 44, 215, 0.08);
  border-radius: 22px;

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

  box-shadow: 0 12px 30px rgba(40, 20, 120, 0.06);

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


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

  border-color: rgba(72, 44, 215, 0.22);

  box-shadow: 0 20px 38px rgba(72, 44, 215, 0.12);
}


/* Ícone dos benefícios */

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

  width: 51px;
  height: 51px;

  margin-bottom: 20px;

  border-radius: 16px;

  background: rgba(72, 44, 215, 0.11);

  color: #482cd7;

  font-size: 23px;
}


/* Títulos */

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

  color: #25135f;

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


/* Textos */

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

  color: #746d88;

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


/* ==================================================
SEÇÃO 3 — TECNOLOGIA E GESTÃO PARA O VAREJO
================================================== */

.varejo-solucao {
  position: relative;

  overflow: hidden;

  padding: 125px 24px;

  background:
    radial-gradient(
      circle at 90% 5%,
      rgba(72, 44, 215, 0.11),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #d7cffdf4 0%,
      #bcb7fefc 48%,
      #ffffff 100%
    );
}


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

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


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

.varejo-solucao-shape {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}


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

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

  border: 1px solid rgba(72, 44, 215, 0.12);

  box-shadow:
    0 0 0 45px rgba(72, 44, 215, 0.025),
    0 0 0 100px rgba(72, 44, 215, 0.018);
}


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

  top: 1050px;
  left: -220px;

  background: rgba(72, 44, 215, 0.08);

  filter: blur(8px);
}


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

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

  margin-bottom: 105px;
}


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

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

  border-radius: 50px;

  background: rgba(72, 44, 215, 0.08);

  color: #482cd7;

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


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


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

  color: #25135f;

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


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

  color: #482cd7;
}


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

  margin-bottom: 18px;

  color: #6c6682;

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


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

  margin-top: 35px;
}


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

.btn-varejo-primary,
.btn-varejo-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-varejo-primary {
  background: #482cd7;

  color: #ffffff;

  box-shadow: 0 14px 30px rgba(72, 44, 215, 0.24);
}


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

  background: #321ab0;

  color: #ffffff;
}


.btn-varejo-secondary {
  border: 1px solid rgba(72, 44, 215, 0.18);

  background: #ffffff;

  color: #482cd7;
}


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

  background: #f0edff;

  color: #482cd7;
}


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

.varejo-main-image {
  position: relative;

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

  border-radius: 42px;

  background: #f1effb;
}


.varejo-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(72, 44, 215, 0.1) 0,
      rgba(72, 44, 215, 0.1) 1px,
      transparent 1px,
      transparent 11px
    );
}


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

  object-fit: cover;

  border-radius: 32px;
}


/* Card flutuante */

.varejo-floating-card {
  position: absolute;

  right: -30px;
  bottom: 45px;

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

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

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

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

  box-shadow: 0 22px 50px rgba(72, 44, 215, 0.17);

  backdrop-filter: blur(15px);
}


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

  width: 48px;
  height: 48px;

  border-radius: 15px;

  background: rgba(72, 44, 215, 0.12);

  color: #482cd7;

  font-size: 22px;
}


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


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

  color: #25135f;

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


.varejo-floating-card span {
  color: #776f8d;

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


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

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

  margin-bottom: 115px;
}


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

  overflow: hidden;

  padding: 32px;

  border-radius: 28px;
}


/* Cards escuros */

.varejo-highlight-card {
  background: #25135f;

  box-shadow: 0 22px 45px rgba(72, 44, 215, 0.16);
}


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

  position: absolute;

  width: 160px;
  height: 160px;

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

  border-radius: 50%;

  background: rgba(191, 181, 255, 0.16);
}


.varejo-highlight-purple {
  background:
    linear-gradient(
      145deg,
      #482cd7,
      #765fff
    );
}


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

  margin-bottom: 34px;
}


.varejo-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: #c9c0ff;

  font-size: 22px;
}


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


.varejo-highlight-number {
  display: block;

  margin-bottom: 9px;

  color: #ffffff;

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


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

  color: #c9c0ff;

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


.varejo-highlight-purple h3 {
  color: #ffffff;
}


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

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

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


.varejo-highlight-card small {
  color: rgba(255, 255, 255, 0.5);

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


/* Card informativo claro */

.varejo-information-card {
  border: 1px solid rgba(72, 44, 215, 0.12);

  background:
    radial-gradient(
      circle at 95% 5%,
      rgba(72, 44, 215, 0.15),
      transparent 35%
    ),
    #f7f5ff;
}


.varejo-information-label {
  display: block;

  margin-bottom: 17px;

  color: #482cd7;

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


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

  color: #25135f;

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


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

  color: #6c6682;

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


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


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

  color: #534a70;

  font-size: 14px;
}


.varejo-information-list i {
  color: #482cd7;
}


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

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


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

  margin-bottom: 52px;
}


.varejo-small-heading {
  display: block;

  margin-bottom: 16px;

  color: #482cd7;

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


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

  color: #25135f;

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


.varejo-section-heading h2 span {
  color: #482cd7;
}


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

  padding: 20px;

  border: 1px solid rgba(72, 44, 215, 0.1);
  border-radius: 20px;

  background: #f7f5ff;
}


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

  width: 52px;
  height: 52px;

  border-radius: 16px;

  background: #482cd7;

  color: #ffffff;

  font-size: 22px;
}


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

  color: #6c6682;

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


/* Grid dos desafios */

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


.varejo-risk-card {
  position: relative;

  min-height: 305px;
  overflow: hidden;

  padding: 29px 26px;

  border: 1px solid rgba(72, 44, 215, 0.09);
  border-radius: 25px;

  background: #ffffff;

  box-shadow: 0 15px 38px rgba(72, 44, 215, 0.07);

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


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

  border-color: #482cd7;

  box-shadow: 0 24px 45px rgba(72, 44, 215, 0.14);
}


.varejo-risk-number {
  position: absolute;

  top: 18px;
  right: 21px;

  color: rgba(72, 44, 215, 0.08);

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


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

  width: 55px;
  height: 55px;

  margin-bottom: 35px;

  border-radius: 17px;

  background: #482cd7;

  color: #ffffff;

  font-size: 24px;
}


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

  color: #25135f;

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


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

  color: #706986;

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


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

.varejo-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(72, 44, 215, 0.14),
      transparent 35%
    ),
    #f3f0ff;
}


.varejo-control-image {
  position: relative;
  margin-top: -50px;
  min-height: 500px;
}


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

  

  border-radius: 30px;
}


.varejo-control-detail {
  position: absolute;

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

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

  padding: 17px 19px;

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

  background: #25135fe6;

  color: #ffffff;

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

  backdrop-filter: blur(12px);
}


.varejo-control-detail i {
  color: #c9c0ff;

  font-size: 30px;
}


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

  color: #25135f;

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


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

  color: #6c6682;

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


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


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

  padding: 18px;

  border: 1px solid rgba(72, 44, 215, 0.07);
  border-radius: 19px;

  background: #ffffff;

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


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

  box-shadow: 0 14px 30px rgba(72, 44, 215, 0.1);
}


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

  width: 44px;
  height: 44px;

  border-radius: 14px;

  background: rgba(72, 44, 215, 0.11);

  color: #482cd7;

  font-size: 25px;
}


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

  color: #25135f;

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


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

  color: #756e8b;

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


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

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


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

  margin-bottom: 45px;
}


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

  color: #6e6785;

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


.varejo-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: #482cd7 #e9e5fa;
}


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


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

  background: #e9e5fa;
}


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

  background: #482cd7;
}


/* Card do carrossel */

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

  overflow: hidden;

  border: 1px solid rgba(72, 44, 215, 0.09);
  border-radius: 27px;

  background: #ffffff;

  box-shadow: 0 15px 35px rgba(72, 44, 215, 0.08);

  scroll-snap-align: start;

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


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

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


/* Área da imagem */

.varejo-carousel-image {
  position: relative;

  height: 220px;

  overflow: hidden;

  background: #f0edff;
}


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

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

  transition: transform 0.5s ease;
}


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


/* Imagens dos cards */

.varejo-vendas-img {
  background-image: url("../images/carrossel1varejo.png");
}


.varejo-estoque-img {
  background-image: url("../images/carrossel2varejo.png");
}


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


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


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


/* Categoria da imagem */

.varejo-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: #482cd7;

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


/* Conteúdo do card */

.varejo-carousel-content {
  position: relative;

  padding: 31px 27px;
}


.varejo-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: #482cd7;

  color: #ffffff;

  font-size: 21px;
}


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

  color: #25135f;

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


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

  color: #706986;

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


/* Navegação */

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

  margin-top: 19px;
}


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

  color: #817a95;

  font-size: 11px;
}


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


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

  border-radius: 50%;

  background: #d5cff0;

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


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

  border-radius: 50px;

  background: #482cd7;
}


/* ==================================================
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,
      #25135f 0%,
      #482cd7 58%,
      #765fff 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: #482cd7;

  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: #c9c0ff;

  color: #25135f;
}

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




















/* ==========================================
RESPONSIVO — TABLETS
========================================== */

@media (max-width: 1050px) {

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

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

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

    padding: 50px;
  }

}


/* ==========================================
RESPONSIVO — CELULARES
========================================== */

@media (max-width: 768px) {

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

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

  .varejo-section-header h2 {
    font-size: 40px;
    letter-spacing: -1.4px;
  }

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

  .varejo-numbers-grid {
    margin-bottom: 65px;
  }

  .varejo-management {
    gap: 45px;

    padding: 38px 26px;

    border-radius: 30px;
  }

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

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

}



/* ==========================================
RESPONSIVO — TABLETS
========================================== */

@media (max-width: 992px) {

  .hero-varejo {
    min-height: 92vh;

    padding:
      135px
      24px
      80px;

    background-position: 62% center;
  }

  .hero-varejo-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(22, 12, 80, 0.96) 0%,
        rgba(50, 25, 143, 0.88) 58%,
        rgba(72, 44, 215, 0.5) 100%
      );
  }

  .hero-varejo-content {
    max-width: 720px;
  }

}


/* ==========================================
RESPONSIVO — CELULARES
========================================== */

@media (max-width: 768px) {

  .hero-varejo {
    min-height: 88vh;

    align-items: center;

    padding:
      125px
      20px
      70px;

    background-position: 68% center;
  }

  .hero-varejo-overlay {
    background:
      linear-gradient(
        rgba(22, 12, 80, 0.91),
        rgba(50, 25, 143, 0.86)
      );
  }

  .hero-varejo-content {
    max-width: 100%;

    text-align: center;
  }

  .hero-varejo-eyebrow {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-varejo-content h1 {
    margin-right: auto;
    margin-left: auto;

    font-size: 45px;
    letter-spacing: -2px;
  }

  .hero-varejo-content > p {
    margin-right: auto;
    margin-left: auto;

    font-size: 16px;
  }

  .hero-varejo-actions {
    justify-content: center;
  }

  .hero-varejo-features {
    justify-content: center;
  }

}


/* ==========================================
RESPONSIVO — CELULARES PEQUENOS
========================================== */

@media (max-width: 480px) {

  .hero-varejo-content h1 {
    font-size: 36px;
    letter-spacing: -1.4px;
  }

  .hero-varejo-content > p {
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-varejo-actions {
    flex-direction: column;
  }

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

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

    width: fit-content;
    margin: 0 auto;

    text-align: left;
  }

}

@media (max-width: 480px) {

  .varejo-section-header h2 {
    font-size: 34px;
  }

  .varejo-number-card {
    padding: 29px 25px;
  }

  .varejo-number-content strong {
    font-size: 37px;
  }

  .varejo-management {
    padding: 32px 21px;
  }

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

  .btn-varejo {
    width: 100%;
  }

}

/* ==================================================
RESPONSIVO — TELAS MÉDIAS
================================================== */

@media (max-width: 1100px) {

  .varejo-solucao-intro,
  .varejo-control-block {
    grid-template-columns: 1fr;
  }

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

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

  .varejo-section-heading,
  .varejo-carousel-header {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

}


/* ==================================================
RESPONSIVO — TABLETS E CELULARES
================================================== */

@media (max-width: 768px) {

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

  .varejo-control-block {
    padding: 28px 20px;
  }

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

  .varejo-main-image,
  .varejo-control-image {
    min-height: 420px;
  }

  .varejo-main-image > img,
  .varejo-control-image > img {
    min-height: 420px;
    height: 420px;
  }

  .varejo-floating-card {
    right: 14px;
    bottom: 18px;
    left: 14px;

    max-width: none;
  }

  .varejo-carousel-card {
    flex-basis: 86vw;
  }

  .varejo-final-cta {
    grid-template-columns: 1fr;

    padding: 34px 26px;
  }

  .varejo-cta-button {
    width: 100%;
    
  }

}


/* ==================================================
RESPONSIVO — CELULARES PEQUENOS
================================================== */

@media (max-width: 480px) {

  .varejo-intro-content h2 {
    font-size: 36px;
    letter-spacing: -1.3px;
  }

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

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

  .varejo-highlight-number {
    font-size: 45px;
  }

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

  .varejo-control-detail {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

}  

 