/* =========================================================
   DRAGON ENTERPRISE
   CSS preparado para uso de IMAGENS REAIS
   ========================================================= */


/* =========================================================
   1. VARIÁVEIS GLOBAIS
   ========================================================= */
:root {
  --primary: #6247f5;
  --primary-2: #7c63ff;
  --primary-dark: #302080;

  --ink: #1f2550;
  --muted: #656a83;

  --line: #e9e8f3;
  --surface: #f8f7ff;
  --surface-2: #f0edff;
  --white: #fff;

  --shadow: 0 18px 50px rgba(45, 34, 104, 0.10);
}


/* =========================================================
   2. RESET / BASE
   ========================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}


/* =========================================================
   3. UTILITÁRIOS DE LAYOUT
   ========================================================= */
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 64px 0;
}

.soft {
  background: linear-gradient(180deg, #fff 0, #fbfaff 100%);
}

.center-title {
  margin: 0 0 26px;
  text-align: center;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #242752;
}


/* =========================================================
   4. CABEÇALHO
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f0eff6;
}

.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  gap: 32px;
  overflow: visible;
}

/* Logo oficial em imagem */
.brand {
  width: 210px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  flex-shrink: 0;
  min-width: 0;
}

.brand-logo {
  width: 210px;
  height: 78px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

/* Esconde logo textual antiga, caso ainda exista no HTML */
.brand-mark,
.brand-text {
  display: none !important;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 13px;
  font-weight: 600;
  color: #32365d;
}

.main-nav a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--ink);
  cursor: pointer;
}

.header-cta {
  margin-left: 12px;
}


/* =========================================================
   5. BOTÕES
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 9px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;

  cursor: pointer;
  transition: 0.2s ease;
}

.btn svg {
  width: 17px;
  height: 17px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #7557ff);
  box-shadow: 0 10px 25px rgba(98, 71, 245, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(98, 71, 245, 0.30);
}

.btn-outline {
  background: #fff;
  border-color: #a595ff;
  color: #4e3ed0;
}

.btn-outline:hover {
  background: #f7f4ff;
}

.btn-light {
  padding-inline: 16px;
  background: #fff;
  color: #5d45ea;
}

.btn-light:hover {
  transform: translateY(-2px);
}


/* =========================================================
   6. HERO / PRIMEIRA DOBRA
   ========================================================= */
.hero {
  padding: 48px 0 34px;
  background:
    radial-gradient(circle at 55% 20%, #f1eeff 0, transparent 30%),
    linear-gradient(180deg, #fff 0, #fbfaff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.92fr 0.88fr;
  align-items: center;
  gap: 18px;
}

.eyebrow {
  display: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--primary);
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: -0.035em;
  color: #222756;
}

.hero-copy h1 span {
  color: var(--primary);
}

.hero-copy p {
  max-width: 510px;
  margin-bottom: 21px;
  color: var(--muted);
  font-size: 14px;
}

.hero-copy small {
  display: block;
  margin-top: 12px;
  color: #7d829a;
  font-size: 10px;
}


/* =========================================================
   6.1 IMAGEM DO HERO - FOTO REAL
   HTML sugerido:
   <div class="hero-photo">
     <img class="hero-image" src="assets/hero-mauro.png" alt="">
   </div>
   ========================================================= */
.hero-visual {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-photo {
  width: 100%;
  height: 360px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #f3f5fa;
  box-shadow: 0 10px 30px rgba(30, 36, 75, 0.05);
}

.hero-photo::after {
  display: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 68% center;
}

/* Esconde placeholders antigos, caso ainda existam */
.person-placeholder,
.person-head,
.person-body,
.laptop {
  display: none !important;
}


/* =========================================================
   6.2 PAINEL LATERAL DO HERO
   ========================================================= */
.pain-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;

  padding: 19px;

  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #eceaf5;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.pain-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
  color: #3b3c64;
}

.pain-item small {
  display: block;
  font-size: 10px;
  line-height: 1.35;
  color: #7b7e91;
}

.icon-circle {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;

  display: grid;
  place-items: center;

  border: 1px solid #cfc8ff;
  border-radius: 50%;

  color: var(--primary);
  background: #fbfaff;
}

.icon-circle svg {
  width: 17px;
  height: 17px;
}


/* =========================================================
   7. DIAGNÓSTICO RÁPIDO / SITUAÇÕES
   ========================================================= */
.diagnosis-section {
  padding: 72px 0 62px;

  background:
    radial-gradient(circle at 50% 0%, rgba(119, 87, 255, 0.09), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
}

.diagnosis-heading {
  max-width: 900px;
  margin: 0 auto 34px;

  text-align: center;
}

.diagnosis-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-bottom: 16px;
  padding: 7px 13px;

  border: 1px solid #ded7ff;
  border-radius: 999px;

  background: #f5f1ff;
  color: #6247f5;

  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.diagnosis-badge svg {
  width: 14px;
  height: 14px;
}

.diagnosis-heading h2 {
  margin: 0 0 12px;

  color: #14235e;

  font-size: 31px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.diagnosis-heading h2 span {
  color: #6247f5;
}

.diagnosis-heading p {
  max-width: 760px;
  margin: 0 auto;

  color: #5c6480;

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


/* =========================================================
   CARDS SELECIONÁVEIS
   ========================================================= */
.diagnosis-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;

  align-items: stretch;
}

.diagnosis-card {
  min-height: 170px;
  padding: 20px;

  position: relative;
  grid-column: span 3;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  text-align: left;

  appearance: none;
  border: 1px solid #e1deee;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.98);
  color: #18204e;

  box-shadow: 0 10px 25px rgba(45, 38, 91, 0.04);

  cursor: pointer;

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

.diagnosis-card:hover {
  transform: translateY(-3px);

  border-color: #cfc6ff;

  box-shadow: 0 16px 30px rgba(76, 56, 161, 0.08);
}

.diagnosis-card.is-selected {
  border-color: #7c5cff;

  background:
    linear-gradient(145deg, #ffffff 0%, #faf7ff 100%);

  box-shadow:
    0 16px 34px rgba(98, 71, 245, 0.12);
}

.diagnosis-card-icon {
  width: 50px;
  height: 50px;

  display: grid;
  place-items: center;

  margin-bottom: 16px;

  border-radius: 50%;

  background: #f3edff;
  color: #6247f5;
}

.diagnosis-card-icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.8;
}

.diagnosis-check {
  width: 28px;
  height: 28px;

  position: absolute;
  top: 18px;
  right: 18px;

  display: grid;
  place-items: center;

  border: 2px solid #d4d5df;
  border-radius: 50%;

  background: #ffffff;
  color: transparent;

  transition: 0.2s ease;
}

.diagnosis-check svg {
  width: 16px;
  height: 16px;
  stroke-width: 3;
}

.diagnosis-card.is-selected .diagnosis-check {
  border-color: #6247f5;

  background: linear-gradient(135deg, #7152f4, #5335e7);
  color: #ffffff;

  box-shadow: 0 7px 15px rgba(98, 71, 245, 0.25);
}

.diagnosis-card-text {
  max-width: 92%;

  color: #222a55;

  font-size: 12px;
  line-height: 1.55;
  font-weight: 600;
}

/* centraliza os três últimos cards no desktop */
.diagnosis-card:nth-child(5) {
  grid-column: 2 / span 3;
}

.diagnosis-card:nth-child(6) {
  grid-column: 5 / span 3;
}

.diagnosis-card:nth-child(7) {
  grid-column: 8 / span 3;
}

/* =========================================================
   RESULTADO / CTA
   ========================================================= */
.diagnosis-result {
  margin-top: 26px;
  padding: 20px 24px;

  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 24px;
  align-items: center;

  border: 1px solid #e3dff4;
  border-radius: 18px;

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

  box-shadow: 0 14px 32px rgba(47, 39, 100, 0.055);
}

.diagnosis-score {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: center;
}

.diagnosis-score-icon {
  width: 72px;
  height: 72px;

  display: grid;
  place-items: center;

  border: 5px solid #f0ecff;
  border-radius: 50%;

  background: linear-gradient(135deg, #7455f6, #5133e8);
  color: #ffffff;

  box-shadow:
    0 0 0 2px #6247f5,
    0 10px 20px rgba(98, 71, 245, 0.16);
}

.diagnosis-score-icon svg {
  width: 28px;
  height: 28px;
}

.diagnosis-score-copy strong {
  display: block;

  margin-bottom: 10px;

  color: #172255;

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

.diagnosis-score-copy strong span {
  color: #6247f5;
}

.diagnosis-progress {
  width: 100%;
  height: 8px;

  margin-bottom: 12px;

  overflow: hidden;

  border-radius: 999px;

  background: #e8e8ef;
}

.diagnosis-progress span {
  width: 0;
  height: 100%;

  display: block;

  border-radius: inherit;

  background: linear-gradient(90deg, #7253f5, #5234e8);

  transition: width 0.28s ease;
}

.diagnosis-score-copy p {
  max-width: 520px;

  margin: 0;

  color: #59617e;

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

.diagnosis-action {
  padding-left: 24px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  border-left: 1px solid #e2def2;
}

.diagnosis-action .btn {
  width: 100%;
  min-height: 48px;

  padding: 12px 18px;

  border-radius: 12px;

  font-size: 11px;
}

.diagnosis-benefits {
  margin-top: 14px;

  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.diagnosis-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #515a77;

  font-size: 8.5px;
  line-height: 1.35;
  white-space: nowrap;
}

.diagnosis-benefits svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;

  color: #6247f5;
}

.diagnosis-security {
  margin-top: 15px;

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

  color: #7b8297;

  font-size: 9px;
}

.diagnosis-security svg {
  width: 13px;
  height: 13px;
}


/* =========================================================
   RESPONSIVIDADE - DIAGNÓSTICO
   ========================================================= */
@media (max-width: 1024px) {
  .diagnosis-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .diagnosis-card {
    grid-column: auto;
  }

  .diagnosis-card:nth-child(5),
  .diagnosis-card:nth-child(6),
  .diagnosis-card:nth-child(7) {
    grid-column: auto;
  }

  .diagnosis-card:nth-child(7) {
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
  }

  .diagnosis-result {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .diagnosis-action {
    padding: 18px 0 0;

    border-left: 0;
    border-top: 1px solid #e2def2;
  }
}

@media (max-width: 820px) {
  .diagnosis-section {
    padding: 58px 0 52px;
  }

  .diagnosis-heading h2 {
    font-size: 27px;
  }

  .diagnosis-grid {
    gap: 14px;
  }

  .diagnosis-card {
    min-height: 154px;
  }
}

@media (max-width: 560px) {
  .diagnosis-heading {
    margin-bottom: 26px;
  }

  .diagnosis-heading h2 {
    font-size: 23px;
  }

  .diagnosis-heading p {
    font-size: 12px;
  }

  .diagnosis-grid {
    grid-template-columns: 1fr;
  }

  .diagnosis-card,
  .diagnosis-card:nth-child(7) {
    width: 100%;
    min-height: 132px;

    grid-column: auto;
    justify-self: stretch;
  }

  .diagnosis-card:nth-child(5),
  .diagnosis-card:nth-child(6),
  .diagnosis-card:nth-child(7) {
    grid-column: auto;
  }

  .diagnosis-card {
    padding: 17px;
  }

  .diagnosis-card-icon {
    width: 44px;
    height: 44px;

    margin-bottom: 12px;
  }

  .diagnosis-card-icon svg {
    width: 21px;
    height: 21px;
  }

  .diagnosis-card-text {
    font-size: 11.5px;
  }

  .diagnosis-result {
    padding: 18px;
  }

  .diagnosis-score {
    grid-template-columns: 60px 1fr;
    gap: 12px;
    align-items: center;
  }

  .diagnosis-score-icon {
    width: 56px;
    height: 56px;

    border-width: 4px;
  }

  .diagnosis-score-icon svg {
    width: 24px;
    height: 24px;
  }

  .diagnosis-score-copy strong {
    font-size: 12.5px;
  }

  .diagnosis-score-copy p {
    font-size: 10.5px;
  }

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

  .diagnosis-action .btn {
    font-size: 10px;
  }
}

/* =========================================================
   8. APRESENTAÇÃO DO ERP
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 60px;
  align-items: center;
}

.kicker {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #4a4e6c;
}

.copy-block h2 {
  margin: 10px 0 14px;
  font-size: 31px;
  line-height: 1.17;
  letter-spacing: -0.03em;
}

.lead {
  margin: 0 0 6px;
  font-weight: 800;
}

.copy-block > p:not(.lead) {
  max-width: 520px;
  color: var(--muted);
  font-size: 13px;
}

.benefit-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}

.benefit {
  display: flex;
  gap: 11px;
}

.benefit svg {
  width: 24px;
  flex: 0 0 24px;
  color: var(--primary);
}

.benefit strong {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  color: #5f47e5;
}

.benefit span {
  display: block;
  font-size: 10px;
  color: #686d85;
}


/* =========================================================
   9. MOCKUP DO DASHBOARD - IMAGEM REAL
   HTML sugerido:
   <div class="dashboard-mockup">
     <div class="laptop-frame">
       <img class="dashboard-image" src="assets/dashboard-dragon.png" alt="">
     </div>
   </div>
   ========================================================= */
.dashboard-mockup {
  padding-top: 20px;
}

.laptop-frame {
  position: relative;
  padding: 10px 10px 17px;
  overflow: hidden;
  background: linear-gradient(145deg, #15171d, #3e414a);
  border-radius: 20px 20px 9px 9px;
  box-shadow: 0 26px 50px rgba(22, 22, 34, 0.28);
}

.laptop-frame::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -14px;
  height: 14px;
  background: linear-gradient(#cfd3dc, #9399a7);
  border-radius: 2px 2px 16px 16px;
}

.dashboard-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  background: #fafaff;
}

/* Esconde estrutura antiga do dashboard, caso ainda exista */
.screen,
.side-menu,
.dash-content,
.dash-top,
.pill,
.stats,
.chart-row,
.line-chart,
.donut,
.donut2,
.bars {
  display: none !important;
}


/* =========================================================
   10. IMPLANTAÇÃO ASSISTIDA / REFORMA TRIBUTÁRIA
   ========================================================= */
.two-cards {
  padding: 72px 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(120, 93, 255, 0.07), transparent 34%),
    #faf9ff;
}

.feature-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 22px;
}

.feature-card {
  min-width: 0;
  overflow: hidden;

  border: 1px solid #e3dff2;
  border-radius: 22px;

  box-shadow: 0 16px 40px rgba(39, 32, 90, 0.055);
}


/* =========================================================
   10.1 IMPLANTAÇÃO ASSISTIDA
   ========================================================= */
.implementation-card {
  padding: 30px;

  display: flex;
  flex-direction: column;

  background: #ffffff;
}

.implementation-header {
  margin-bottom: 28px;
}

.feature-eyebrow {
  width: max-content;
  max-width: 100%;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 18px;
  padding: 7px 12px;

  border: 1px solid #ddd6ff;
  border-radius: 999px;

  background: #f7f4ff;
  color: #6247f5;

  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.feature-eyebrow svg {
  width: 15px;
  height: 15px;
}

.implementation-card h3 {
  margin: 0 0 14px;

  color: #14235e;

  font-size: 26px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.implementation-header > p {
  max-width: 640px;
  margin: 0;

  color: #5b6380;

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


/* =========================================================
   FLUXO DA IMPLANTAÇÃO
   ========================================================= */
.implementation-flow {
  position: relative;

  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;

  margin: 2px 0 28px;
}

/* linha que conecta as etapas */
.implementation-flow::before {
  content: "";

  position: absolute;
  top: 52px;
  left: 9%;
  right: 9%;

  height: 2px;

  background: linear-gradient(
    90deg,
    rgba(98, 71, 245, 0.18),
    rgba(98, 71, 245, 0.72),
    rgba(98, 71, 245, 0.18)
  );

  z-index: 0;
}

.implementation-step {
  position: relative;
  z-index: 1;

  min-width: 0;

  padding: 0 4px;

  text-align: center;
}

.step-number {
  width: 25px;
  height: 25px;

  position: absolute;
  top: -3px;
  left: 50%;
  margin-left: -46px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: linear-gradient(135deg, #7252f3, #5537e9);
  color: #ffffff;

  box-shadow: 0 7px 14px rgba(98, 71, 245, 0.22);

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

.step-icon {
  width: 92px;
  height: 92px;

  margin: 0 auto 14px;

  display: grid;
  place-items: center;

  border: 1px solid #ddd7ff;
  border-radius: 50%;

  background:
    radial-gradient(circle at 32% 25%, #ffffff 0%, #faf9ff 58%, #f1edff 100%);

  color: #6247f5;

  box-shadow: 0 8px 22px rgba(71, 55, 145, 0.045);
}

.step-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.8;
}

.implementation-step h4 {
  min-height: 38px;
  margin: 0 0 7px;

  color: #172255;

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

.implementation-step > p {
  margin: 0 auto;

  color: #68708a;

  font-size: 9px;
  line-height: 1.45;
}


/* =========================================================
   RESUMO DA IMPLANTAÇÃO
   ========================================================= */
.implementation-summary {
  margin-top: auto;
  padding: 18px;

  display: grid;
  grid-template-columns: 1.28fr 0.92fr;
  gap: 18px;
  align-items: center;

  border: 1px solid #e6e1fb;
  border-radius: 16px;

  background:
    linear-gradient(135deg, #f9f7ff 0%, #f4f1ff 100%);
}

.summary-main {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  align-items: center;
}

.summary-icon {
  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: linear-gradient(135deg, #7555f6, #5539e9);
  color: #ffffff;

  box-shadow: 0 10px 22px rgba(98, 71, 245, 0.22);
}

.summary-icon svg {
  width: 29px;
  height: 29px;
}

.summary-main strong {
  display: block;
  margin-bottom: 5px;

  color: #172255;

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

.summary-main p {
  margin: 0;

  color: #626b88;

  font-size: 9.5px;
  line-height: 1.55;
}

.summary-benefits {
  padding-left: 18px;

  display: flex;
  flex-direction: column;
  gap: 9px;

  border-left: 1px solid #ded8f7;
}

.summary-benefits span {
  display: flex;
  align-items: flex-start;
  gap: 8px;

  color: #4e5877;

  font-size: 9px;
  line-height: 1.4;
}

.summary-benefits svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;

  color: #6247f5;
}


/* =========================================================
   CTA IMPLANTAÇÃO
   ========================================================= */
.implementation-action {
  margin-top: 20px;

  text-align: center;
}

.implementation-action .btn {
  width: min(100%, 430px);
  min-height: 48px;

  padding: 13px 20px;

  border-radius: 11px;

  font-size: 10.5px;
}

.implementation-action small {
  margin-top: 10px;

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

  color: #747b92;

  font-size: 8.5px;
}

.implementation-action small svg {
  width: 13px;
  height: 13px;

  color: #6247f5;
}


/* =========================================================
   10.2 REFORMA TRIBUTÁRIA
   ========================================================= */
.tax-card {
  padding: 30px;

  display: flex;
  flex-direction: column;

  background:
    radial-gradient(circle at 78% 27%, rgba(164, 142, 255, 0.18), transparent 30%),
    linear-gradient(145deg, #f6f3ff 0%, #efebff 100%);

  color: var(--ink);
}

.tax-main-title {
  max-width: 420px;

  margin: 0 0 22px;

  color: #14235e;

  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.tax-main-title::after {
  content: "";

  width: 42px;
  height: 2px;

  display: block;

  margin-top: 13px;

  border-radius: 999px;

  background: #7050f4;
}


/* =========================================================
   PARTE SUPERIOR - REFORMA
   ========================================================= */
.tax-top {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 12px;
  align-items: center;
}

.tax-copy {
  min-height: 245px;

  padding: 18px;

  display: flex;
  flex-direction: column;

  border-radius: 17px;

  background: linear-gradient(135deg, #6848ee 0%, #7d5df4 52%, #876cf7 100%);
  color: #ffffff;

  box-shadow: 0 16px 30px rgba(98, 71, 245, 0.18);
}

.tax-year-row {
  display: flex;
  align-items: center;
  gap: 11px;

  margin-bottom: 18px;
}

.year-pill {
  min-width: 68px;
  height: 38px;

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

  padding: 0 10px;

  border-radius: 9px;

  background: #ffffff;
  color: #6247f5;

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

.tax-year-row strong {
  color: #ffffff;

  font-size: 9.5px;
  line-height: 1.2;
  font-weight: 800;
}

.tax-card h4 {
  margin: 0 0 11px;

  color: #ffffff;

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

.tax-copy > p {
  margin: 0 0 17px;

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

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

.tax-copy .btn {
  width: 100%;
  min-height: 47px;

  margin-top: auto;
  padding: 11px 13px;

  justify-content: space-between;

  border-radius: 11px;

  background: #ffffff;
  color: #6044e9;

  font-size: 9px;

  box-shadow: 0 10px 20px rgba(41, 25, 105, 0.12);
}

.tax-visual {
  min-height: 250px;

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

  overflow: hidden;

  border-radius: 17px;

  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.88), rgba(239, 234, 255, 0.35) 58%, transparent 75%);
}

.tax-image {
  width: 108%;
  max-width: 330px;
  height: auto;

  display: block;

  object-fit: contain;
  object-position: center;

  transform: translateY(2px);

  filter: drop-shadow(0 16px 22px rgba(57, 39, 128, 0.15));
}


/* =========================================================
   BENEFÍCIOS - REFORMA
   ========================================================= */
.tax-benefits {
  margin-top: 20px;

  display: flex;
  flex-direction: column;
}

.tax-benefit {
  padding: 11px 0;

  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;

  border-bottom: 1px solid #ddd7f2;
}

.tax-benefit:last-child {
  border-bottom: 0;
}

.tax-benefit-icon {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #ebe6ff;
  color: #6247f5;
}

.tax-benefit-icon svg {
  width: 20px;
  height: 20px;
}

.tax-benefit strong {
  display: block;

  margin-bottom: 2px;

  color: #172255;

  font-size: 10.5px;
}

.tax-benefit p {
  margin: 0;

  color: #646c87;

  font-size: 9px;
  line-height: 1.45;
}


/* =========================================================
   CALLOUT - REFORMA
   ========================================================= */
.tax-callout {
  margin-top: auto;
  padding: 14px 16px;

  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;

  border: 1px solid #ded8f6;
  border-radius: 15px;

  background: rgba(255, 255, 255, 0.78);
}

.tax-callout-icon {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: linear-gradient(135deg, #7655f6, #5939ea);
  color: #ffffff;
}

.tax-callout-icon svg {
  width: 23px;
  height: 23px;
}

.tax-callout strong {
  display: block;

  margin-bottom: 4px;

  color: #6247f5;

  font-size: 10.5px;
}

.tax-callout p {
  margin: 0;

  color: #56617d;

  font-size: 9px;
  line-height: 1.48;
}


/* =========================================================
   RESPONSIVIDADE - IMPLANTAÇÃO / REFORMA
   ========================================================= */
@media (max-width: 1180px) {
  .implementation-flow {
    gap: 4px;
  }

  .step-icon {
    width: 82px;
    height: 82px;
  }

  .step-icon svg {
    width: 35px;
    height: 35px;
  }

  .step-number {
    margin-left: -41px;
  }

  .tax-top {
    grid-template-columns: 1fr;
  }

  .tax-visual {
    min-height: 210px;
  }

  .tax-image {
    width: 70%;
    max-width: 300px;
  }
}


@media (max-width: 1024px) {
  .feature-pair {
    grid-template-columns: 1fr;
  }

  .implementation-card,
  .tax-card {
    padding: 28px;
  }

  .implementation-step > p {
    max-width: 130px;
  }

  .tax-top {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .tax-image {
    width: 100%;
  }
}


@media (max-width: 820px) {
  .two-cards {
    padding: 58px 0;
  }

  .implementation-card,
  .tax-card {
    padding: 22px;
  }

  .implementation-card h3,
  .tax-main-title {
    font-size: 22px;
  }

  .implementation-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .implementation-flow::before {
    top: 18px;
    bottom: 18px;
    left: 42px;
    right: auto;

    width: 2px;
    height: auto;
  }

  .implementation-step {
    min-height: 86px;

    padding: 0 0 0 86px;

    text-align: left;
  }

  .step-number {
    top: 0;
    left: 0;

    margin: 0;

    width: 23px;
    height: 23px;
  }

  .step-icon {
    width: 68px;
    height: 68px;

    position: absolute;
    top: 8px;
    left: 13px;

    margin: 0;
  }

  .step-icon svg {
    width: 31px;
    height: 31px;
  }

  .implementation-step h4 {
    min-height: 0;

    padding-top: 12px;

    font-size: 12px;
  }

  .implementation-step > p {
    max-width: none;

    font-size: 10px;
  }

  .implementation-summary {
    grid-template-columns: 1fr;
  }

  .summary-benefits {
    padding: 14px 0 0;

    border-left: 0;
    border-top: 1px solid #ded8f7;
  }

  .tax-top {
    grid-template-columns: 1fr;
  }

  .tax-image {
    width: 72%;
  }
}


@media (max-width: 560px) {
  .implementation-card,
  .tax-card {
    padding: 18px;

    border-radius: 17px;
  }

  .implementation-card h3,
  .tax-main-title {
    font-size: 19px;
  }

  .implementation-header > p {
    font-size: 11.5px;
  }

  .implementation-summary {
    padding: 15px;
  }

  .summary-main {
    grid-template-columns: 48px 1fr;
  }

  .summary-icon {
    width: 46px;
    height: 46px;
  }

  .summary-icon svg {
    width: 24px;
    height: 24px;
  }

  .implementation-action .btn {
    width: 100%;

    font-size: 9px;
  }

  .implementation-action small {
    align-items: flex-start;

    text-align: left;
  }

  .tax-copy {
    padding: 16px;
  }

  .tax-year-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .tax-year-row strong {
    font-size: 9px;
  }

  .tax-card h4 {
    font-size: 16px;
  }

  .tax-image {
    width: 84%;
  }
}

/* =========================================================
   11. RECURSOS DO DRAGON
   ========================================================= */
.capabilities {
  padding: 72px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 99, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
}

.capabilities-heading {
  max-width: 900px;
  margin: 0 auto 38px;
  text-align: center;
}

.capabilities-heading h2 {
  margin: 0 0 10px;

  color: #17245c;

  font-size: 29px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.capabilities-heading p {
  max-width: 760px;
  margin: 0 auto;

  color: #59607c;

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


/* =========================================================
   GRID DOS RECURSOS
   ========================================================= */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.capability-card {
  min-height: 190px;
  padding: 28px 26px;

  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 22px;

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

  border: 1px solid #ded9f5;
  border-radius: 18px;

  box-shadow:
    0 12px 30px rgba(42, 37, 97, 0.055);

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

.capability-card:hover {
  transform: translateY(-4px);

  border-color: #cfc5ff;

  box-shadow:
    0 18px 38px rgba(69, 52, 151, 0.10);
}


/* =========================================================
   ÍCONES
   ========================================================= */
.capability-icon {
  width: 104px;
  height: 104px;

  display: grid;
  place-items: center;

  border: 1px solid #d7d0ff;
  border-radius: 50%;

  background:
    radial-gradient(circle at 35% 30%, #ffffff 0%, #faf8ff 58%, #f1edff 100%);

  color: #5f42f4;
}

.capability-icon svg {
  width: 52px;
  height: 52px;

  stroke-width: 1.8;
}


/* =========================================================
   CONTEÚDO DOS CARDS
   ========================================================= */
.capability-content h3 {
  margin: 0 0 9px;

  color: #10194d;

  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.capability-content p {
  margin: 0;

  color: #4f5875;

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


/* =========================================================
   CTA DA SEÇÃO
   ========================================================= */
.capabilities-cta {
  margin-top: 36px;

  display: flex;
  justify-content: center;
}

.capabilities-cta .btn {
  min-width: 380px;
  min-height: 54px;

  padding: 14px 28px;

  border-radius: 12px;

  font-size: 13px;
}

.capabilities-cta .btn svg {
  width: 20px;
  height: 20px;
}


/* =========================================================
   12. COMPARATIVO
   ========================================================= */
.comparison {
  padding: 72px 0;

  background:
    radial-gradient(circle at 84% 14%, rgba(116, 83, 246, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
}


/* =========================================================
   CABEÇALHO DO COMPARATIVO
   ========================================================= */
.comparison-heading {
  max-width: 820px;
  margin: 0 auto 32px;

  text-align: center;
}

.comparison-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-bottom: 15px;
  padding: 7px 13px;

  border: 1px solid #ded7ff;
  border-radius: 999px;

  background: #f5f1ff;
  color: #6247f5;

  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.comparison-badge svg {
  width: 15px;
  height: 15px;
}

.comparison-heading h2 {
  margin: 0 0 10px;

  color: #14235e;

  font-size: 31px;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.comparison-heading p {
  max-width: 650px;
  margin: 0 auto;

  color: #59617d;

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

.comparison-heading-line {
  width: 52px;
  height: 2px;

  display: block;

  margin: 14px auto 0;

  border-radius: 999px;

  background: #7657f5;
}


/* =========================================================
   QUADRO COMPARATIVO
   ========================================================= */
.comparison-board {
  display: grid;
  grid-template-columns: 1fr 1fr;

  overflow: hidden;

  border: 1px solid #ddd7f2;
  border-radius: 18px;

  background: #ffffff;

  box-shadow: 0 16px 36px rgba(42, 34, 91, 0.055);
}

.comparison-column-title {
  min-height: 68px;

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

  padding: 16px 24px;

  border-bottom: 1px solid #e8e4f5;
}

.comparison-column-title--limit {
  color: #4a4f72;
  background: linear-gradient(180deg, #f7f6fc 0%, #f2f1f8 100%);
}

.comparison-column-title--dragon {
  color: #5a3fe8;
  background: linear-gradient(180deg, #f1edff 0%, #ebe5ff 100%);
}

.comparison-title-icon {
  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  border-radius: 50%;
}

.comparison-column-title--limit .comparison-title-icon {
  background: #dedeea;
  color: #696e8c;
}

.comparison-column-title--dragon .comparison-title-icon {
  background: linear-gradient(135deg, #795af6, #5939e9);
  color: #ffffff;

  box-shadow: 0 8px 18px rgba(98, 71, 245, 0.20);
}

.comparison-title-icon svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.5;
}

.comparison-column-title strong {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
}


/* =========================================================
   ITENS
   ========================================================= */
.comparison-item {
  min-height: 94px;

  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;

  padding: 17px 22px;

  border-bottom: 1px solid #ece9f4;
}

.comparison-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.comparison-item--limit {
  border-right: 1px solid #e5e1f1;

  background: #ffffff;
}

.comparison-item--dragon {
  background:
    linear-gradient(90deg, rgba(246, 243, 255, 0.85), rgba(255, 255, 255, 0.96));
}

.comparison-item-icon {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #f1eefb;
  color: #5946c7;
}

.comparison-item--dragon .comparison-item-icon {
  background: #eee8ff;
  color: #6041ef;
}

.comparison-item-icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.8;
}

.comparison-item strong {
  display: block;

  margin-bottom: 4px;

  color: #172255;

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

.comparison-item--dragon strong {
  color: #5638e5;
}

.comparison-item p {
  margin: 0;

  color: #626a84;

  font-size: 9.5px;
  line-height: 1.45;
}


/* =========================================================
   RESULTADO / CTA DO COMPARATIVO
   ========================================================= */
.comparison-result {
  margin-top: 22px;
  padding: 18px 22px;

  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 22px;
  align-items: center;

  border: 1px solid #ddd7f4;
  border-radius: 16px;

  background:
    linear-gradient(135deg, #faf8ff 0%, #f5f2ff 100%);

  box-shadow: 0 12px 26px rgba(55, 43, 119, 0.045);
}

.comparison-result-copy {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 16px;
  align-items: center;
}

.comparison-result-icon {
  width: 64px;
  height: 64px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: linear-gradient(135deg, #7555f6, #5132e6);
  color: #ffffff;

  box-shadow: 0 10px 22px rgba(98, 71, 245, 0.20);
}

.comparison-result-icon svg {
  width: 30px;
  height: 30px;
}

.comparison-result-copy strong {
  display: block;

  margin-bottom: 5px;

  color: #5136dc;

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

.comparison-result-copy p {
  max-width: 390px;
  margin: 0;

  color: #58617e;

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

.comparison-result-action {
  padding-left: 22px;

  border-left: 1px solid #dfdaf2;

  text-align: center;
}

.comparison-result-action .btn {
  width: 100%;
  min-height: 48px;

  padding: 12px 20px;

  border-radius: 11px;

  font-size: 10.5px;
}

.comparison-result-action small {
  margin-top: 9px;

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

  color: #69718b;

  font-size: 8.5px;
  line-height: 1.4;
}

.comparison-result-action small svg {
  width: 14px;
  height: 14px;

  color: #6247f5;
}


/* =========================================================
   RESPONSIVIDADE - COMPARATIVO
   ========================================================= */
@media (max-width: 1024px) {
  .comparison-item {
    grid-template-columns: 46px 1fr;
    gap: 11px;

    padding: 16px;
  }

  .comparison-item-icon {
    width: 40px;
    height: 40px;
  }

  .comparison-result {
    grid-template-columns: 1fr;
  }

  .comparison-result-action {
    padding: 18px 0 0;

    border-left: 0;
    border-top: 1px solid #dfdaf2;
  }
}


@media (max-width: 820px) {
  .comparison {
    padding: 58px 0;
  }

  .comparison-heading h2 {
    font-size: 27px;
  }

  .comparison-board {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .comparison-column-title {
    justify-content: flex-start;
  }

  .comparison-column-title--limit {
    order: 1;
  }

  .comparison-column-title--dragon {
    order: 7;
  }

  .comparison-item {
    min-height: auto;
  }

  .comparison-item--limit {
    border-right: 0;
  }

  /*
     Como o grid de desktop alterna esquerda/direita,
     no mobile reorganizamos visualmente pelos nth-child.
  */
  .comparison-board > :nth-child(3) { order: 2; }
  .comparison-board > :nth-child(5) { order: 3; }
  .comparison-board > :nth-child(7) { order: 4; }
  .comparison-board > :nth-child(9) { order: 5; }
  .comparison-board > :nth-child(11) { order: 6; }

  .comparison-board > :nth-child(4) { order: 8; }
  .comparison-board > :nth-child(6) { order: 9; }
  .comparison-board > :nth-child(8) { order: 10; }
  .comparison-board > :nth-child(10) { order: 11; }
  .comparison-board > :nth-child(12) { order: 12; }

  .comparison-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid #ece9f4;
  }

  .comparison-board > :last-child {
    border-bottom: 0;
  }
}


@media (max-width: 560px) {
  .comparison-heading h2 {
    font-size: 23px;
  }

  .comparison-heading p {
    font-size: 12px;
  }

  .comparison-column-title {
    min-height: 58px;
    padding: 14px 16px;
  }

  .comparison-column-title strong {
    font-size: 13px;
  }

  .comparison-item {
    grid-template-columns: 40px 1fr;

    padding: 15px 14px;
  }

  .comparison-item-icon {
    width: 36px;
    height: 36px;
  }

  .comparison-item-icon svg {
    width: 18px;
    height: 18px;
  }

  .comparison-item strong {
    font-size: 10.8px;
  }

  .comparison-item p {
    font-size: 9px;
  }

  .comparison-result {
    padding: 16px;
  }

  .comparison-result-copy {
    grid-template-columns: 52px 1fr;
    gap: 12px;
  }

  .comparison-result-icon {
    width: 50px;
    height: 50px;
  }

  .comparison-result-icon svg {
    width: 24px;
    height: 24px;
  }

  .comparison-result-action .btn {
    font-size: 9.5px;
  }

  .comparison-result-action small {
    align-items: flex-start;
    text-align: left;
  }
}

/* =========================================================
   13. CTA FINAL - FOTO REAL
   HTML sugerido:
   <div class="support-avatar">
     <img class="support-image" src="assets/support-person.png" alt="">
   </div>
   ========================================================= */
.final-cta {
  padding-top: 35px;
}

.cta-box {
  min-height: 180px;
  padding: 0 30px;

  display: grid;
  grid-template-columns: 180px 1fr 330px;
  align-items: center;
  gap: 28px;

  overflow: hidden;
  border: 1px solid #e8e6f4;
  border-radius: 16px;
  background: linear-gradient(90deg, #f7f5ff, #fff);
}

.support-avatar {
  height: 180px;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #eef1f8;
}

.support-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

/* Esconde avatar desenhado antigo */
.avatar-head,
.avatar-body,
.headset {
  display: none !important;
}

.cta-copy span {
  font-size: 10px;
  font-weight: 800;
}

.cta-copy h2 {
  margin: 3px 0 5px;
  font-size: 28px;
}

.cta-copy p {
  max-width: 600px;
  font-size: 11px;
  color: #6c7087;
}

.cta-action {
  padding-left: 24px;
  border-left: 1px solid #e7e4f5;
}

.whatsapp-title {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-title svg {
  width: 42px;
  height: 42px;
  color: #2cc75d;
}

.whatsapp-title strong {
  font-size: 12px;
  line-height: 1.3;
}


/* =========================================================
   14. RODAPÉ
   ========================================================= */
.site-footer {
  padding: 42px 0 16px;
  background: #fff;
  border-top: 1px solid #eeeef5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 38px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Se quiser usar imagem real no rodapé */
.footer-brand {
  margin-bottom: 12px;
}

.footer-logo {
  width: 150px;
  height: auto;
  display: block;
  object-fit: contain;
}

.footer-grid p {
  max-width: 230px;
  font-size: 10px;
  color: #7b7f93;
}

.footer-grid h4 {
  margin: 0 0 10px;
  font-size: 11px;
  color: #5942d5;
}

.footer-grid a {
  margin: 3px 0;
  font-size: 9px;
  color: #666a80;
}

.footer-grid a:hover {
  color: var(--primary);
}

.socials {
  display: flex;
  gap: 9px;
  margin-top: 10px;
}

.socials a {
  width: 24px;
  height: 24px;

  display: grid;
  place-items: center;

  border: 1px solid #e6e3f5;
  border-radius: 7px;

  color: var(--primary);
  font-weight: 700;
}

.footer-bottom {
  margin-top: 25px;
  padding-top: 14px;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  border-top: 1px solid #f0eff5;

  font-size: 8px;
  color: #9295a5;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  font-size: 8px;
}


/* =========================================================
   15. BOTÃO FLUTUANTE
   ========================================================= */
.floating-chat {
  width: 50px;
  height: 50px;

  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: linear-gradient(135deg, #7358ff, #4f37df);
  color: #fff;

  box-shadow: 0 14px 26px rgba(81, 58, 222, 0.35);
}

.floating-chat svg {
  width: 23px;
}


/* =========================================================
   16. COOKIE / CONSENT MODE V2
   ========================================================= */
.cookie-consent {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 20px;

  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;

  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e4e1f3;
  border-radius: 16px;

  box-shadow: 0 18px 55px rgba(30, 28, 70, 0.18);
  backdrop-filter: blur(10px);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--ink);
}

.cookie-consent__copy p {
  max-width: 650px;
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted);
}

.cookie-consent__actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.cookie-consent__actions .btn {
  min-width: 104px;
}


/* =========================================================
   17. RESPONSIVIDADE — TABLET / NOTEBOOK
   ========================================================= */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pain-panel {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .split {
    grid-template-columns: 1fr;
  }

  .dashboard-mockup {
    max-width: 760px;
    width: 100%;
    margin: auto;
  }

  .feature-pair {
    grid-template-columns: 1fr;
  }

  .capabilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-card {
    grid-template-columns: 94px 1fr;
  }

  .capability-icon {
    width: 88px;
    height: 88px;
  }

  .capability-icon svg {
    width: 44px;
    height: 44px;
  }

  .cta-box {
    grid-template-columns: 150px 1fr;
  }

  .cta-action {
    grid-column: 2;
    padding: 0 0 24px;
    border-left: 0;
  }

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


/* =========================================================
   18. RESPONSIVIDADE — TABLET / MOBILE
   ========================================================= */
@media (max-width: 820px) {
  .header-inner {
    height: 76px;
  }

  .brand {
    width: 160px;
    height: 68px;
  }

  .brand-logo {
    width: 160px;
    height: 62px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .menu-toggle svg {
    width: 26px;
    height: 26px;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;

    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;

    padding: 18px 24px;

    background: #fff;
    border-bottom: 1px solid #eceaf5;

    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.06);
  }

  .main-nav.open {
    display: flex;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 31px;
  }

  .hero-visual {
    order: 2;
  }

  .pain-panel {
    order: 3;
    grid-template-columns: 1fr 1fr;
  }

  .hero-photo {
    max-width: 560px;
    margin: auto;
  }

  .feature-pair {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .capabilities {
    padding: 58px 0;
  }

  .capabilities-heading {
    margin-bottom: 30px;
  }

  .capabilities-heading h2 {
    font-size: 25px;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .capability-card {
    min-height: 160px;
    grid-template-columns: 90px 1fr;
    padding: 22px;
  }

  .capability-icon {
    width: 82px;
    height: 82px;
  }

  .capability-icon svg {
    width: 40px;
    height: 40px;
  }

  .capabilities-cta .btn {
    min-width: 320px;
  }

  .cta-box {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .support-avatar {
    display: none;
  }

  .cta-action {
    grid-column: auto;
    padding: 18px 0 0;
    border-top: 1px solid #e7e4f5;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .tax-card {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .tax-visual {
    min-height: 320px;
  }

  .tax-image {
    width: 112%;
    height: auto;
    max-width: none;
    min-height: 0;
    transform: scale(1.08);
    object-fit: contain;
  }

}


/* =========================================================
   19. RESPONSIVIDADE — MOBILE
   ========================================================= */
@media (max-width: 560px) {
  .brand {
    width: 135px;
    height: 60px;
  }

  .brand-logo {
    width: 135px;
    height: 56px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 48px 0;
  }

  .hero-copy h1 {
    font-size: 26px;
  }

  .hero-copy p {
    font-size: 13px;
  }

  .btn {
    width: 100%;
  }

  .pain-panel,
  .problem-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    height: 320px;
  }

  .dashboard-image {
    border-radius: 8px;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .capabilities {
    padding: 48px 0;
  }

  .capabilities-heading h2 {
    font-size: 22px;
  }

  .capabilities-heading p {
    font-size: 13px;
  }

  .capability-card {
    grid-template-columns: 68px 1fr;
    gap: 16px;

    min-height: 132px;
    padding: 18px 16px;

    border-radius: 15px;
  }

  .capability-icon {
    width: 64px;
    height: 64px;
  }

  .capability-icon svg {
    width: 32px;
    height: 32px;
  }

  .capability-content h3 {
    margin-bottom: 5px;
    font-size: 16px;
  }

  .capability-content p {
    font-size: 11.5px;
  }

  .capabilities-cta {
    margin-top: 26px;
  }

  .capabilities-cta .btn {
    width: 100%;
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .tax-card {
    grid-template-columns: 1fr;
  }

  .tax-visual {
    min-height: 260px;
  }

  .tax-image {
    width: 108%;
    height: auto;
    max-width: none;
    min-height: 0;
    object-fit: contain;
    transform: scale(1.05);
  }

}


/* =========================================================
   20. RESPONSIVIDADE — BANNER DE COOKIES
   ========================================================= */
@media (max-width: 700px) {
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;

    display: block;
    padding: 16px;
  }

  .cookie-consent__actions {
    margin-top: 12px;
  }

  .cookie-consent__actions .btn {
    width: 100%;
  }
}


/* =========================================================
   21. HERO RESPONSIVO — AJUSTE FINAL
   Mantém o HTML atual e melhora desktop, notebook, tablet e mobile
   ========================================================= */

/* Desktop amplo */
.hero {
  padding: clamp(34px, 4vw, 64px) 0 clamp(32px, 3vw, 52px);
  overflow: hidden;
}

.hero .container {
  width: min(1440px, calc(100% - 48px));
}

.hero-grid {
  display: grid;
  grid-template-columns:
    minmax(360px, 1.05fr)
    minmax(340px, 0.92fr)
    minmax(340px, 0.95fr);
  gap: clamp(20px, 2vw, 34px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-copy h1 {
  margin: 0 0 clamp(16px, 1.5vw, 24px);
  max-width: 640px;

  font-size: clamp(34px, 2.65vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 590px;
  margin: 0 0 22px;

  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.65;
}

.hero-copy .btn {
  min-height: 54px;
  padding-inline: clamp(18px, 1.8vw, 28px);
}

.hero-copy small {
  margin-top: 13px;
  font-size: 10px;
}


/* Imagem principal */
.hero-visual {
  width: 100%;
  min-width: 0;
  min-height: 0;

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

.hero-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.02;

  max-height: 500px;

  overflow: hidden;

  border-radius: clamp(22px, 2vw, 32px);
}

.hero-image {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: 58% center;
}


/* Painel lateral */
.pain-panel {
  width: 100%;
  min-width: 0;

  gap: 10px;
  padding: clamp(16px, 1.5vw, 22px);

  border-radius: 20px;
}

.pain-item {
  gap: 12px;
  padding: 4px 0;
}

.pain-item .icon-circle {
  width: 38px;
  height: 38px;
}

.pain-item strong {
  font-size: clamp(11px, 0.9vw, 13px);
  line-height: 1.25;
}

.pain-item small {
  font-size: clamp(9px, 0.75vw, 10.5px);
  line-height: 1.35;
}


/* =========================================================
   NOTEBOOK / DESKTOP MENOR
   ========================================================= */
@media (max-width: 1280px) {
  .hero .container {
    width: min(1180px, calc(100% - 40px));
  }

  .hero-grid {
    grid-template-columns:
      minmax(330px, 1fr)
      minmax(300px, 0.9fr)
      minmax(300px, 0.88fr);
    gap: 20px;
  }

  .hero-copy h1 {
    font-size: clamp(32px, 3vw, 42px);
  }

  .hero-photo {
    max-height: 440px;
  }

  .pain-panel {
    padding: 16px;
  }
}


/* =========================================================
   NOTEBOOK COMPACTO
   Texto + imagem em cima, painel embaixo
   ========================================================= */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
    gap: 24px;
  }

  .hero-copy h1 {
    max-width: 620px;
    font-size: clamp(31px, 4vw, 42px);
  }

  .hero-photo {
    max-width: 470px;
    margin-inline: auto;
  }

  .pain-panel {
    grid-column: 1 / -1;

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

    gap: 10px 18px;
  }

  .pain-item {
    min-width: 0;
  }
}


/* =========================================================
   TABLET
   ========================================================= */
@media (max-width: 820px) {
  .hero {
    padding: 32px 0 38px;
  }

  .hero .container {
    width: min(100% - 32px, 720px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(30px, 7vw, 42px);
    line-height: 1.07;
  }

  .hero-copy p {
    max-width: 660px;
  }

  .hero-visual {
    order: 2;
  }

  .hero-photo {
    width: min(100%, 620px);
    max-height: none;
    aspect-ratio: 4 / 3;
    margin-inline: auto;
  }

  .hero-image {
    object-position: 55% center;
  }

  .pain-panel {
    order: 3;
    grid-column: auto;

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

    padding: 18px;
  }

  .pain-item {
    padding: 5px 0;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 560px) {
  .hero .container {
    width: min(100% - 24px, 520px);
  }

  .hero {
    padding-top: 26px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(27px, 9vw, 34px);
    line-height: 1.08;
  }

  .hero-copy p {
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-copy .btn {
    width: 100%;
    min-height: 50px;
  }

  .hero-copy small {
    text-align: center;
  }

  .hero-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
  }

  .hero-image {
    object-position: 57% center;
  }

  .pain-panel {
    grid-template-columns: 1fr;
    gap: 5px;

    padding: 14px;
    border-radius: 16px;
  }

  .pain-item {
    align-items: center;
    padding: 8px 0;
  }

  .pain-item .icon-circle {
    width: 36px;
    height: 36px;
  }

  .pain-item strong {
    font-size: 12px;
  }

  .pain-item small {
    font-size: 10px;
  }
}


/* =========================================================
   MOBILE MUITO PEQUENO
   ========================================================= */
@media (max-width: 390px) {
  .hero-copy h1 {
    font-size: 26px;
  }

  .hero-copy p {
    font-size: 12.5px;
  }

  .hero-photo {
    aspect-ratio: 0.95 / 1;
  }
}


/* =========================================================
   22. HERO — AJUSTE DE PROPORÇÃO + HOVER NO LADO ESQUERDO
   ========================================================= */

/* Proporções mais equilibradas no desktop */
.hero .container {
  width: min(1380px, calc(100% - 56px));
}

.hero-grid {
  grid-template-columns:
    minmax(320px, 0.98fr)
    minmax(340px, 0.88fr)
    minmax(300px, 0.82fr);
  gap: clamp(18px, 1.8vw, 28px);
  align-items: center;
}

/* Lado esquerdo */
.hero-copy {
  max-width: 100%;
  padding-right: 6px;

  transition:
    transform 0.22s ease,
    filter 0.22s ease;
}

.hero-copy h1 {
  max-width: 560px;
  margin-bottom: 18px;

  font-size: clamp(30px, 2.45vw, 48px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.hero-copy p {
  max-width: 520px;
  margin-bottom: 20px;

  font-size: clamp(13px, 0.9vw, 15px);
  line-height: 1.58;
}

.hero-copy .btn {
  min-width: min(100%, 385px);
  min-height: 52px;

  border-radius: 14px;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.hero-copy small {
  display: inline-block;
  max-width: 420px;
  margin-top: 12px;
  line-height: 1.45;
}

/* Hover do lado esquerdo */
@media (hover: hover) and (pointer: fine) {
  .hero-copy:hover {
    transform: translateY(-2px);
    filter: saturate(1.02);
  }

  .hero-copy:hover h1 .accent,
  .hero-copy:hover h1 span {
    text-shadow: 0 6px 18px rgba(98, 71, 245, 0.12);
  }

  .hero-copy .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(98, 71, 245, 0.22);
    filter: brightness(1.02);
  }
}

/* Imagem central */
.hero-photo {
  max-height: 470px;
  aspect-ratio: 0.98 / 1;
  border-radius: 26px;
}

.hero-image {
  object-position: 56% center;
}

/* Painel da direita mais proporcional */
.pain-panel {
  padding: 18px;
  gap: 8px;
  border-radius: 22px;
}

.pain-item {
  gap: 12px;
  padding: 6px 0;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.pain-item .icon-circle {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

.pain-item strong {
  font-size: 12px;
  line-height: 1.24;
}

.pain-item small {
  font-size: 10px;
  line-height: 1.35;
}

@media (hover: hover) and (pointer: fine) {
  .pain-item:hover {
    transform: translateX(4px);
  }
}

/* =========================================================
   DESKTOP / NOTEBOOK
   ========================================================= */
@media (max-width: 1400px) {
  .hero .container {
    width: min(1280px, calc(100% - 48px));
  }

  .hero-grid {
    grid-template-columns:
      minmax(300px, 1fr)
      minmax(310px, 0.88fr)
      minmax(280px, 0.82fr);
  }

  .hero-copy h1 {
    max-width: 520px;
    font-size: clamp(29px, 2.8vw, 43px);
  }

  .hero-photo {
    max-height: 430px;
  }
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns:
      minmax(280px, 1fr)
      minmax(280px, 0.92fr)
      minmax(260px, 0.84fr);
    gap: 18px;
  }

  .hero-copy h1 {
    max-width: 470px;
    font-size: clamp(28px, 2.8vw, 38px);
  }

  .hero-copy p {
    max-width: 470px;
  }

  .hero-photo {
    max-height: 395px;
    border-radius: 24px;
  }

  .pain-panel {
    padding: 16px;
  }
}

/* =========================================================
   1080px — duas linhas mais limpas
   ========================================================= */
@media (max-width: 1080px) {
  .hero .container {
    width: min(100% - 36px, 980px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
    gap: 22px;
  }

  .hero-copy h1 {
    max-width: 560px;
    font-size: clamp(31px, 4.2vw, 40px);
  }

  .hero-copy p {
    max-width: 560px;
  }

  .hero-photo {
    width: min(100%, 430px);
    max-height: none;
    aspect-ratio: 0.95 / 1;
  }

  .pain-panel {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 16px;
  }
}

/* =========================================================
   TABLET
   ========================================================= */
@media (max-width: 820px) {
  .hero .container {
    width: min(100% - 28px, 740px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(30px, 7vw, 40px);
  }

  .hero-copy p,
  .hero-copy small {
    max-width: none;
  }

  .hero-copy .btn {
    min-width: 0;
    width: min(100%, 380px);
  }

  .hero-photo {
    width: min(100%, 600px);
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  .pain-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px;
    border-radius: 18px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 560px) {
  .hero .container {
    width: min(100% - 22px, 520px);
  }

  .hero-copy h1 {
    font-size: clamp(26px, 9vw, 34px);
    line-height: 1.06;
  }

  .hero-copy p {
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-copy .btn {
    width: 100%;
    min-height: 50px;
  }

  .hero-copy small {
    text-align: center;
  }

  .hero-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
  }

  .pain-panel {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px;
  }

  .pain-item {
    padding: 8px 0;
  }
}

@media (max-width: 390px) {
  .hero-copy h1 {
    font-size: 25px;
  }

  .hero-photo {
    aspect-ratio: 0.95 / 1;
  }
}


/* =========================================================
   23. HEADER PREMIUM — AJUSTE FINAL
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;

  padding: 12px 0;

  background: rgba(250, 250, 255, 0.88);
  border-bottom: 0;

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

.site-header .container {
  width: min(1440px, calc(100% - 40px));
}

.header-inner {
  min-height: 78px;
  height: auto;

  position: relative;

  display: flex;
  align-items: center;

  gap: clamp(16px, 1.8vw, 28px);

  padding: 8px 16px;

  overflow: visible;

  border: 1px solid rgba(98, 71, 245, 0.08);
  border-radius: 18px;

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

  box-shadow:
    0 14px 42px rgba(35, 31, 79, 0.07);
}


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

.brand {
  width: 184px;
  height: 62px;

  display: flex;
  align-items: center;

  flex: 0 0 auto;
}

.brand-logo {
  width: 184px;
  max-width: 184px;
  height: 60px;

  object-fit: contain;
  object-position: left center;

  transform: none;
}


/* =========================================================
   NAVEGAÇÃO
   ========================================================= */

.main-nav {
  margin-left: auto;

  display: flex;
  align-items: center;

  gap: clamp(18px, 2vw, 34px);

  color: #202950;

  font-size: 12px;
  font-weight: 700;
}

.nav-link,
.nav-dropdown > summary {
  min-height: 52px;

  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 5px;

  padding: 0;

  color: #273056;

  cursor: pointer;

  list-style: none;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::marker {
  display: none;
  content: "";
}

.nav-dropdown > summary > svg {
  width: 13px;
  height: 13px;

  transition: transform 0.2s ease;
}

.nav-link::after,
.nav-dropdown > summary::after {
  content: "";

  width: 0;
  height: 2px;

  position: absolute;
  left: 50%;
  bottom: 3px;

  border-radius: 999px;

  background: linear-gradient(90deg, #6041ef, #846aff);

  transform: translateX(-50%);

  transition: width 0.22s ease;
}

.nav-link:hover,
.nav-dropdown > summary:hover,
.nav-dropdown[open] > summary {
  color: #6041ef;
}

.nav-link:hover::after,
.nav-dropdown > summary:hover::after,
.nav-dropdown[open] > summary::after {
  width: 100%;
}

.nav-dropdown[open] > summary > svg {
  transform: rotate(180deg);
}


/* =========================================================
   DROPDOWN
   ========================================================= */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  width: 300px;

  position: absolute;
  top: calc(100% + 8px);
  left: 50%;

  z-index: 150;

  display: grid;

  padding: 10px;

  border: 1px solid #e6e1f6;
  border-radius: 16px;

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

  box-shadow:
    0 22px 50px rgba(35, 28, 85, 0.15);

  transform: translateX(-50%);
}

.nav-dropdown-menu::before {
  content: "";

  width: 14px;
  height: 14px;

  position: absolute;
  top: -8px;
  left: 50%;

  background: #ffffff;
  border-top: 1px solid #e6e1f6;
  border-left: 1px solid #e6e1f6;

  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown-menu > a {
  min-height: 62px;

  display: grid;
  grid-template-columns: 38px 1fr 16px;
  gap: 10px;
  align-items: center;

  padding: 9px 10px;

  border-radius: 11px;

  transition:
    background 0.18s ease,
    transform 0.18s ease;
}

.nav-dropdown-menu > a:hover {
  background: #f7f4ff;
  transform: translateX(3px);
}

.nav-dropdown-icon {
  width: 36px;
  height: 36px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #f1ecff;
  color: #6247f5;
}

.nav-dropdown-icon svg {
  width: 17px;
  height: 17px;
}

.nav-dropdown-menu strong {
  display: block;

  margin-bottom: 2px;

  color: #26305a;

  font-size: 11px;
}

.nav-dropdown-menu small {
  display: block;

  color: #737991;

  font-size: 8.5px;
  line-height: 1.3;
}

.nav-dropdown-arrow {
  width: 14px;
  height: 14px;

  color: #7d72b2;
}

/* Abrir também ao passar o mouse no desktop */
@media (hover: hover) and (pointer: fine) {
  .nav-dropdown:not([open]) > .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown:not([open]):hover > .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown:hover > summary {
    color: #6041ef;
  }

  .nav-dropdown:hover > summary::after {
    width: 100%;
  }
}


/* =========================================================
   BADGE ERP + IA
   ========================================================= */

.header-ai-badge {
  min-height: 40px;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 0 12px;

  flex: 0 0 auto;

  border: 1px solid #e2dbff;
  border-radius: 999px;

  background: linear-gradient(135deg, #f7f4ff, #eee8ff);
  color: #6041ef;

  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.header-ai-badge svg {
  width: 14px;
  height: 14px;
}


/* =========================================================
   CTA DO HEADER
   ========================================================= */

.header-cta {
  min-height: 50px;

  margin-left: 0;
  padding: 0 19px;

  flex: 0 0 auto;

  border: 0;
  border-radius: 12px;

  background: linear-gradient(135deg, #6247f5, #7658ff);
  color: #ffffff;

  box-shadow:
    0 10px 24px rgba(98, 71, 245, 0.22);

  font-size: 10px;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-2px);

  box-shadow:
    0 15px 30px rgba(98, 71, 245, 0.30);

  filter: brightness(1.02);
}


/* =========================================================
   HERO — BADGE E BENEFÍCIOS
   ========================================================= */

.hero .eyebrow {
  width: max-content;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-bottom: 18px;
  padding: 7px 12px;

  border: 1px solid #e1daff;
  border-radius: 999px;

  background: #f7f4ff;
  color: #6041ef;

  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero .eyebrow svg {
  width: 14px;
  height: 14px;
}

.hero-proof {
  margin-top: 22px;

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

  gap: 12px;
}

.hero-proof-item {
  display: grid;
  grid-template-columns: 31px 1fr;

  gap: 8px;
  align-items: center;

  min-width: 0;
}

.hero-proof-icon {
  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #f3efff;
  color: #6247f5;
}

.hero-proof-icon svg {
  width: 15px;
  height: 15px;
}

.hero-proof-item strong {
  display: block;

  color: #27305a;

  font-size: 9px;
  line-height: 1.25;
}

.hero-proof-item div > span {
  display: block;

  margin-top: 1px;

  color: #70778e;

  font-size: 7.8px;
  line-height: 1.3;
}


/* =========================================================
   HEADER — NOTEBOOK
   ========================================================= */

@media (max-width: 1220px) {
  .site-header .container {
    width: min(1160px, calc(100% - 28px));
  }

  .header-inner {
    gap: 16px;
  }

  .brand {
    width: 155px;
  }

  .brand-logo {
    width: 155px;
    max-width: 155px;
  }

  .main-nav {
    gap: 17px;
    font-size: 11px;
  }

  .header-ai-badge {
    display: none;
  }

  .header-cta {
    padding-inline: 15px;
  }
}


/* =========================================================
   HEADER — TABLET / MENU MOBILE
   ========================================================= */

@media (max-width: 920px) {
  .site-header {
    padding: 8px 0;
  }

  .site-header .container {
    width: min(100% - 22px, 820px);
  }

  .header-inner {
    min-height: 68px;

    padding: 5px 10px;

    border-radius: 15px;
  }

  .brand {
    width: 145px;
    height: 56px;
  }

  .brand-logo {
    width: 145px;
    max-width: 145px;
    height: 54px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;

    margin-left: auto;

    display: grid;
    place-items: center;

    border: 1px solid #e3ddf6;
    border-radius: 11px;

    background: #f8f5ff;
    color: #5f43eb;
  }

  .menu-toggle svg {
    width: 22px;
    height: 22px;
  }

  .header-cta,
  .header-ai-badge {
    display: none;
  }

  .main-nav {
    margin: 0;

    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;

    display: none;
    flex-direction: column;
    align-items: stretch;

    gap: 2px;

    padding: 10px;

    border: 1px solid #e5e0f5;
    border-radius: 15px;

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

    box-shadow:
      0 20px 44px rgba(35, 30, 78, 0.14);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-link,
  .nav-dropdown > summary {
    min-height: 46px;

    justify-content: space-between;

    padding: 0 12px;

    border-radius: 10px;
  }

  .nav-link:hover,
  .nav-dropdown > summary:hover,
  .nav-dropdown[open] > summary {
    background: #f7f4ff;
  }

  .nav-link::after,
  .nav-dropdown > summary::after {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    width: 100%;

    position: static;

    margin-top: 2px;
    padding: 5px;

    border: 0;
    border-radius: 11px;

    background: #faf8ff;

    box-shadow: none;

    transform: none;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown-menu > a {
    min-height: 58px;
  }

  /* no mobile, o dropdown só abre por clique */
  .nav-dropdown:not([open]) > .nav-dropdown-menu {
    display: none !important;
  }
}


/* =========================================================
   HERO — RESPONSIVIDADE DOS BENEFÍCIOS
   ========================================================= */

@media (max-width: 1080px) {
  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hero .eyebrow {
    margin-bottom: 14px;
  }

  .hero-proof {
    max-width: 560px;

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

@media (max-width: 560px) {
  .hero-proof {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .hero-proof-item {
    grid-template-columns: 34px 1fr;
  }

  .hero-proof-icon {
    width: 32px;
    height: 32px;
  }

  .hero-proof-item strong {
    font-size: 10px;
  }

  .hero-proof-item div > span {
    font-size: 8.5px;
  }
}



/* =========================================================
   24. VEJA O DRAGON NA PRÁTICA
   As imagens podem ser substituídas sem alterar o layout.
   Arquivos esperados:
   - assets/dragon-financeiro.png
   - assets/dragon-estoque.png
   - assets/dragon-fiscal.png
   - assets/dragon-whatsapp-ia.png
   ========================================================= */

.dragon-showcase {
  padding: 76px 0;

  background:
    radial-gradient(circle at 50% 0%, rgba(113, 82, 245, 0.10), transparent 28%),
    linear-gradient(180deg, #fbfaff 0%, #ffffff 100%);
}

.dragon-showcase .container {
  width: min(1380px, calc(100% - 44px));
}


/* CABEÇALHO */
.dragon-showcase-heading {
  max-width: 820px;
  margin: 0 auto 38px;

  text-align: center;
}

.dragon-showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-bottom: 14px;
  padding: 7px 13px;

  border: 1px solid #ded7ff;
  border-radius: 999px;

  background: #f6f2ff;
  color: #6247f5;

  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.dragon-showcase-badge svg {
  width: 14px;
  height: 14px;
}

.dragon-showcase-heading h2 {
  margin: 0 0 10px;

  color: #14235e;

  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.dragon-showcase-heading p {
  max-width: 690px;
  margin: 0 auto;

  color: #626a86;

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


/* GRID */
.dragon-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 20px;
}


/* CARD */
.dragon-solution-card {
  min-height: 330px;

  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(280px, 1.28fr);

  overflow: hidden;

  border: 1px solid #e2def0;
  border-radius: 20px;

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

  box-shadow:
    0 16px 38px rgba(41, 34, 91, 0.055);

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

@media (hover: hover) and (pointer: fine) {
  .dragon-solution-card:hover {
    transform: translateY(-5px);

    border-color: #cfc5ff;

    box-shadow:
      0 22px 46px rgba(72, 54, 153, 0.11);
  }

  .dragon-solution-card:hover .dragon-solution-image {
    transform: scale(1.025);
  }

  .dragon-solution-card:hover .dragon-solution-link {
    transform: translateY(-2px);
  }
}


/* TEXTO */
.dragon-solution-copy {
  min-width: 0;

  padding: 28px 24px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  position: relative;
  z-index: 2;

  background:
    linear-gradient(135deg, #ffffff 0%, #fbf9ff 100%);
}

.dragon-solution-icon {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  margin-bottom: 18px;

  border-radius: 13px;

  background: #f2edff;
  color: #6247f5;
}

.dragon-solution-icon svg {
  width: 22px;
  height: 22px;
}

.dragon-solution-copy h3 {
  margin: 0 0 10px;

  color: #172255;

  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.dragon-solution-copy p {
  max-width: 260px;

  margin: 0 0 22px;

  color: #69718b;

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


/* BOTÃO DO CARD */
.dragon-solution-link {
  min-height: 44px;

  margin-top: auto;
  padding: 0 16px;

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

  border-radius: 10px;

  background: linear-gradient(135deg, #6247f5, #7457ff);
  color: #ffffff;

  box-shadow: 0 9px 20px rgba(98, 71, 245, 0.19);

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

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

.dragon-solution-link svg {
  width: 15px;
  height: 15px;
}


/* IMAGEM */
.dragon-solution-media {
  min-width: 0;

  position: relative;

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

  overflow: hidden;

  padding: 18px 18px 18px 0;

  background:
    radial-gradient(circle at center, rgba(108, 76, 245, 0.07), transparent 62%);
}

.dragon-solution-image {
  width: 100%;
  height: 100%;
  max-height: 300px;

  display: block;

  object-fit: contain;
  object-position: center;

  border: 1px solid #ece9f4;
  border-radius: 13px;

  background: #ffffff;

  box-shadow:
    0 10px 26px rgba(38, 33, 82, 0.06);

  transition: transform 0.25s ease;
}


/* CTA INFERIOR */
.dragon-showcase-action {
  margin-top: 26px;
  padding: 20px 24px;

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

  gap: 24px;

  border: 1px solid #ded8f4;
  border-radius: 17px;

  background:
    linear-gradient(135deg, #faf8ff 0%, #f4f0ff 100%);
}

.dragon-showcase-action strong {
  display: block;

  margin-bottom: 3px;

  color: #172255;

  font-size: 13px;
}

.dragon-showcase-action p {
  margin: 0;

  color: #69718b;

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

.dragon-showcase-action .btn {
  min-width: 260px;
  min-height: 48px;

  flex: 0 0 auto;
}


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

/* Notebook */
@media (max-width: 1180px) {
  .dragon-showcase .container {
    width: min(1080px, calc(100% - 36px));
  }

  .dragon-solution-card {
    grid-template-columns: minmax(170px, 0.75fr) minmax(240px, 1.25fr);
  }

  .dragon-solution-copy {
    padding: 24px 20px;
  }

  .dragon-solution-copy h3 {
    font-size: 20px;
  }
}


/* Tablet */
@media (max-width: 900px) {
  .dragon-showcase {
    padding: 60px 0;
  }

  .dragon-showcase-grid {
    grid-template-columns: 1fr;
  }

  .dragon-solution-card {
    min-height: 300px;

    grid-template-columns: minmax(190px, 0.72fr) minmax(300px, 1.28fr);
  }

  .dragon-solution-media {
    padding-right: 16px;
  }

  .dragon-showcase-action {
    flex-direction: column;
    align-items: stretch;

    text-align: center;
  }

  .dragon-showcase-action .btn {
    width: min(100%, 380px);
    min-width: 0;

    margin-inline: auto;
  }
}


/* Mobile */
@media (max-width: 620px) {
  .dragon-showcase {
    padding: 50px 0;
  }

  .dragon-showcase .container {
    width: min(100% - 24px, 520px);
  }

  .dragon-showcase-heading {
    margin-bottom: 28px;
  }

  .dragon-showcase-heading p {
    font-size: 12px;
  }

  .dragon-solution-card {
    min-height: 0;

    grid-template-columns: 1fr;
  }

  .dragon-solution-copy {
    padding: 22px 20px;
  }

  .dragon-solution-copy p {
    max-width: none;
  }

  .dragon-solution-link {
    width: 100%;
  }

  .dragon-solution-media {
    min-height: 210px;

    padding: 0 14px 14px;
  }

  .dragon-solution-image {
    width: 100%;
    height: auto;
    max-height: 260px;
  }

  .dragon-showcase-action {
    padding: 18px;
  }
}
/* =========================================================
   25. RODAPÉ PREMIUM
   ADICIONADO SOBRE O CSS ANTERIOR, SEM ALTERAR O RESTANTE
   ========================================================= */

.site-footer {
  padding: 72px 0 34px;
  border-top: 1px solid #f0eef8;
  background:
    radial-gradient(circle at 10% 15%, rgba(98, 71, 245, 0.06), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
}

.site-footer .container {
  width: min(1440px, calc(100% - 40px));
}


/* CARD PRINCIPAL DO RODAPÉ */
.footer-shell {
  padding: 42px 48px 0;
  overflow: hidden;

  border: 1px solid #e3def3;
  border-radius: 24px;

  background:
    linear-gradient(
      135deg,
      rgba(250, 248, 255, 0.96),
      rgba(255, 255, 255, 0.98)
    );

  box-shadow:
    0 18px 48px rgba(43, 35, 96, 0.07);
}


/* GRID */
.footer-shell .footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
  gap: 0;
}

.footer-shell .footer-grid > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


/* MARCA */
.footer-about {
  padding: 0 44px 38px 0;
}

.footer-shell .footer-brand {
  margin: 0 0 20px;
}

.footer-shell .footer-logo {
  width: 210px;
  max-width: 100%;
  height: 150px;

  display: block;

  object-fit: contain;
  object-position: left center;
}

.footer-mini-line,
.footer-heading-line {
  width: 34px;
  height: 2px;

  display: block;

  margin-bottom: 18px;

  border-radius: 999px;

  background:
    linear-gradient(90deg, #6247f5, #8a73ff);
}

.footer-shell .footer-about p {
  max-width: 290px;
  margin: 0;

  color: #6d748b;

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


/* COLUNAS */
.footer-shell .footer-column {
  min-height: 310px;

  padding: 0 28px 34px;

  border-left: 1px solid #e9e5f4;
}

.footer-column-icon {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  margin-bottom: 20px;

  border-radius: 13px;

  background:
    linear-gradient(135deg, #f3efff, #ebe5ff);

  color: #6247f5;
}

.footer-column-icon svg {
  width: 22px;
  height: 22px;
}

.footer-shell .footer-grid h4 {
  margin: 0 0 10px;

  color: #5a40ea;

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

.footer-shell .footer-column > a {
  width: 100%;

  margin: 0;
  padding: 7px 0;

  border-bottom: 1px solid rgba(227, 223, 240, 0.72);

  color: #646c83;

  font-size: 10px;
  line-height: 1.4;

  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.footer-shell .footer-column > a:hover {
  color: #6247f5;
  transform: translateX(3px);
}


/* RELATÓRIOS COM IA PELO WHATSAPP */
.footer-shell .footer-feature-link {
  display: flex;
  align-items: flex-start;
  gap: 7px;

  color: #5e43ed;
  font-weight: 700;
}

.footer-shell .footer-feature-link svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;

  margin-top: 1px;
}


/* MAIS SOLUÇÕES */
.footer-shell .footer-more-link {
  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 0;

  color: #5e43ed;
  font-weight: 800;
}

.footer-shell .footer-more-link svg {
  width: 14px;
  height: 14px;
}


/* CONTATO */
.footer-shell .footer-contact-link {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-shell .footer-contact-link svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;

  color: #6247f5;
}


/* REDES SOCIAIS */
.footer-shell .footer-socials {
  display: flex;
  gap: 10px;

  margin-top: 20px;
}

.footer-shell .footer-socials a {
  width: 38px;
  height: 38px;

  margin: 0;

  display: grid;
  place-items: center;

  border: 1px solid #dcd5fa;
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.78);
  color: #6247f5;

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

.footer-shell .footer-socials a:hover {
  transform: translateY(-3px);

  background: #ffffff;

  box-shadow:
    0 10px 20px rgba(98, 71, 245, 0.12);
}

.footer-shell .footer-socials svg {
  width: 17px;
  height: 17px;
}


/* PARTE INFERIOR */
.footer-shell .footer-bottom {
  min-height: 72px;

  margin-top: 0;
  padding: 20px 0;

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

  gap: 24px;

  border-top: 1px solid #e5e1ef;

  color: #848a9c;

  font-size: 9px;
}

.footer-shell .footer-bottom > div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-shell .footer-bottom a {
  color: #777e92;
  font-size: 9px;
}

.footer-shell .footer-bottom a:hover {
  color: #6247f5;
}

.footer-bottom-divider {
  width: 1px;
  height: 18px;

  display: inline-block;

  background: #ddd8eb;
}


/* =========================================================
   RESPONSIVIDADE DO RODAPÉ
   ========================================================= */

@media (max-width: 1180px) {
  .footer-shell {
    padding: 36px 34px 0;
  }

  .footer-shell .footer-grid {
    grid-template-columns: 1.2fr repeat(2, 1fr);
    row-gap: 38px;
  }

  .footer-about {
    grid-row: span 2;
  }

  .footer-shell .footer-column {
    min-height: 0;
  }
}


@media (max-width: 820px) {
  .site-footer {
    padding: 52px 0 24px;
  }

  .site-footer .container {
    width: min(100% - 26px, 720px);
  }

  .footer-shell {
    padding: 30px 26px 0;
    border-radius: 20px;
  }

  .footer-shell .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
  }

  .footer-about {
    grid-column: 1 / -1;
    grid-row: auto;

    padding: 0 0 28px;

    border-bottom: 1px solid #e7e3f1;
  }

  .footer-shell .footer-logo {
    width: 180px;
    height: 120px;
  }

  .footer-shell .footer-column {
    padding: 0 22px 22px 0;
    border-left: 0;
  }

  .footer-shell .footer-column:nth-child(even) {
    padding-left: 22px;
    border-left: 1px solid #e9e5f4;
  }

  .footer-shell .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


@media (max-width: 560px) {
  .site-footer .container {
    width: min(100% - 20px, 520px);
  }

  .footer-shell {
    padding: 26px 20px 0;
  }

  .footer-shell .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-about,
  .footer-shell .footer-column,
  .footer-shell .footer-column:nth-child(even) {
    padding: 0 0 26px;

    border-left: 0;
    border-bottom: 1px solid #e9e5f4;
  }

  .footer-shell .footer-grid > div:last-child {
    border-bottom: 0;
  }

  .footer-shell .footer-logo {
    width: 170px;
    height: 110px;
  }

  .footer-column-icon {
    width: 42px;
    height: 42px;

    margin-bottom: 14px;
  }

  .footer-shell .footer-bottom {
    padding: 18px 0;

    text-align: left;
  }

  .footer-shell .footer-bottom > div {
    flex-wrap: wrap;
    gap: 12px;
  }
}
/* =========================================================
   26. HEADER PREMIUM V2
   Mantém o HTML atual:
   .brand + .menu-toggle + .main-nav + .header-ai-badge + .header-cta
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  padding: 14px 0;

  background:
    linear-gradient(
      180deg,
      rgba(249, 249, 253, 0.96) 0%,
      rgba(247, 247, 252, 0.92) 100%
    );

  border-bottom: 1px solid rgba(228, 228, 239, 0.78);

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

.site-header .container {
  width: min(1480px, calc(100% - 48px));
}


/* =========================================================
   ESTRUTURA PRINCIPAL
   ========================================================= */

.header-inner {
  width: 100%;
  min-height: 100px;

  display: flex;
  align-items: center;

  gap: 18px;

  padding: 0 18px 0 22px;

  overflow: visible;

  border: 1px solid #ebe8f3;
  border-radius: 26px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.99),
      rgba(253, 252, 255, 0.98)
    );

  box-shadow:
    0 18px 44px rgba(35, 29, 84, 0.065),
    0 3px 10px rgba(35, 29, 84, 0.025);
}


/* =========================================================
   LOGO
   A imagem atual tem bastante área branca interna.
   O scale aumenta o logo VISUAL sem mudar o arquivo.
   ========================================================= */

.brand {
  width: 230px;
  height: 88px;

  flex: 0 0 230px;

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

  overflow: hidden;
}

.brand-logo {
  width: 220px;
  max-width: none;
  height: 82px;

  display: block;

  object-fit: contain;
  object-position: left center;

  transform: scale(1.34);
  transform-origin: left center;
}


/* =========================================================
   MENU CENTRAL
   ========================================================= */

.main-nav {
  margin: 0 auto;

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

  gap: 4px;

  color: #283252;

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


/* links normais e summary do dropdown */
.nav-link,
.nav-dropdown > summary {
  min-height: 48px;

  padding: 0 15px;

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

  gap: 7px;

  position: relative;

  border: 1px solid transparent;
  border-radius: 13px;

  color: #2d3657;

  line-height: 1;
  white-space: nowrap;

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


/* pequeno indicador inferior */
.nav-link::after,
.nav-dropdown > summary::after {
  content: "";

  width: 0;
  height: 2px;

  position: absolute;
  left: 50%;
  bottom: 7px;

  border-radius: 999px;

  background:
    linear-gradient(90deg, #6247f5, #8c73ff);

  transform: translateX(-50%);

  transition: width 0.18s ease;
}


.nav-link:hover,
.nav-dropdown > summary:hover,
.nav-dropdown[open] > summary {
  color: #5c43e9;

  border-color: #e6e0fb;

  background:
    linear-gradient(
      135deg,
      #faf8ff,
      #f4f0ff
    );

  transform: translateY(-1px);

  box-shadow:
    0 7px 16px rgba(98, 71, 245, 0.07);
}


.nav-link:hover::after,
.nav-dropdown > summary:hover::after,
.nav-dropdown[open] > summary::after {
  width: 24px;
}


/* =========================================================
   DROPDOWN
   ========================================================= */

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary {
  list-style: none;
  cursor: pointer;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary svg {
  width: 15px;
  height: 15px;

  transition: transform 0.18s ease;
}

.nav-dropdown[open] > summary svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  min-width: 285px;

  position: absolute;
  top: calc(100% + 12px);
  left: 50%;

  padding: 9px;

  border: 1px solid #e6e1f3;
  border-radius: 17px;

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

  box-shadow:
    0 22px 46px rgba(38, 31, 83, 0.14);

  transform: translateX(-50%);
}

.nav-dropdown-menu > a {
  min-height: 62px;

  padding: 8px 10px;

  display: grid;
  grid-template-columns: 40px 1fr 16px;
  gap: 10px;
  align-items: center;

  border-radius: 12px;

  color: #3c4566;

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

.nav-dropdown-menu > a:hover {
  color: #5c43e9;

  background: #f7f4ff;

  transform: translateX(2px);
}

.nav-dropdown-icon {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 10px;

  background: #f1edff;
  color: #6247f5;
}

.nav-dropdown-icon svg {
  width: 18px;
  height: 18px;
}

.nav-dropdown-menu strong {
  display: block;

  margin-bottom: 2px;

  font-size: 11px;
}

.nav-dropdown-menu small {
  display: block;

  color: #7a8095;

  font-size: 8.5px;
  line-height: 1.3;
}

.nav-dropdown-arrow {
  width: 14px;
  height: 14px;

  color: #9c9fb1;
}


/* =========================================================
   BADGE ERP + IA
   ========================================================= */

.header-ai-badge {
  min-height: 52px;

  flex: 0 0 auto;

  padding: 0 17px;

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

  gap: 8px;

  border: 1px solid #ddd5ff;
  border-radius: 15px;

  background:
    linear-gradient(
      135deg,
      #faf7ff 0%,
      #f0ebff 100%
    );

  color: #5f43e8;

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

  white-space: nowrap;

  box-shadow:
    0 6px 16px rgba(98, 71, 245, 0.055);
}

.header-ai-badge svg {
  width: 18px;
  height: 18px;
}


/* =========================================================
   CTA PRINCIPAL
   ========================================================= */

.header-cta {
  min-width: 225px;
  min-height: 62px;

  flex: 0 0 auto;

  margin-left: 0;
  padding: 0 24px;

  border-radius: 17px;

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

  letter-spacing: 0.015em;
  white-space: nowrap;

  box-shadow:
    0 14px 28px rgba(98, 71, 245, 0.24);
}

.header-cta svg {
  width: 19px;
  height: 19px;
}

.header-cta:hover {
  transform: translateY(-2px);

  box-shadow:
    0 18px 34px rgba(98, 71, 245, 0.31);
}


/* =========================================================
   NOTEBOOK
   ========================================================= */

@media (max-width: 1320px) {

  .site-header .container {
    width: min(1250px, calc(100% - 32px));
  }

  .header-inner {
    min-height: 90px;

    gap: 11px;

    padding-inline: 16px;
  }

  .brand {
    width: 190px;
    height: 76px;

    flex-basis: 190px;
  }

  .brand-logo {
    width: 185px;
    height: 72px;

    transform: scale(1.30);
  }

  .main-nav {
    gap: 1px;

    font-size: 11px;
  }

  .nav-link,
  .nav-dropdown > summary {
    min-height: 44px;

    padding-inline: 11px;
  }

  .header-ai-badge {
    min-height: 48px;

    padding-inline: 13px;

    font-size: 10px;
  }

  .header-cta {
    min-width: 195px;
    min-height: 56px;

    padding-inline: 18px;

    font-size: 10px;
  }
}


/* =========================================================
   TABLET / MENU MOBILE
   ========================================================= */

@media (max-width: 980px) {

  .site-header {
    padding: 9px 0;
  }

  .site-header .container {
    width: min(100% - 22px, 900px);
  }

  .header-inner {
    min-height: 76px;

    position: relative;

    padding: 5px 12px;

    border-radius: 19px;
  }

  .brand {
    width: 175px;
    height: 66px;

    flex: 0 0 175px;
  }

  .brand-logo {
    width: 170px;
    height: 62px;

    transform: scale(1.27);
  }

  .menu-toggle {
    width: 46px;
    height: 46px;

    margin-left: auto;

    display: grid;
    place-items: center;

    border: 1px solid #e1dbf7;
    border-radius: 12px;

    background: #f7f4ff;
    color: #6247f5;

    cursor: pointer;
  }

  .menu-toggle svg {
    width: 21px;
    height: 21px;
  }

  .header-ai-badge,
  .header-cta {
    display: none;
  }

  .main-nav {
    width: 100%;

    margin: 0;

    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;

    display: none;
    flex-direction: column;
    align-items: stretch;

    gap: 3px;

    padding: 10px;

    border: 1px solid #e5e0f4;
    border-radius: 16px;

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

    box-shadow:
      0 20px 42px rgba(35, 30, 78, 0.14);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-link,
  .nav-dropdown > summary {
    width: 100%;
    min-height: 48px;

    justify-content: space-between;

    padding: 0 12px;

    border-radius: 10px;
  }

  .nav-link::after,
  .nav-dropdown > summary::after {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    width: 100%;
    min-width: 0;

    position: static;

    margin-top: 4px;
    padding: 6px;

    border: 0;
    border-radius: 11px;

    background: #faf8ff;

    box-shadow: none;

    transform: none;
  }

  .nav-dropdown:not([open]) > .nav-dropdown-menu {
    display: none !important;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 560px) {

  .site-header .container {
    width: min(100% - 16px, 520px);
  }

  .header-inner {
    min-height: 70px;

    padding-inline: 10px;

    border-radius: 17px;
  }

  .brand {
    width: 155px;
    height: 60px;

    flex-basis: 155px;
  }

  .brand-logo {
    width: 150px;
    height: 56px;

    transform: scale(1.24);
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }
}

/* =========================================================
   27. RODAPÉ LIMPO COM COR
   Baseado no visual aprovado
   ========================================================= */

.site-footer {
  padding: 70px 0 32px;

  border-top: 1px solid #f0eef8;

  background: #f7f6fc;
}

.site-footer .container {
  width: min(1440px, calc(100% - 40px));
}


/* =========================================================
   CARD PRINCIPAL
   ========================================================= */

.footer-shell {
  padding: 40px 48px 0;

  overflow: hidden;

  border: 1px solid #ddd8f2;
  border-radius: 26px;

  background: #ffffff;

  box-shadow:
    0 20px 48px rgba(47, 38, 105, 0.07);
}


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

.footer-shell .footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));

  gap: 0;
}

.footer-shell .footer-grid > div {
  min-width: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


/* =========================================================
   COLUNA DA MARCA
   ========================================================= */

.footer-about {
  padding: 0 42px 36px 0;
}

.footer-shell .footer-brand {
  margin: 0 0 18px;
}

.footer-shell .footer-logo {
  width: 205px;
  max-width: 100%;
  height: 145px;

  display: block;

  object-fit: contain;
  object-position: left center;
}

.footer-mini-line {
  width: 38px;
  height: 2px;

  display: block;

  margin: 0 0 22px;

  border-radius: 999px;

  background: #6247f5;
}

.footer-shell .footer-about p {
  max-width: 295px;

  margin: 0;

  color: #626b84;

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


/* =========================================================
   COLUNAS
   ========================================================= */

.footer-shell .footer-column {
  min-height: 330px;

  padding: 0 28px 34px;

  border-left: 1px solid #e6e2f0;
}

.footer-column-icon {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  margin-bottom: 19px;

  border-radius: 12px;

  background: #f0ebff;
  color: #5c3ee8;
}

.footer-column-icon svg {
  width: 21px;
  height: 21px;
}

.footer-shell .footer-grid h4 {
  margin: 0 0 9px;

  color: #4e2ed8;

  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.footer-heading-line {
  width: 34px;
  height: 2px;

  display: block;

  margin-bottom: 17px;

  border-radius: 999px;

  background: #6247f5;
}


/* =========================================================
   LINKS
   ========================================================= */

.footer-shell .footer-column > a {
  width: 100%;

  margin: 0;
  padding: 8px 0;

  border-bottom: 1px solid #ece9f4;

  color: #5c647c;

  font-size: 10px;
  line-height: 1.4;

  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.footer-shell .footer-column > a:hover {
  color: #5737df;
  transform: translateX(3px);
}


/* =========================================================
   DESTAQUE: RELATÓRIOS COM IA PELO WHATSAPP
   ========================================================= */

.footer-shell .footer-feature-link {
  margin-bottom: 4px !important;
  padding: 10px 12px !important;

  display: flex !important;
  align-items: center;
  gap: 8px;

  border: 0 !important;
  border-radius: 11px;

  background: #f1ecff;

  color: #4e2ed8 !important;

  font-weight: 800 !important;

  box-shadow: none;
}

.footer-shell .footer-feature-link svg {
  width: 15px;
  height: 15px;

  flex: 0 0 15px;

  color: #4e2ed8;
}

.footer-shell .footer-feature-link:hover {
  background: #e9e1ff;

  transform: translateX(2px);
}


/* =========================================================
   MAIS SOLUÇÕES
   ========================================================= */

.footer-shell .footer-more-link {
  display: flex !important;
  align-items: center;
  justify-content: space-between;

  border-bottom: 0 !important;

  color: #4e2ed8 !important;

  font-weight: 800 !important;
}

.footer-shell .footer-more-link svg {
  width: 14px;
  height: 14px;

  color: #4e2ed8;
}


/* =========================================================
   CONTATO
   ========================================================= */

.footer-shell .footer-contact-link {
  display: flex !important;
  align-items: center;
  gap: 9px;
}

.footer-shell .footer-contact-link svg {
  width: 16px;
  height: 16px;

  flex: 0 0 16px;

  color: #5c3ee8;
}


/* =========================================================
   REDES SOCIAIS
   ========================================================= */

.footer-shell .footer-socials {
  display: flex;
  gap: 10px;

  margin-top: 20px;
}

.footer-shell .footer-socials a {
  width: 42px;
  height: 42px;

  margin: 0;

  display: grid;
  place-items: center;

  border: 1px solid #d8d0ff;
  border-radius: 11px;

  background: #ffffff;
  color: #5737df;

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

.footer-shell .footer-socials a:hover {
  transform: translateY(-2px);

  border-color: #bbaeff;

  background: #f7f4ff;

  box-shadow:
    0 8px 16px rgba(98, 71, 245, 0.08);
}

.footer-shell .footer-socials svg {
  width: 18px;
  height: 18px;
}


/* =========================================================
   BARRA INFERIOR
   ========================================================= */

.footer-shell .footer-bottom {
  min-height: 72px;

  margin-top: 0;
  padding: 20px 0;

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

  gap: 24px;

  border-top: 1px solid #dcd6f1;

  color: #747c91;

  font-size: 9px;
}

.footer-shell .footer-bottom > div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-shell .footer-bottom a {
  color: #697187;

  font-size: 9px;
}

.footer-shell .footer-bottom a:hover {
  color: #5737df;
}

.footer-bottom-divider {
  width: 1px;
  height: 18px;

  display: inline-block;

  background: #d9d3eb;
}


/* =========================================================
   RESPONSIVIDADE DO RODAPÉ
   ========================================================= */

@media (max-width: 1180px) {

  .footer-shell {
    padding: 34px 32px 0;
  }

  .footer-shell .footer-grid {
    grid-template-columns: 1.2fr repeat(2, 1fr);

    row-gap: 36px;
  }

  .footer-about {
    grid-row: span 2;
  }

  .footer-shell .footer-column {
    min-height: 0;
  }
}


@media (max-width: 820px) {

  .site-footer {
    padding: 50px 0 24px;
  }

  .site-footer .container {
    width: min(100% - 24px, 720px);
  }

  .footer-shell {
    padding: 28px 24px 0;

    border-radius: 20px;
  }

  .footer-shell .footer-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 28px 0;
  }

  .footer-about {
    grid-column: 1 / -1;
    grid-row: auto;

    padding: 0 0 28px;

    border-bottom: 1px solid #e7e3f1;
  }

  .footer-shell .footer-logo {
    width: 180px;
    height: 120px;
  }

  .footer-shell .footer-column {
    padding: 0 20px 22px 0;

    border-left: 0;
  }

  .footer-shell .footer-column:nth-child(even) {
    padding-left: 20px;

    border-left: 1px solid #e7e3f1;
  }

  .footer-shell .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


@media (max-width: 560px) {

  .site-footer .container {
    width: min(100% - 18px, 520px);
  }

  .footer-shell {
    padding: 24px 18px 0;
  }

  .footer-shell .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-about,
  .footer-shell .footer-column,
  .footer-shell .footer-column:nth-child(even) {
    padding: 0 0 24px;

    border-left: 0;
    border-bottom: 1px solid #e7e3f1;
  }

  .footer-shell .footer-grid > div:last-child {
    border-bottom: 0;
  }

  .footer-shell .footer-logo {
    width: 165px;
    height: 108px;
  }

  .footer-column-icon {
    width: 42px;
    height: 42px;

    margin-bottom: 14px;
  }

  .footer-shell .footer-bottom {
    padding: 18px 0;
  }

  .footer-shell .footer-bottom > div {
    flex-wrap: wrap;

    gap: 12px;
  }
}

/* =========================================================
   28. ÂNCORAS DO MENU
   ========================================================= */

#recursos,
#dragon-na-pratica,
#contato {
  scroll-margin-top: 135px;
}

@media (max-width: 980px) {
  #recursos,
  #dragon-na-pratica,
  #contato {
    scroll-margin-top: 105px;
  }
}
/* =========================================================
   29. INTEGRAÇÕES COM OUTROS SISTEMAS
   ========================================================= */

.integrations-section {
  padding: 78px 0;

  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
}

.integrations-section .container {
  width: min(1380px, calc(100% - 44px));
}


/* CABEÇALHO */
.integrations-heading {
  max-width: 980px;

  margin: 0 auto 42px;

  text-align: center;
}

.integrations-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 14px;
  padding: 7px 13px;

  border: 1px solid #ddd6ff;
  border-radius: 999px;

  background: #f6f2ff;
  color: #6247f5;

  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.integrations-badge svg {
  width: 15px;
  height: 15px;
}

.integrations-heading h2 {
  margin: 0 0 12px;

  color: #14235e;

  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.integrations-heading p {
  max-width: 800px;

  margin: 0 auto;

  color: #5d6580;

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


/* LAYOUT */
.integrations-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(660px, 1.18fr);

  gap: 44px;
  align-items: stretch;
}


/* CARD ESQUERDO */
.integrations-intro-card {
  min-height: 420px;

  padding: 34px;

  display: grid;
  grid-template-columns: 150px 1fr;
  grid-template-rows: 1fr auto;
  gap: 24px;

  border: 1px solid #e1dcf2;
  border-radius: 22px;

  background: #ffffff;

  box-shadow:
    0 16px 38px rgba(42, 34, 93, 0.06);
}

.integrations-intro-icon {
  width: 150px;
  height: 150px;

  display: grid;
  place-items: center;

  align-self: start;

  border-radius: 18px;

  background:
    linear-gradient(145deg, #f6f1ff, #eee7ff);

  color: #5d3de8;
}

.integrations-intro-icon svg {
  width: 78px;
  height: 78px;

  stroke-width: 1.6;
}

.integrations-intro-copy {
  align-self: center;
}

.integrations-intro-copy h3 {
  margin: 0;

  color: #172255;

  font-size: 27px;
  line-height: 1.15;
  font-weight: 800;
}

.integrations-intro-line {
  width: 52px;
  height: 3px;

  display: block;

  margin: 18px 0 22px;

  border-radius: 999px;

  background: #6247f5;
}

.integrations-intro-copy p {
  margin: 0;

  color: #5c6480;

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

.integrations-security {
  grid-column: 1 / -1;

  padding: 18px 20px;

  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;

  border-radius: 14px;

  background: #f4efff;
}

.integrations-security > span {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #ffffff;
  color: #6247f5;
}

.integrations-security svg {
  width: 22px;
  height: 22px;
}

.integrations-security p {
  margin: 0;

  color: #58607c;

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


/* REDE DE INTEGRAÇÕES */
.integrations-network {
  min-height: 420px;

  position: relative;

  display: grid;
  grid-template-columns: 1fr 190px 1fr;
  gap: 22px;
  align-items: center;

  padding: 12px 0;
}

.integration-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.integration-side-left {
  grid-column: 1;
}

.integration-side-right {
  grid-column: 3;
}

.integration-node {
  min-height: 76px;

  position: relative;

  padding: 12px 16px;

  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;

  border: 1px solid #e6e1f2;
  border-radius: 14px;

  background: #ffffff;

  box-shadow:
    0 9px 20px rgba(39, 33, 83, 0.055);
}

.integration-node > span {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #f1ecff;
  color: #6247f5;
}

.integration-node svg {
  width: 24px;
  height: 24px;
}

.integration-node strong {
  color: #202850;

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


/* LINHAS PONTILHADAS */
.integration-side-left .integration-node::after,
.integration-side-right .integration-node::before {
  content: "";

  width: 42px;

  position: absolute;
  top: 50%;

  border-top: 2px dashed #8e72f6;
}

.integration-side-left .integration-node::after {
  right: -43px;
}

.integration-side-right .integration-node::before {
  left: -43px;
}


/* NÚCLEO DA API */
.integration-api-core {
  width: 170px;
  height: 170px;

  grid-column: 2;

  position: relative;
  z-index: 2;

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

  justify-self: center;

  border: 5px solid #5f3de8;
  border-radius: 50%;

  background: #ffffff;

  color: #5f3de8;

  box-shadow:
    0 0 0 10px #f1ecff,
    0 18px 34px rgba(98, 71, 245, 0.18);
}

.integration-api-core::after {
  content: "";

  position: absolute;
  inset: 14px;

  border: 1px dashed #c9bdfc;
  border-radius: 50%;
}

.integration-api-icon {
  position: relative;
  z-index: 2;
}

.integration-api-icon svg {
  width: 56px;
  height: 56px;
}

.integration-api-core strong {
  position: relative;
  z-index: 2;

  margin-top: 5px;

  font-size: 21px;
  line-height: 1;
  font-weight: 800;
}


/* CTA */
.integrations-cta {
  margin-top: 36px;

  display: flex;
  justify-content: center;
}

.integrations-cta .btn {
  min-width: 390px;
  min-height: 56px;

  padding-inline: 30px;

  border-radius: 13px;

  font-size: 12px;
}

.integrations-cta .btn svg {
  width: 20px;
  height: 20px;
}


/* ÂNCORA */
#integracoes {
  scroll-margin-top: 135px;
}


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

@media (max-width: 1180px) {

  .integrations-layout {
    grid-template-columns: 1fr;
  }

  .integrations-intro-card {
    min-height: 0;
  }

  .integrations-network {
    max-width: 880px;

    width: 100%;

    margin-inline: auto;
  }
}


@media (max-width: 820px) {

  .integrations-section {
    padding: 60px 0;
  }

  .integrations-section .container {
    width: min(100% - 26px, 740px);
  }

  .integrations-intro-card {
    grid-template-columns: 110px 1fr;

    padding: 26px;
  }

  .integrations-intro-icon {
    width: 110px;
    height: 110px;
  }

  .integrations-intro-icon svg {
    width: 60px;
    height: 60px;
  }

  .integrations-network {
    grid-template-columns: 1fr;
    gap: 18px;

    padding-top: 14px;
  }

  .integration-api-core {
    width: 145px;
    height: 145px;

    grid-column: 1;
    grid-row: 1;

    margin-bottom: 6px;
  }

  .integration-side-left,
  .integration-side-right {
    grid-column: 1;
  }

  .integration-side-left {
    grid-row: 2;
  }

  .integration-side-right {
    grid-row: 3;
  }

  .integration-side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .integration-side-left .integration-node::after,
  .integration-side-right .integration-node::before {
    display: none;
  }

  #integracoes {
    scroll-margin-top: 105px;
  }
}


@media (max-width: 560px) {

  .integrations-heading h2 {
    font-size: 27px;
  }

  .integrations-heading p {
    font-size: 12px;
  }

  .integrations-intro-card {
    grid-template-columns: 1fr;

    padding: 20px;
  }

  .integrations-intro-icon {
    width: 88px;
    height: 88px;
  }

  .integrations-intro-icon svg {
    width: 48px;
    height: 48px;
  }

  .integrations-security {
    grid-column: auto;
  }

  .integration-side {
    grid-template-columns: 1fr;
  }

  .integration-node {
    min-height: 68px;
  }

  .integrations-cta .btn {
    width: 100%;
    min-width: 0;
  }
}
/* =========================================================
   30. INTEGRAÇÕES — VERSÃO COMPACTA
   Ajusta somente a escala da seção sem mudar a estrutura.
   ========================================================= */

.integrations-section {
  padding: 56px 0;
}

.integrations-heading {
  max-width: 860px;
  margin: 0 auto 30px;
}

.integrations-badge {
  margin-bottom: 11px;
  padding: 6px 12px;
  font-size: 9px;
}

.integrations-heading h2 {
  margin-bottom: 9px;

  font-size: clamp(28px, 2.45vw, 37px);
  line-height: 1.08;
}

.integrations-heading p {
  max-width: 720px;

  font-size: 12.5px;
  line-height: 1.55;
}


/* GRID PRINCIPAL */
.integrations-layout {
  grid-template-columns: minmax(300px, 0.78fr) minmax(560px, 1.22fr);

  gap: 30px;
}


/* CARD ESQUERDO */
.integrations-intro-card {
  min-height: 330px;

  padding: 24px;

  grid-template-columns: 112px 1fr;
  gap: 18px;

  border-radius: 18px;
}

.integrations-intro-icon {
  width: 112px;
  height: 112px;

  border-radius: 16px;
}

.integrations-intro-icon svg {
  width: 58px;
  height: 58px;
}

.integrations-intro-copy h3 {
  font-size: 23px;
}

.integrations-intro-line {
  width: 44px;

  margin: 14px 0 16px;
}

.integrations-intro-copy p {
  font-size: 11.5px;
  line-height: 1.6;
}

.integrations-security {
  padding: 13px 15px;

  grid-template-columns: 38px 1fr;

  gap: 10px;

  border-radius: 12px;
}

.integrations-security > span {
  width: 36px;
  height: 36px;
}

.integrations-security svg {
  width: 19px;
  height: 19px;
}

.integrations-security p {
  font-size: 9px;
}


/* DIAGRAMA */
.integrations-network {
  min-height: 330px;

  grid-template-columns: 1fr 150px 1fr;

  gap: 18px;

  padding: 4px 0;
}

.integration-side {
  gap: 11px;
}

.integration-node {
  min-height: 61px;

  padding: 9px 12px;

  grid-template-columns: 40px 1fr;

  gap: 9px;

  border-radius: 12px;
}

.integration-node > span {
  width: 38px;
  height: 38px;
}

.integration-node svg {
  width: 20px;
  height: 20px;
}

.integration-node strong {
  font-size: 10.5px;
}

.integration-side-left .integration-node::after,
.integration-side-right .integration-node::before {
  width: 30px;
}

.integration-side-left .integration-node::after {
  right: -31px;
}

.integration-side-right .integration-node::before {
  left: -31px;
}


/* NÚCLEO API */
.integration-api-core {
  width: 136px;
  height: 136px;

  border-width: 4px;

  box-shadow:
    0 0 0 8px #f1ecff,
    0 14px 26px rgba(98, 71, 245, 0.15);
}

.integration-api-core::after {
  inset: 12px;
}

.integration-api-icon svg {
  width: 44px;
  height: 44px;
}

.integration-api-core strong {
  font-size: 18px;
}


/* CTA */
.integrations-cta {
  margin-top: 26px;
}

.integrations-cta .btn {
  min-width: 330px;
  min-height: 50px;

  padding-inline: 24px;

  font-size: 10.5px;
}


/* NOTEBOOK */
@media (max-width: 1180px) {
  .integrations-layout {
    grid-template-columns: 1fr;
  }

  .integrations-intro-card {
    min-height: 0;
  }

  .integrations-network {
    max-width: 760px;
  }
}


/* TABLET */
@media (max-width: 820px) {
  .integrations-section {
    padding: 48px 0;
  }

  .integrations-heading {
    margin-bottom: 24px;
  }

  .integrations-intro-card {
    grid-template-columns: 96px 1fr;

    padding: 22px;
  }

  .integrations-intro-icon {
    width: 96px;
    height: 96px;
  }

  .integrations-intro-icon svg {
    width: 50px;
    height: 50px;
  }

  .integration-api-core {
    width: 126px;
    height: 126px;
  }

  .integration-side {
    gap: 10px;
  }
}


/* MOBILE */
@media (max-width: 560px) {
  .integrations-section {
    padding: 42px 0;
  }

  .integrations-heading h2 {
    font-size: 24px;
  }

  .integrations-heading p {
    font-size: 11.5px;
  }

  .integrations-intro-card {
    grid-template-columns: 1fr;

    padding: 18px;
  }

  .integrations-intro-icon {
    width: 76px;
    height: 76px;
  }

  .integrations-intro-icon svg {
    width: 42px;
    height: 42px;
  }

  .integration-node {
    min-height: 58px;
  }

  .integrations-cta .btn {
    width: 100%;
    min-width: 0;
  }
}
/* =========================================================
   31. INTEGRAÇÕES — ULTRA COMPACTA E ALINHADA
   Sobrescreve apenas a seção de integrações.
   ========================================================= */

.integrations-section {
  padding: 44px 0 48px;
}

.integrations-section .container {
  width: min(1260px, calc(100% - 40px));
}


/* =========================================================
   CABEÇALHO MAIS CURTO
   ========================================================= */

.integrations-heading {
  max-width: 820px;
  margin: 0 auto 24px;
}

.integrations-badge {
  margin-bottom: 9px;
  padding: 6px 11px;

  font-size: 8.5px;
}

.integrations-badge svg {
  width: 13px;
  height: 13px;
}

.integrations-heading h2 {
  margin-bottom: 7px;

  font-size: clamp(25px, 2.1vw, 33px);
  line-height: 1.08;
}

.integrations-heading p {
  max-width: 690px;

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


/* =========================================================
   LAYOUT PRINCIPAL
   ========================================================= */

.integrations-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);

  gap: 28px;
  align-items: stretch;
}


/* =========================================================
   CARD ESQUERDO — MAIS LIMPO
   ========================================================= */

.integrations-intro-card {
  min-height: 274px;

  padding: 22px;

  display: grid;
  grid-template-columns: 84px 1fr;
  grid-template-rows: 1fr auto;

  gap: 16px;

  border-radius: 17px;
}

.integrations-intro-icon {
  width: 84px;
  height: 84px;

  border-radius: 14px;
}

.integrations-intro-icon svg {
  width: 44px;
  height: 44px;
}

.integrations-intro-copy {
  align-self: center;
}

.integrations-intro-copy h3 {
  font-size: 20px;
  line-height: 1.15;
}

.integrations-intro-line {
  width: 38px;
  height: 2px;

  margin: 11px 0 13px;
}

.integrations-intro-copy p {
  font-size: 10.5px;
  line-height: 1.55;
}

.integrations-security {
  grid-column: 1 / -1;

  min-height: 54px;

  padding: 10px 12px;

  grid-template-columns: 32px 1fr;
  gap: 9px;

  border-radius: 11px;
}

.integrations-security > span {
  width: 31px;
  height: 31px;
}

.integrations-security svg {
  width: 17px;
  height: 17px;
}

.integrations-security p {
  font-size: 8.5px;
  line-height: 1.4;
}


/* =========================================================
   DIAGRAMA — ALINHAMENTO CORRETO
   ========================================================= */

.integrations-network {
  min-height: 274px;

  display: grid;
  grid-template-columns:
    minmax(180px, 1fr)
    122px
    minmax(180px, 1fr);

  gap: 22px;
  align-items: center;

  padding: 0;
}


/* As duas laterais usam exatamente a mesma grade */
.integration-side {
  height: 100%;

  display: grid;
  grid-template-rows: repeat(4, 1fr);

  gap: 8px;

  align-content: stretch;
}

.integration-side-left {
  grid-column: 1;
}

.integration-side-right {
  grid-column: 3;
}


/* Todos os cards ficam iguais */
.integration-node {
  width: 100%;
  min-height: 0;
  height: 100%;

  padding: 8px 11px;

  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 9px;
  align-items: center;

  border-radius: 11px;
}

.integration-node > span {
  width: 34px;
  height: 34px;
}

.integration-node svg {
  width: 18px;
  height: 18px;
}

.integration-node strong {
  font-size: 9.5px;
  line-height: 1.18;
}


/* Linhas curtas e perfeitamente centralizadas */
.integration-side-left .integration-node::after,
.integration-side-right .integration-node::before {
  width: 22px;

  top: 50%;

  border-top-width: 1px;

  transform: translateY(-50%);
}

.integration-side-left .integration-node::after {
  right: -23px;
}

.integration-side-right .integration-node::before {
  left: -23px;
}


/* =========================================================
   NÚCLEO API
   ========================================================= */

.integration-api-core {
  width: 108px;
  height: 108px;

  grid-column: 2;

  border-width: 3px;

  box-shadow:
    0 0 0 6px #f1ecff,
    0 10px 20px rgba(98, 71, 245, 0.13);
}

.integration-api-core::after {
  inset: 9px;
}

.integration-api-icon svg {
  width: 34px;
  height: 34px;
}

.integration-api-core strong {
  margin-top: 3px;

  font-size: 15px;
}


/* =========================================================
   CTA
   ========================================================= */

.integrations-cta {
  margin-top: 22px;
}

.integrations-cta .btn {
  min-width: 290px;
  min-height: 46px;

  padding: 0 22px;

  border-radius: 11px;

  font-size: 9.5px;
}

.integrations-cta .btn svg {
  width: 17px;
  height: 17px;
}


/* =========================================================
   NOTEBOOK
   ========================================================= */

@media (max-width: 1080px) {

  .integrations-section .container {
    width: min(940px, calc(100% - 32px));
  }

  .integrations-layout {
    grid-template-columns: 310px minmax(0, 1fr);

    gap: 20px;
  }

  .integrations-network {
    grid-template-columns:
      minmax(145px, 1fr)
      102px
      minmax(145px, 1fr);

    gap: 16px;
  }

  .integration-api-core {
    width: 94px;
    height: 94px;
  }

  .integration-api-icon svg {
    width: 30px;
    height: 30px;
  }

  .integration-side-left .integration-node::after,
  .integration-side-right .integration-node::before {
    width: 16px;
  }

  .integration-side-left .integration-node::after {
    right: -17px;
  }

  .integration-side-right .integration-node::before {
    left: -17px;
  }
}


/* =========================================================
   TABLET
   Em vez do diagrama gigante, vira uma grade fácil de ler.
   ========================================================= */

@media (max-width: 820px) {

  .integrations-section {
    padding: 40px 0;
  }

  .integrations-section .container {
    width: min(100% - 24px, 720px);
  }

  .integrations-heading {
    margin-bottom: 20px;
  }

  .integrations-layout {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .integrations-intro-card {
    min-height: 0;

    grid-template-columns: 72px 1fr;

    padding: 18px;
  }

  .integrations-intro-icon {
    width: 72px;
    height: 72px;
  }

  .integrations-intro-icon svg {
    width: 38px;
    height: 38px;
  }

  .integrations-network {
    min-height: 0;

    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .integration-api-core {
    width: 88px;
    height: 88px;

    grid-column: 1;
    grid-row: 1;

    margin: 0 auto 4px;
  }

  .integration-side-left,
  .integration-side-right {
    grid-column: 1;

    height: auto;

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

    gap: 8px;
  }

  .integration-side-left {
    grid-row: 2;
  }

  .integration-side-right {
    grid-row: 3;
  }

  .integration-node {
    min-height: 54px;
    height: auto;
  }

  .integration-side-left .integration-node::after,
  .integration-side-right .integration-node::before {
    display: none;
  }

  .integrations-cta {
    margin-top: 18px;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 560px) {

  .integrations-section {
    padding: 34px 0 38px;
  }

  .integrations-heading h2 {
    font-size: 23px;
  }

  .integrations-heading p {
    font-size: 10.5px;
  }

  .integrations-intro-card {
    grid-template-columns: 60px 1fr;

    padding: 16px;
  }

  .integrations-intro-icon {
    width: 60px;
    height: 60px;
  }

  .integrations-intro-icon svg {
    width: 32px;
    height: 32px;
  }

  .integrations-intro-copy h3 {
    font-size: 17px;
  }

  .integrations-security {
    grid-column: 1 / -1;
  }

  .integration-side-left,
  .integration-side-right {
    grid-template-columns: 1fr;
  }

  .integration-node {
    min-height: 50px;
  }

  .integrations-cta .btn {
    width: 100%;
    min-width: 0;
  }
}
/* =========================================================
   32. INTEGRAÇÕES — LAYOUT FINAL APROVADO
   Reprodução em HTML/CSS do conceito visual.
   ========================================================= */

.integrations-section {
  padding: 54px 0 58px;

  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
}

.integrations-container {
  width: min(1320px, calc(100% - 42px));
}


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

.integrations-heading {
  max-width: 920px;

  margin: 0 auto 34px;

  text-align: center;
}

.integrations-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-bottom: 13px;
  padding: 7px 13px;

  border: 1px solid #d7cdff;
  border-radius: 999px;

  background: #f4efff;
  color: #6041ed;

  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.integrations-badge svg {
  width: 14px;
  height: 14px;
}

.integrations-heading h2 {
  margin: 0 0 10px;

  color: #14235e;

  font-size: clamp(30px, 2.9vw, 42px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.integrations-heading p {
  margin: 0;

  color: #59627c;

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


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

.integrations-showcase {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);

  gap: 42px;
  align-items: center;
}


/* =========================================================
   CARD DA ESQUERDA
   ========================================================= */

.integrations-about {
  min-height: 390px;

  padding: 28px;

  display: flex;
  flex-direction: column;

  border: 1px solid #ded8f2;
  border-radius: 20px;

  background: #ffffff;

  box-shadow:
    0 14px 34px rgba(39, 31, 87, 0.055);
}

.integrations-about-icon {
  width: 88px;
  height: 88px;

  display: grid;
  place-items: center;

  margin-bottom: 18px;

  border-radius: 15px;

  background: #f0eaff;
  color: #6041ed;
}

.integrations-about-icon svg {
  width: 45px;
  height: 45px;

  stroke-width: 1.8;
}

.integrations-about h3 {
  margin: 0;

  color: #172255;

  font-size: 21px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.integrations-about-line {
  width: 40px;
  height: 2px;

  margin: 13px 0 17px;

  border-radius: 999px;

  background: #6247f5;
}

.integrations-about-text {
  margin: 0;

  color: #58617d;

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

.integrations-about-note {
  margin-top: auto;
  padding: 13px 14px;

  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;

  border-radius: 12px;

  background: #f3efff;
}

.integrations-about-note > span {
  width: 32px;
  height: 32px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #ffffff;
  color: #6247f5;
}

.integrations-about-note svg {
  width: 17px;
  height: 17px;
}

.integrations-about-note p {
  margin: 0;

  color: #56607a;

  font-size: 8.8px;
  line-height: 1.45;
}


/* =========================================================
   DIAGRAMA
   ========================================================= */

.integrations-diagram {
  min-height: 390px;

  position: relative;

  display: grid;
  grid-template-columns: minmax(180px, 1fr) 150px minmax(180px, 1fr);

  gap: 38px;
  align-items: center;
}

.integrations-connectors {
  width: 100%;
  height: 100%;

  position: absolute;
  inset: 0;

  z-index: 0;

  overflow: visible;

  pointer-events: none;
}

.integrations-connectors path {
  fill: none;

  stroke: #8c73f5;
  stroke-width: 1.5;

  stroke-dasharray: 4 5;

  opacity: 0.9;
}


/* =========================================================
   COLUNAS DE CARDS
   ========================================================= */

.integration-nodes {
  height: 100%;

  position: relative;
  z-index: 2;

  display: grid;
  grid-template-rows: repeat(4, 1fr);

  gap: 12px;
}

.integration-nodes-left {
  grid-column: 1;
}

.integration-nodes-right {
  grid-column: 3;
}

.integration-node {
  min-height: 70px;

  padding: 10px 15px;

  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 11px;
  align-items: center;

  border: 1px solid #e1dcf0;
  border-radius: 13px;

  background: #ffffff;

  box-shadow:
    0 8px 20px rgba(40, 33, 84, 0.045);
}

.integration-node-icon {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background: #f1ecff;
  color: #6041ed;
}

.integration-node-icon svg {
  width: 22px;
  height: 22px;

  stroke-width: 1.9;
}

.integration-node strong {
  color: #202850;

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


/* =========================================================
   NÚCLEO DA API
   ========================================================= */

.integration-api-core {
  width: 142px;
  height: 142px;

  grid-column: 2;

  position: relative;
  z-index: 3;

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

  justify-self: center;

  border: 4px solid #6041ed;
  border-radius: 50%;

  background: #ffffff;
  color: #4f32de;

  box-shadow:
    0 0 0 8px #f2edff,
    0 15px 28px rgba(98, 71, 245, 0.16);
}

.integration-api-core::after {
  content: "";

  position: absolute;
  inset: 12px;

  border: 1px dashed #c7bbfc;
  border-radius: 50%;
}

.integration-api-icon,
.integration-api-core strong {
  position: relative;
  z-index: 2;
}

.integration-api-icon svg {
  width: 40px;
  height: 40px;

  stroke-width: 2;
}

.integration-api-core strong {
  margin-top: 5px;

  color: #172255;

  font-size: 20px;
  line-height: 1;
  font-weight: 800;
}


/* =========================================================
   CTA
   ========================================================= */

.integrations-action {
  margin-top: 28px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 10px;
}

.integrations-button {
  min-width: 365px;
  min-height: 52px;

  padding-inline: 26px;

  border-radius: 12px;

  font-size: 11px;
}

.integrations-button svg {
  width: 19px;
  height: 19px;
}

.integrations-action small {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  color: #69718a;

  font-size: 9px;
}

.integrations-action small svg {
  width: 14px;
  height: 14px;

  color: #6247f5;
}


/* =========================================================
   ÂNCORA
   ========================================================= */

#integracoes {
  scroll-margin-top: 135px;
}


/* =========================================================
   NOTEBOOK
   ========================================================= */

@media (max-width: 1120px) {

  .integrations-container {
    width: min(980px, calc(100% - 32px));
  }

  .integrations-showcase {
    grid-template-columns: 285px minmax(0, 1fr);

    gap: 28px;
  }

  .integrations-diagram {
    grid-template-columns: minmax(150px, 1fr) 122px minmax(150px, 1fr);

    gap: 26px;
  }

  .integration-api-core {
    width: 118px;
    height: 118px;
  }

  .integration-node {
    min-height: 64px;

    grid-template-columns: 40px minmax(0, 1fr);

    padding-inline: 11px;
  }

  .integration-node-icon {
    width: 38px;
    height: 38px;
  }

  .integration-node-icon svg {
    width: 19px;
    height: 19px;
  }
}


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

@media (max-width: 840px) {

  .integrations-section {
    padding: 46px 0 50px;
  }

  .integrations-heading {
    margin-bottom: 26px;
  }

  .integrations-showcase {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .integrations-about {
    min-height: 0;

    display: grid;
    grid-template-columns: 80px 1fr;

    gap: 0 18px;

    padding: 20px;
  }

  .integrations-about-icon {
    width: 80px;
    height: 80px;

    grid-row: 1 / span 3;

    margin: 0;
  }

  .integrations-about h3 {
    align-self: end;
  }

  .integrations-about-line {
    margin: 10px 0 12px;
  }

  .integrations-about-note {
    grid-column: 1 / -1;

    margin-top: 16px;
  }

  .integrations-diagram {
    min-height: 0;

    grid-template-columns: 1fr;
    gap: 14px;
  }

  .integrations-connectors {
    display: none;
  }

  .integration-api-core {
    width: 100px;
    height: 100px;

    grid-column: 1;
    grid-row: 1;

    margin: 0 auto 4px;
  }

  .integration-nodes-left,
  .integration-nodes-right {
    grid-column: 1;

    height: auto;

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

    gap: 10px;
  }

  .integration-nodes-left {
    grid-row: 2;
  }

  .integration-nodes-right {
    grid-row: 3;
  }

  .integration-node {
    min-height: 62px;
  }

  #integracoes {
    scroll-margin-top: 105px;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 560px) {

  .integrations-section {
    padding: 38px 0 42px;
  }

  .integrations-container {
    width: min(100% - 20px, 520px);
  }

  .integrations-heading h2 {
    font-size: 25px;
  }

  .integrations-heading p {
    font-size: 11.5px;
  }

  .integrations-heading p br {
    display: none;
  }

  .integrations-about {
    grid-template-columns: 60px 1fr;

    padding: 16px;
  }

  .integrations-about-icon {
    width: 60px;
    height: 60px;
  }

  .integrations-about-icon svg {
    width: 32px;
    height: 32px;
  }

  .integrations-about h3 {
    font-size: 18px;
  }

  .integration-nodes-left,
  .integration-nodes-right {
    grid-template-columns: 1fr;
  }

  .integration-node {
    min-height: 56px;
  }

  .integrations-button {
    width: 100%;
    min-width: 0;
  }
}
/* =========================================================
   33. CORREÇÃO DO CABEÇALHO — INTEGRAÇÕES
   Mantém o diagrama e compacta somente o topo da seção.
   ========================================================= */

.integrations-section {
  padding-top: 38px;
}

.integrations-heading {
  max-width: 780px;
  margin: 0 auto 24px;
}

.integrations-badge {
  margin-bottom: 9px;
  padding: 6px 11px;

  font-size: 8px;
}

.integrations-badge svg {
  width: 12px;
  height: 12px;
}

.integrations-heading h2 {
  margin: 0 0 7px;

  font-size: clamp(26px, 2.15vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.integrations-heading p {
  max-width: 680px;
  margin-inline: auto;

  font-size: 11.5px;
  line-height: 1.48;
}

@media (max-width: 840px) {
  .integrations-section {
    padding-top: 34px;
  }

  .integrations-heading {
    margin-bottom: 20px;
  }

  .integrations-heading h2 {
    font-size: 27px;
  }
}

@media (max-width: 560px) {
  .integrations-section {
    padding-top: 30px;
  }

  .integrations-heading h2 {
    font-size: 23px;
  }

  .integrations-heading p {
    font-size: 10.5px;
  }
}
/* =========================================================
   34. RODAPÉ — LINKS INFORMATIVOS EXPANSÍVEIS
   ========================================================= */

.footer-shell .footer-info-link {
  width: 100%;

  margin: 0;
  padding: 8px 0;

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

  border: 0;
  border-bottom: 1px solid #ece9f4;

  background: transparent;

  color: #5c647c;

  font: inherit;
  font-size: 10px;
  line-height: 1.4;
  text-align: left;

  cursor: pointer;

  transition:
    color 0.18s ease,
    background 0.18s ease,
    padding-left 0.18s ease;
}

.footer-shell .footer-info-link:hover,
.footer-shell .footer-info-link.is-active {
  color: #5737df;
  padding-left: 5px;
}

.footer-shell .footer-info-link.is-active {
  font-weight: 700;
}

.footer-shell .footer-info-link svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.footer-shell .footer-feature-link {
  margin-bottom: 5px;
  padding: 10px 12px;

  border-bottom: 0;
  border-radius: 11px;

  background: #f1ecff;

  color: #4e2ed8;
  font-weight: 800;
}

.footer-shell .footer-feature-link:hover,
.footer-shell .footer-feature-link.is-active {
  padding-left: 12px;
  background: #e9e1ff;
}

.footer-shell .footer-more-link {
  justify-content: space-between;

  border-bottom: 0;

  color: #4e2ed8;
  font-weight: 800;
}


/* PAINEL DE INFORMAÇÃO */
.footer-info-panel {
  min-height: 88px;

  margin: 26px 0 0;
  padding: 18px 20px;

  display: grid;
  grid-template-columns: 42px 1fr 34px;
  gap: 14px;
  align-items: center;

  border: 1px solid #dcd4ff;
  border-radius: 15px;

  background: #f6f2ff;
}

.footer-info-panel[hidden] {
  display: none;
}

.footer-info-panel-icon {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background: #ffffff;
  color: #6247f5;
}

.footer-info-panel-icon svg {
  width: 20px;
  height: 20px;
}

.footer-info-panel-copy strong {
  display: block;

  margin-bottom: 4px;

  color: #3520b8;

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

.footer-info-panel-copy p {
  max-width: 960px;

  margin: 0;

  color: #5e6680;

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

.footer-info-close {
  width: 32px;
  height: 32px;

  display: grid;
  place-items: center;

  border: 0;
  border-radius: 9px;

  background: transparent;
  color: #746d8e;

  cursor: pointer;
}

.footer-info-close:hover {
  background: #ebe5ff;
  color: #5438dd;
}

.footer-info-close svg {
  width: 17px;
  height: 17px;
}

@media (max-width: 560px) {
  .footer-info-panel {
    grid-template-columns: 38px 1fr 30px;

    padding: 14px;
  }

  .footer-info-panel-icon {
    width: 38px;
    height: 38px;
  }
}
/* =========================================================
   35. RODAPÉ — CAMPOS EXPANSÍVEIS INLINE
   O texto abre dentro da própria coluna do rodapé.
   ========================================================= */

.footer-inline-info {
  width: 100%;
  margin: 0;
  border-bottom: 1px solid #ece9f4;
}

.footer-inline-info > summary {
  min-height: 38px;
  padding: 8px 0;

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

  list-style: none;
  cursor: pointer;

  color: #5c647c;

  font-size: 10px;
  line-height: 1.4;

  transition:
    color 0.18s ease,
    padding-left 0.18s ease;
}

.footer-inline-info > summary::-webkit-details-marker {
  display: none;
}

.footer-inline-info > summary::marker {
  content: "";
}

.footer-inline-info > summary:hover,
.footer-inline-info[open] > summary {
  color: #5737df;
}

.footer-inline-info[open] > summary {
  padding-left: 4px;
  font-weight: 700;
}

.footer-inline-label {
  min-width: 0;

  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-inline-label > span {
  min-width: 0;
}

.footer-inline-label svg {
  width: 14px;
  height: 14px;

  flex: 0 0 14px;

  color: #5f43e8;
}

.footer-inline-chevron {
  width: 13px;
  height: 13px;

  flex: 0 0 13px;

  color: #8d86a4;

  transition: transform 0.18s ease;
}

.footer-inline-info[open] .footer-inline-chevron {
  transform: rotate(180deg);

  color: #5737df;
}


/* CAMPO QUE ABRE */
.footer-inline-content {
  margin: 0 0 9px;
  padding: 10px 11px;

  border: 1px solid #ded6ff;
  border-radius: 10px;

  background: #f7f4ff;

  animation: footerInlineOpen 0.18s ease;
}

.footer-inline-content p {
  margin: 0;

  color: #5c647c;

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


/* PRIMEIRO ITEM EM DESTAQUE */
.footer-inline-feature {
  margin-bottom: 4px;

  border-bottom: 0;
}

.footer-inline-feature > summary {
  padding: 10px 11px;

  border-radius: 11px;

  background: #f1ecff;
  color: #4e2ed8;

  font-weight: 800;
}

.footer-inline-feature[open] > summary {
  margin-bottom: 7px;
  padding-left: 11px;

  background: #e9e1ff;
}

.footer-inline-feature .footer-inline-content {
  margin-top: 0;
}


/* ESCONDE ESTRUTURA ANTIGA, CASO SOBREVIVA NO CACHE/CSS */
.footer-info-panel {
  display: none !important;
}


@keyframes footerInlineOpen {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

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


@media (max-width: 560px) {
  .footer-inline-info > summary {
    min-height: 42px;

    font-size: 10.5px;
  }

  .footer-inline-content p {
    font-size: 9.5px;
  }
}
/* =========================================================
   36. RODAPÉ — SEM COLUNA CONTEÚDOS
   ========================================================= */

.footer-shell .footer-grid {
  grid-template-columns:
    1.35fr
    minmax(0, 1fr)
    minmax(0, 1fr)
    minmax(0, 1fr);
}

/* Redistribui melhor o espaço entre as colunas */
.footer-shell .footer-column {
  padding-left: 34px;
  padding-right: 34px;
}

/* A última coluna aproveita melhor o espaço restante */
.footer-shell .footer-grid > .footer-column:last-child {
  padding-right: 10px;
}

@media (max-width: 1180px) {
  .footer-shell .footer-grid {
    grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  }

  .footer-about {
    grid-row: auto;
  }
}

@media (max-width: 820px) {
  .footer-shell .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-shell .footer-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   40. PÁGINAS INTERNAS — SOLUÇÕES / SEGMENTOS / CONTEÚDOS
   ========================================================= */

.internal-page {
  background: #f8f7fc;
}

.internal-header {
  position: sticky;
  top: 0;
  z-index: 50;

  padding: 14px 0;

  background: rgba(248,247,252,.92);

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

.internal-header-shell {
  min-height: 82px;

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

  padding: 0 24px;

  border: 1px solid #e2ddf3;
  border-radius: 22px;

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

  box-shadow: 0 12px 38px rgba(37,31,80,.07);
}

.internal-brand {
  width: 205px;
  height: 68px;

  display: flex;
  align-items: center;

  overflow: visible;
}

.internal-brand img {
  width: 195px;
  height: 64px;

  object-fit: contain;

  transform: scale(1.14);
  transform-origin: left center;
}

.internal-nav {
  flex: 1;

  display: flex;
  justify-content: center;
  gap: 6px;
}

.internal-nav a {
  padding: 10px 12px;

  border-radius: 11px;

  color: #39415d;

  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.internal-nav a:hover,
.internal-nav a.is-active {
  background: #f1edff;
  color: #593cf0;
}

.internal-header-cta {
  min-height: 42px;
  padding: 0 15px;

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

  border-radius: 11px;

  background: #5f43ee;
  color: #fff;

  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}

.internal-hero {
  padding: 72px 0 50px;
}

.internal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 54px;
  align-items: center;
}

.internal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-bottom: 14px;
  padding: 7px 11px;

  border: 1px solid #ded6ff;
  border-radius: 999px;

  background: #f3efff;
  color: #5b3eea;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
}

.internal-hero h1 {
  margin: 0 0 15px;

  color: #17245c;

  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.01;
  letter-spacing: -.045em;
}

.internal-hero h1 span {
  color: #5e42ec;
}

.internal-hero p {
  max-width: 720px;

  margin: 0;

  color: #626b84;

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

.internal-hero-actions {
  margin-top: 24px;

  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.internal-secondary-link {
  min-height: 43px;
  padding: 0 15px;

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

  border: 1px solid #dcd5f6;
  border-radius: 11px;

  background: #fff;
  color: #5046a8;

  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}

.internal-hero-panel {
  padding: 26px;

  border: 1px solid #dfd9f2;
  border-radius: 24px;

  background:
    linear-gradient(145deg, #ffffff 0%, #f4f0ff 100%);

  box-shadow: 0 18px 44px rgba(44,34,94,.08);
}

.internal-hero-panel strong {
  display: block;

  margin-bottom: 14px;

  color: #24316a;

  font-size: 15px;
}

.internal-hero-list {
  display: grid;
  gap: 10px;
}

.internal-hero-list span {
  min-height: 48px;

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

  padding: 11px 12px;

  border: 1px solid #e6e1f3;
  border-radius: 12px;

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

  color: #59617a;

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

.internal-hero-list svg {
  width: 17px;
  height: 17px;

  color: #6044ef;
}

.internal-section {
  padding: 58px 0;
}

.internal-section--white {
  background: #fff;
}

.internal-section-heading {
  max-width: 760px;

  margin: 0 auto 30px;

  text-align: center;
}

.internal-section-heading h2 {
  margin: 0 0 10px;

  color: #17245c;

  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.internal-section-heading p {
  margin: 0;

  color: #687088;

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

.internal-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

.internal-card {
  min-height: 210px;

  padding: 22px;

  border: 1px solid #e4dff0;
  border-radius: 18px;

  background: #fff;

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

.internal-card:hover {
  transform: translateY(-3px);

  border-color: #d4caff;

  box-shadow: 0 16px 34px rgba(45,35,90,.07);
}

.internal-card-icon {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  margin-bottom: 17px;

  border-radius: 13px;

  background: #f0ebff;
  color: #5b40e7;
}

.internal-card-icon svg {
  width: 20px;
  height: 20px;
}

.internal-card h3 {
  margin: 0 0 8px;

  color: #23316d;

  font-size: 15px;
}

.internal-card p {
  margin: 0;

  color: #697086;

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

.internal-card-link {
  margin-top: 16px;

  display: inline-flex;
  align-items: center;
  gap: 5px;

  color: #5a40e4;

  font-size: 9.5px;
  font-weight: 800;
  text-decoration: none;
}

.internal-highlight {
  padding: 28px;

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

  border: 1px solid #ddd5ff;
  border-radius: 20px;

  background: linear-gradient(135deg, #f2edff 0%, #fff 100%);
}

.internal-highlight h2 {
  margin: 0 0 7px;

  color: #1c2b67;

  font-size: 22px;
}

.internal-highlight p {
  margin: 0;

  color: #666e85;

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

.content-filter {
  margin-bottom: 24px;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.content-filter span {
  padding: 8px 11px;

  border: 1px solid #e0daef;
  border-radius: 999px;

  background: #fff;
  color: #5e657a;

  font-size: 9.5px;
  font-weight: 700;
}

.content-card-meta {
  margin-bottom: 10px;

  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.content-card-meta span {
  padding: 5px 7px;

  border-radius: 7px;

  background: #f2eff9;
  color: #726b89;

  font-size: 8px;
  font-weight: 700;
}

.internal-footer {
  padding: 28px 0;

  border-top: 1px solid #e8e3f1;

  background: #fff;
}

.internal-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.internal-footer-row span,
.internal-footer-row a {
  color: #747c90;

  font-size: 9.5px;
  text-decoration: none;
}

@media (max-width: 960px) {
  .internal-header-shell {
    flex-wrap: wrap;

    padding-top: 10px;
    padding-bottom: 10px;
  }

  .internal-nav {
    order: 3;
    width: 100%;
  }

  .internal-hero-grid {
    grid-template-columns: 1fr;
  }

  .internal-card-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 640px) {
  .internal-header {
    position: static;
  }

  .internal-header-shell {
    gap: 12px;
  }

  .internal-brand {
    width: 145px;
  }

  .internal-brand img {
    width: 138px;
    transform: scale(1.08);
  }

  .internal-nav {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .internal-header-cta {
    margin-left: auto;
  }

  .internal-hero {
    padding-top: 44px;
  }

  .internal-card-grid {
    grid-template-columns: 1fr;
  }

  .internal-highlight {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   41. PÁGINAS INTERNAS — HEADER DA HOME + IMAGENS
   ========================================================= */

/* Nas páginas internas usamos o MESMO cabeçalho da página inicial. */
.internal-page .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Hero com mídia */
.internal-hero-media {
  width: 100%;
  height: 390px;

  margin: 0;

  overflow: hidden;

  border: 1px solid #dfd8f2;
  border-radius: 24px;

  background: #ffffff;

  box-shadow: 0 18px 44px rgba(44,34,94,.09);
}

.internal-hero-media img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

/*
  As imagens foram criadas como composições completas.
  O CSS recorta somente a área visual relevante,
  sem alterar o arquivo da imagem.
*/
.internal-hero-media--segments img {
  transform: scale(1.75);
  transform-origin: 78% 35%;
}

.internal-hero-media--content img {
  transform: scale(1.7);
  transform-origin: 79% 34%;
}


/* Prévia visual dentro do painel da página Soluções */
.internal-panel-preview {
  height: 145px;

  margin-top: 14px;

  overflow: hidden;

  border: 1px solid #ded8ef;
  border-radius: 14px;

  background: #ffffff;
}

.internal-panel-preview img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transform: scale(1.75);
  transform-origin: 50% 82%;
}


/* Imagens dos módulos nos cards */
.internal-card-media {
  height: 128px;

  margin: -7px -7px 16px;

  overflow: hidden;

  border: 1px solid #ebe7f5;
  border-radius: 13px;

  background: #f7f6fb;
}

.internal-card-media img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: top left;

  transition: transform .25s ease;
}

.internal-card:hover .internal-card-media img {
  transform: scale(1.025);
}

/* Ícone fica mais compacto quando o card possui imagem */
.internal-card-media + .internal-card-icon {
  width: 38px;
  height: 38px;

  margin-bottom: 12px;
}

.internal-card-media + .internal-card-icon svg {
  width: 18px;
  height: 18px;
}


/* Mantém o conteúdo interno um pouco mais largo,
   combinando com o header principal. */
.internal-page .internal-hero > .container,
.internal-page .internal-section > .container,
.internal-page .internal-footer > .container {
  width: min(1420px, calc(100% - 48px));
}


/* Header responsivo exatamente como a home */
@media (max-width: 1040px) {
  .internal-hero-media {
    height: 330px;
  }
}

@media (max-width: 960px) {
  .internal-hero-media {
    height: 360px;
  }

  .internal-hero-media--segments img,
  .internal-hero-media--content img {
    transform: scale(1.45);
  }
}

@media (max-width: 640px) {
  .internal-page .internal-hero > .container,
  .internal-page .internal-section > .container,
  .internal-page .internal-footer > .container {
    width: min(100% - 28px, 1420px);
  }

  .internal-hero-media {
    height: 250px;
    border-radius: 18px;
  }

  .internal-hero-media--segments img,
  .internal-hero-media--content img {
    transform: scale(1.2);
    transform-origin: center;
  }

  .internal-panel-preview {
    height: 115px;
  }

  .internal-card-media {
    height: 160px;
  }
}
/* =========================================================
   42. CORREÇÃO — PÁGINAS INTERNAS
   NÃO altera a página inicial.
   ========================================================= */

body.internal-page .internal-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
}

body.internal-page .internal-card-media {
  width: 100%;
  height: 150px;
  margin: 0 0 16px;
  overflow: hidden;
  border: 1px solid #ebe7f5;
  border-radius: 14px;
  background: #f7f6fb;
}

body.internal-page .internal-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top left;
}

body.internal-page .internal-card .internal-card-link {
  margin-top: auto;
  padding-top: 16px;
}

body.internal-page .internal-card-grid {
  align-items: stretch;
}

/* O header é exatamente o mesmo componente visual da home. */
body.internal-page .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Nenhuma dessas regras alcança body da tela inicial. */
@media (max-width: 640px) {
  body.internal-page .internal-card {
    min-height: auto;
  }

  body.internal-page .internal-card-media {
    height: 180px;
  }
}
/* =========================================================
   43. SOLUÇÕES — MINI DASHBOARD DE RELATÓRIOS COM IA
   Somente páginas internas. Não altera a home.
   ========================================================= */

body.internal-page .ai-mini-dashboard {
  position: relative;
  isolation: isolate;

  min-height: 340px;
  margin-top: 14px;
  padding: 18px;

  overflow: hidden;

  border: 1px solid #ded8f1;
  border-radius: 18px;

  background:
    radial-gradient(circle at 88% 12%, rgba(94, 66, 236, .12), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(248,246,255,.96));

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 18px 44px rgba(55, 43, 112, .08);
}

body.internal-page .ai-mini-dashboard::before {
  content: "";
  position: absolute;
  inset: -45%;
  z-index: -2;

  background:
    conic-gradient(
      from 120deg,
      transparent 0deg,
      rgba(106, 74, 245, .07) 60deg,
      transparent 120deg,
      rgba(66, 164, 255, .06) 210deg,
      transparent 300deg
    );

  animation: dragonAiBackdropSpin 24s linear infinite;
}

body.internal-page .ai-mini-dashboard::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -58px;
  z-index: -1;

  height: 140px;

  background:
    radial-gradient(ellipse at center, rgba(101, 74, 243, .15), transparent 64%);

  filter: blur(16px);

  animation: dragonAiGlowDrift 7s ease-in-out infinite alternate;
}

body.internal-page .ai-mini-glow {
  position: absolute;
  z-index: -1;

  border-radius: 999px;

  filter: blur(28px);
  pointer-events: none;
}

body.internal-page .ai-mini-glow--one {
  width: 150px;
  height: 150px;

  right: -44px;
  top: 78px;

  background: rgba(117, 77, 255, .13);

  animation: dragonAiOrbOne 7.5s ease-in-out infinite alternate;
}

body.internal-page .ai-mini-glow--two {
  width: 110px;
  height: 110px;

  left: 36%;
  bottom: -52px;

  background: rgba(67, 173, 255, .12);

  animation: dragonAiOrbTwo 8.5s ease-in-out infinite alternate;
}

body.internal-page .ai-mini-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;

  margin-bottom: 14px;
}

body.internal-page .ai-mini-topbar > div {
  min-width: 0;
}

body.internal-page .ai-mini-kicker {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  margin-bottom: 5px;

  color: #6549eb;

  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: .06em;
}

body.internal-page .ai-mini-kicker svg {
  width: 11px;
  height: 11px;
}

body.internal-page .ai-mini-topbar strong {
  display: block;

  color: #17255e;

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

body.internal-page .ai-mini-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  flex: 0 0 auto;

  padding: 6px 8px;

  border: 1px solid #e4def2;
  border-radius: 999px;

  background: rgba(255,255,255,.8);
  color: #6b7288;

  font-size: 7.5px;
  font-weight: 700;
}

body.internal-page .ai-mini-live i {
  width: 7px;
  height: 7px;

  display: block;

  border-radius: 50%;

  background: #27bb82;

  animation: dragonAiLivePulse 1.6s ease-out infinite;
}

body.internal-page .ai-mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 8px;

  margin-bottom: 10px;
}

body.internal-page .ai-mini-metric {
  min-width: 0;

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

  padding: 10px;

  border: 1px solid #ebe6f6;
  border-radius: 12px;

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

  box-shadow: 0 8px 20px rgba(62, 50, 124, .04);

  animation: dragonAiCardFloat 5s ease-in-out infinite;
}

body.internal-page .ai-mini-metric:nth-child(2) {
  animation-delay: .7s;
}

body.internal-page .ai-mini-metric-icon {
  width: 31px;
  height: 31px;

  display: grid;
  place-items: center;

  flex: 0 0 31px;

  border-radius: 9px;

  background: linear-gradient(145deg, #f2edff, #e8e4ff);
  color: #6548ea;
}

body.internal-page .ai-mini-metric-icon svg {
  width: 15px;
  height: 15px;
}

body.internal-page .ai-mini-metric small,
body.internal-page .ai-mini-metric span {
  display: block;
}

body.internal-page .ai-mini-metric small {
  margin-bottom: 2px;

  color: #777f94;

  font-size: 7px;
}

body.internal-page .ai-mini-metric strong {
  display: inline-block;

  margin-right: 5px;

  color: #17255e;

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

body.internal-page .ai-mini-metric .ai-positive {
  display: inline-block;

  color: #19a974;

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

body.internal-page .ai-mini-chart {
  padding: 11px;

  border: 1px solid #e7e1f3;
  border-radius: 14px;

  background: rgba(255,255,255,.88);
}

body.internal-page .ai-mini-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  margin-bottom: 8px;
}

body.internal-page .ai-mini-chart-head > span:first-child {
  color: #263267;

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

body.internal-page .ai-mini-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 4px;

  color: #5c657e;

  font-size: 7px;
  font-weight: 700;
}

body.internal-page .ai-mini-whatsapp svg {
  width: 11px;
  height: 11px;

  color: #6548ea;
}

body.internal-page .ai-mini-chart-stage {
  position: relative;

  height: 132px;

  overflow: hidden;

  border-radius: 10px;

  background:
    linear-gradient(180deg, rgba(248,247,255,.84), rgba(255,255,255,.66));
}

body.internal-page .ai-mini-grid {
  position: absolute;
  inset: 0;

  opacity: .44;

  background-image:
    linear-gradient(to right, rgba(91, 72, 173, .08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(91, 72, 173, .08) 1px, transparent 1px);

  background-size: 52px 100%, 100% 33px;
}

body.internal-page .ai-mini-bars {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 12px;

  height: 78px;

  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 7px;

  opacity: .52;
}

body.internal-page .ai-mini-bars span {
  width: 12px;
  height: var(--bar-h);

  display: block;

  border-radius: 5px 5px 2px 2px;

  background:
    linear-gradient(180deg, rgba(107,79,245,.62), rgba(107,79,245,.08));

  transform-origin: center bottom;

  animation:
    dragonAiBarGrow 2.8s ease-in-out var(--bar-delay) infinite alternate;
}

body.internal-page .ai-mini-svg {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  overflow: visible;
}

body.internal-page .ai-mini-area {
  fill: url(#dragonAiArea);

  opacity: .72;

  animation: dragonAiAreaBreathe 4.5s ease-in-out infinite alternate;
}

body.internal-page .ai-mini-line {
  fill: none;

  stroke-linecap: round;
  stroke-linejoin: round;
}

body.internal-page .ai-mini-line--ghost {
  stroke: #91bfff;
  stroke-width: 2;

  stroke-dasharray: 7 8;

  opacity: .38;

  animation: dragonAiGhostMove 7s linear infinite;
}

body.internal-page .ai-mini-line--main {
  stroke: url(#dragonAiLine);
  stroke-width: 4;

  stroke-dasharray: 900;
  stroke-dashoffset: 900;

  filter: drop-shadow(0 3px 8px rgba(102, 73, 238, .2));

  animation: dragonAiDrawLine 6s ease-in-out infinite;
}

body.internal-page .ai-mini-point {
  fill: #6c4ef0;

  stroke: #ffffff;
  stroke-width: 3;

  transform-box: fill-box;
  transform-origin: center;

  filter: drop-shadow(0 0 6px rgba(108,78,240,.42));

  animation: dragonAiPointPulse 2.2s ease-in-out infinite;
}

body.internal-page .ai-mini-point--2 {
  animation-delay: .55s;
}

body.internal-page .ai-mini-point--3 {
  animation-delay: 1.1s;
}

body.internal-page .ai-mini-insight {
  display: grid;
  grid-template-columns: 28px 1fr 14px;
  gap: 8px;
  align-items: center;

  margin-top: 9px;
  padding: 8px;

  border: 1px solid #e8e2f4;
  border-radius: 10px;

  background:
    linear-gradient(90deg, rgba(247,244,255,.96), rgba(255,255,255,.86));
}

body.internal-page .ai-mini-insight-icon {
  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  border-radius: 8px;

  background: #eee9ff;
  color: #6044eb;
}

body.internal-page .ai-mini-insight-icon svg {
  width: 14px;
  height: 14px;
}

body.internal-page .ai-mini-insight strong,
body.internal-page .ai-mini-insight small {
  display: block;
}

body.internal-page .ai-mini-insight strong {
  margin-bottom: 2px;

  color: #28356b;

  font-size: 7.5px;
}

body.internal-page .ai-mini-insight small {
  color: #777f94;

  font-size: 6.7px;
  line-height: 1.35;
}

body.internal-page .ai-mini-insight > svg {
  width: 13px;
  height: 13px;

  color: #6044eb;
}

@keyframes dragonAiBackdropSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes dragonAiGlowDrift {
  from {
    transform: translateX(-8%) scale(.92);
    opacity: .58;
  }

  to {
    transform: translateX(10%) scale(1.08);
    opacity: 1;
  }
}

@keyframes dragonAiOrbOne {
  from {
    transform: translate(-12px, 12px) scale(.9);
  }

  to {
    transform: translate(12px, -8px) scale(1.08);
  }
}

@keyframes dragonAiOrbTwo {
  from {
    transform: translate(0, 8px) scale(.9);
  }

  to {
    transform: translate(26px, -10px) scale(1.12);
  }
}

@keyframes dragonAiLivePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(39,187,130,.35);
  }

  70% {
    box-shadow: 0 0 0 7px rgba(39,187,130,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(39,187,130,0);
  }
}

@keyframes dragonAiCardFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes dragonAiBarGrow {
  0% {
    transform: scaleY(.22);
    opacity: .24;
  }

  100% {
    transform: scaleY(1);
    opacity: .72;
  }
}

@keyframes dragonAiAreaBreathe {
  from {
    opacity: .42;
  }

  to {
    opacity: .82;
  }
}

@keyframes dragonAiGhostMove {
  to {
    stroke-dashoffset: -120;
  }
}

@keyframes dragonAiDrawLine {
  0% {
    stroke-dashoffset: 900;
    opacity: .35;
  }

  42% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  78% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: -900;
    opacity: .25;
  }
}

@keyframes dragonAiPointPulse {
  0%, 100% {
    transform: scale(.78);
    opacity: .58;
  }

  50% {
    transform: scale(1.28);
    opacity: 1;
  }
}

@media (max-width: 960px) {
  body.internal-page .ai-mini-dashboard {
    min-height: 330px;
  }
}

@media (max-width: 640px) {
  body.internal-page .ai-mini-dashboard {
    min-height: auto;
    padding: 14px;
  }

  body.internal-page .ai-mini-topbar {
    align-items: center;
  }

  body.internal-page .ai-mini-live {
    font-size: 6.8px;
  }

  body.internal-page .ai-mini-metrics {
    grid-template-columns: 1fr;
  }

  body.internal-page .ai-mini-chart-stage {
    height: 118px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.internal-page .ai-mini-dashboard *,
  body.internal-page .ai-mini-dashboard::before,
  body.internal-page .ai-mini-dashboard::after {
    animation: none !important;
  }

  body.internal-page .ai-mini-line--main {
    stroke-dashoffset: 0;
  }
}

/* =========================================================
   44. SOLUÇÕES — DASHBOARD ROTATIVO COMO PROTAGONISTA
   Somente solucoes.html. A home não é alterada.
   ========================================================= */

body.solutions-page .internal-hero {
  padding-top: 48px;
  padding-bottom: 58px;
}

body.solutions-page .internal-hero-grid {
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}

body.solutions-page .internal-hero-grid--solutions-focus {
  max-width: 1360px;
}

body.solutions-page .solutions-hero-intro {
  max-width: 860px;
}

body.solutions-page .internal-hero h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(38px, 4.2vw, 68px);
  line-height: 1.02;
}

body.solutions-page .internal-hero h1 span {
  color: inherit;
}

body.solutions-page .internal-hero p {
  max-width: 760px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.72;
  color: #5b6481;
}

body.solutions-page .internal-hero-actions {
  margin-top: 22px;
}

body.solutions-page .solutions-dashboard-showcase {
  min-width: 0;
  width: 100%;
}

body.solutions-page .solutions-dashboard-shell {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 720px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid #ddd7f0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 8%, rgba(103, 76, 246, .13), transparent 24%),
    radial-gradient(circle at 8% 92%, rgba(69, 170, 255, .10), transparent 24%),
    linear-gradient(145deg, #ffffff 0%, #faf8ff 56%, #f5f2ff 100%);
  box-shadow:
    0 30px 70px rgba(49, 37, 102, .10),
    inset 0 1px 0 rgba(255,255,255,.9);
}

body.solutions-page .solutions-dashboard-shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  right: -160px;
  bottom: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 82, 245, .16), transparent 68%);
  filter: blur(6px);
  animation: solutionsHeroGlow 8s ease-in-out infinite alternate;
}

body.solutions-page .solutions-dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

body.solutions-page .solutions-dashboard-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  color: #674aed;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .055em;
}

body.solutions-page .solutions-dashboard-eyebrow svg {
  width: 14px;
  height: 14px;
}

body.solutions-page .solutions-dashboard-title {
  display: block;
  color: #17255e;
  font-size: 28px;
  line-height: 1.15;
}

body.solutions-page .solutions-dashboard-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 10px 13px;
  border: 1px solid #e4def2;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  color: #70798f;
  font-size: 11px;
  font-weight: 700;
}

body.solutions-page .solutions-dashboard-live i {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: #26bd84;
  animation: solutionsLivePulse 1.55s ease-out infinite;
}

body.solutions-page .solutions-dashboard-stage {
  min-height: 540px;
}

body.solutions-page .solutions-dashboard-slide {
  display: none;
  height: 100%;
  animation: solutionsDashboardIn .48s ease both;
}

body.solutions-page .solutions-dashboard-slide.is-active {
  display: block;
}

body.solutions-page .solutions-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  margin-bottom: 16px;
}

body.solutions-page .solutions-kpis article,
body.solutions-page .solutions-big-metric,
body.solutions-page .solutions-mini-channel,
body.solutions-page .solutions-finance-overview,
body.solutions-page .solutions-ai-stats article {
  border: 1px solid #e9e4f5;
  border-radius: 16px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 24px rgba(57, 44, 111, .04);
}

body.solutions-page .solutions-kpis article { padding: 15px 16px; }
body.solutions-page .solutions-kpis small {
  display: block;
  margin-bottom: 6px;
  color: #7b849b;
  font-size: 11px;
}
body.solutions-page .solutions-kpis strong {
  display: block;
  color: #17255e;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.08;
}
body.solutions-page .solutions-kpis span {
  display: block;
  margin-top: 5px;
  color: #18a871;
  font-size: 10px;
  font-weight: 800;
}

body.solutions-page .solutions-chart-card {
  padding: 18px;
  border: 1px solid #e8e3f4;
  border-radius: 20px;
  background: rgba(255,255,255,.88);
}

body.solutions-page .solutions-chart-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
body.solutions-page .solutions-chart-heading strong,
body.solutions-page .solutions-chart-heading small { display: block; }
body.solutions-page .solutions-chart-heading strong {
  margin-bottom: 4px;
  color: #27346b;
  font-size: 16px;
}
body.solutions-page .solutions-chart-heading small {
  color: #858ca0;
  font-size: 11px;
}
body.solutions-page .solutions-chart-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #f1edff;
  color: #6247ea;
  font-size: 10px;
  font-weight: 800;
}
body.solutions-page .solutions-chart-badge svg {
  width: 12px;
  height: 12px;
}

body.solutions-page .solutions-line-chart,
body.solutions-page .solutions-ai-wave {
  position: relative;
  height: 345px;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(249,248,255,.9), rgba(255,255,255,.62));
}

body.solutions-page .solutions-chart-grid {
  position: absolute;
  inset: 0;
  opacity: .48;
  background-image:
    linear-gradient(to right, rgba(91,72,173,.075) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(91,72,173,.075) 1px, transparent 1px);
  background-size: 72px 100%, 100% 56px;
}

body.solutions-page .solutions-line-chart svg,
body.solutions-page .solutions-ai-wave > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

body.solutions-page .solutions-chart-area,
body.solutions-page .solutions-ai-area {
  fill: url(#solutionAreaGradient);
  animation: solutionsAreaBreathe 4s ease-in-out infinite alternate;
}

body.solutions-page .solutions-chart-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body.solutions-page .solutions-chart-line--primary {
  stroke: url(#solutionLineGradient);
  stroke-width: 4;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  filter: drop-shadow(0 3px 8px rgba(99,73,238,.2));
  animation: solutionsDrawLine 4.3s ease-in-out infinite;
}
body.solutions-page .solutions-chart-line--secondary {
  stroke: #8ec2ff;
  stroke-width: 2;
  stroke-dasharray: 7 9;
  opacity: .36;
  animation: solutionsDashMove 7s linear infinite;
}
body.solutions-page .solutions-chart-point {
  fill: #684cf2;
  stroke: #fff;
  stroke-width: 3;
  transform-box: fill-box;
  transform-origin: center;
  animation: solutionsPointPulse 2s ease-in-out infinite;
}
body.solutions-page .solutions-chart-point.p2 { animation-delay: .35s; }
body.solutions-page .solutions-chart-point.p3 { animation-delay: .7s; }
body.solutions-page .solutions-chart-point.p4 { animation-delay: 1.05s; }

body.solutions-page .solutions-dashboard-split {
  display: grid;
  grid-template-columns: minmax(0,1.55fr) minmax(260px,.45fr);
  gap: 14px;
}
body.solutions-page .solutions-chart-card--bars { min-height: 470px; }
body.solutions-page .solutions-bars-chart {
  height: 388px;
  display: flex;
  align-items: flex-end;
  gap: 15px;
  padding: 30px 14px 26px;
}
body.solutions-page .solutions-bars-chart > span {
  position: relative;
  flex: 1;
  min-width: 28px;
  height: var(--bar);
  display: block;
  border-radius: 14px 14px 4px 4px;
  background: linear-gradient(180deg, #52a9ff 0%, #684cf2 100%);
  transform-origin: center bottom;
  box-shadow: 0 10px 20px rgba(101,75,240,.12);
  animation: solutionsBarDance 2.8s ease-in-out var(--delay) infinite alternate;
}
body.solutions-page .solutions-bars-chart i {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  color: #8a91a4;
  font-size: 10px;
  font-style: normal;
}
body.solutions-page .solutions-side-stack {
  display: grid;
  grid-template-rows: .9fr 1.1fr;
  gap: 14px;
}
body.solutions-page .solutions-big-metric { padding: 20px; }
body.solutions-page .solutions-big-metric-icon {
  width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 16px;
  border-radius: 12px; background: #eee9ff; color: #6044ea;
}
body.solutions-page .solutions-big-metric-icon svg { width: 20px; height: 20px; }
body.solutions-page .solutions-big-metric small,
body.solutions-page .solutions-big-metric strong,
body.solutions-page .solutions-big-metric p { display: block; }
body.solutions-page .solutions-big-metric small { color: #81889c; font-size: 11px; }
body.solutions-page .solutions-big-metric strong { margin: 6px 0 8px; color: #17255e; font-size: 42px; }
body.solutions-page .solutions-big-metric p { margin: 0; color: #1aa671; font-size: 10px; line-height: 1.5; }
body.solutions-page .solutions-mini-channel { padding: 18px; }
body.solutions-page .solutions-mini-channel div {
  display: flex; justify-content: space-between; gap: 10px; margin-bottom: 6px; color: #626d88; font-size: 10px;
}
body.solutions-page .solutions-mini-channel div strong { color: #26346b; }
body.solutions-page .solutions-mini-channel > i {
  position: relative; height: 8px; display: block; margin-bottom: 18px; overflow: hidden; border-radius: 999px; background: #eeeaf8;
}
body.solutions-page .solutions-mini-channel > i::after {
  content: ""; position: absolute; inset: 0 auto 0 0; width: var(--progress); border-radius: inherit; background: linear-gradient(90deg, #684cf2, #52a9ff); animation: solutionsProgressIn 2s ease both;
}

body.solutions-page .solutions-dashboard-split--finance {
  display: grid;
  grid-template-columns: minmax(0,1.3fr) minmax(280px,.7fr);
  gap: 14px;
}
body.solutions-page .solutions-finance-chart {
  position: relative;
  height: 330px;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(249,248,255,.9), rgba(255,255,255,.62));
}
body.solutions-page .solutions-finance-chart svg { width: 100%; height: 100%; }
body.solutions-page .solutions-finance-line {
  fill: none; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 900; stroke-dashoffset: 900; animation: solutionsFinanceDraw 4.6s ease-in-out infinite;
}
body.solutions-page .solutions-finance-line--income { stroke: #53aaff; }
body.solutions-page .solutions-finance-line--expense { stroke: #7358f6; animation-delay: .3s; }
body.solutions-page .solutions-finance-legend {
  display: flex; gap: 16px; margin-top: 12px; color: #6d7690; font-size: 11px; font-weight: 600;
}
body.solutions-page .solutions-finance-legend span { display: inline-flex; align-items: center; gap: 7px; }
body.solutions-page .solutions-finance-legend i {
  width: 10px; height: 10px; border-radius: 50%; display: block;
}
body.solutions-page .solutions-finance-legend i.income { background: #53aaff; }
body.solutions-page .solutions-finance-legend i.expense { background: #7358f6; }
body.solutions-page .solutions-finance-overview { padding: 18px; }
body.solutions-page .solutions-donut-wrap {
  position: relative; width: 180px; height: 180px; margin: 0 auto 18px;
}
body.solutions-page .solutions-donut {
  width: 100%; height: 100%; border-radius: 50%;
  background: conic-gradient(#684cf2 0 55%, #52a9ff 55% 82%, #ece7fa 82% 100%);
  animation: solutionsDonutFloat 4s ease-in-out infinite alternate;
}
body.solutions-page .solutions-donut::after {
  content: ""; position: absolute; inset: 34px; border-radius: 50%; background: #fff;
}
body.solutions-page .solutions-donut-center {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
}
body.solutions-page .solutions-donut-center strong { display: block; color: #17255e; font-size: 34px; }
body.solutions-page .solutions-donut-center small { display: block; color: #81889c; font-size: 11px; }
body.solutions-page .solutions-finance-values { display: grid; gap: 10px; }
body.solutions-page .solutions-finance-values article {
  padding: 14px; border-radius: 13px; background: #f8f6ff;
}
body.solutions-page .solutions-finance-values small,
body.solutions-page .solutions-finance-values strong { display: block; }
body.solutions-page .solutions-finance-values small { color: #858ca0; font-size: 11px; }
body.solutions-page .solutions-finance-values strong { margin-top: 4px; color: #26346a; font-size: 18px; }

body.solutions-page .solutions-ai-layout {
  display: grid;
  grid-template-columns: minmax(0,1.45fr) minmax(260px,.55fr);
  gap: 14px;
}
body.solutions-page .solutions-ai-main {
  padding: 18px; border: 1px solid #e8e3f4; border-radius: 20px; background: rgba(255,255,255,.88);
}
body.solutions-page .solutions-ai-wave { height: 400px; }
body.solutions-page .solutions-ai-area { fill: rgba(108,76,242,.12); animation: solutionsAreaBreathe 4s ease-in-out infinite alternate; }
body.solutions-page .solutions-ai-line {
  fill: none; stroke: url(#solutionLineGradient); stroke-width: 5; stroke-linecap: round; stroke-dasharray: 900; stroke-dashoffset: 900; animation: solutionsDrawLine 4.5s ease-in-out infinite;
}
body.solutions-page .solutions-ai-floating-insight {
  position: absolute; left: 8%; bottom: 14%; max-width: 290px; display: grid; grid-template-columns: 38px 1fr; gap: 9px; align-items: center; padding: 12px 14px; border: 1px solid #e2dbf5; border-radius: 14px; background: rgba(255,255,255,.94); box-shadow: 0 18px 34px rgba(50,38,103,.11); animation: solutionsInsightFloat 4.5s ease-in-out infinite;
}
body.solutions-page .solutions-ai-floating-insight > span {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: #eee9ff; color: #6044ea;
}
body.solutions-page .solutions-ai-floating-insight svg { width: 17px; height: 17px; }
body.solutions-page .solutions-ai-floating-insight small,
body.solutions-page .solutions-ai-floating-insight strong { display: block; }
body.solutions-page .solutions-ai-floating-insight small { margin-bottom: 3px; color: #858ca0; font-size: 10px; }
body.solutions-page .solutions-ai-floating-insight strong { color: #26346a; font-size: 12px; line-height: 1.35; }
body.solutions-page .solutions-ai-stats { display: grid; gap: 10px; }
body.solutions-page .solutions-ai-stats article { padding: 18px; }
body.solutions-page .solutions-ai-stats article > span {
  width: 36px; height: 36px; display: grid; place-items: center; margin-bottom: 11px; border-radius: 11px; background: #eee9ff; color: #6247ea;
}
body.solutions-page .solutions-ai-stats svg { width: 16px; height: 16px; }
body.solutions-page .solutions-ai-stats small,
body.solutions-page .solutions-ai-stats strong,
body.solutions-page .solutions-ai-stats p { display: block; }
body.solutions-page .solutions-ai-stats small { color: #81899e; font-size: 11px; }
body.solutions-page .solutions-ai-stats strong { margin: 5px 0 6px; color: #17255e; font-size: 28px; }
body.solutions-page .solutions-ai-stats p { margin: 0; color: #18a871; font-size: 10px; line-height: 1.4; }

body.solutions-page .solutions-dashboard-controls { margin-top: 18px; }
body.solutions-page .solutions-dashboard-tabs {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 8px;
}
body.solutions-page .solutions-dashboard-tabs button {
  min-height: 44px; border: 1px solid #e7e1f4; border-radius: 12px; background: rgba(255,255,255,.72); color: #7a8297; font-family: inherit; font-size: 11px; font-weight: 800; cursor: pointer; transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}
body.solutions-page .solutions-dashboard-tabs button:hover { transform: translateY(-1px); color: #6044eb; border-color: #d9d0fa; }
body.solutions-page .solutions-dashboard-tabs button.is-active { color: #fff; border-color: #6548ed; background: linear-gradient(135deg, #684cf2, #7b5aff); }
body.solutions-page .solutions-dashboard-progress {
  height: 4px; margin-top: 10px; overflow: hidden; border-radius: 999px; background: #eae6f4;
}
body.solutions-page .solutions-dashboard-progress span {
  width: 0; height: 100%; display: block; border-radius: inherit; background: linear-gradient(90deg, #684cf2, #51abff);
}
body.solutions-page .solutions-dashboard-progress.is-running span { animation: solutionsDashboardProgress 5.2s linear forwards; }

@keyframes solutionsHeroGlow { from { transform: translate(-18px, 8px) scale(.92); } to { transform: translate(18px, -9px) scale(1.08); } }
@keyframes solutionsLivePulse { 0% { box-shadow: 0 0 0 0 rgba(38,189,132,.36); } 70% { box-shadow: 0 0 0 8px rgba(38,189,132,0); } 100% { box-shadow: 0 0 0 0 rgba(38,189,132,0); } }
@keyframes solutionsDashboardIn { from { opacity: 0; transform: translateY(10px) scale(.994); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes solutionsDrawLine { 0% { stroke-dashoffset: 1000; opacity: .28; } 38% { stroke-dashoffset: 0; opacity: 1; } 78% { stroke-dashoffset: 0; opacity: 1; } 100% { stroke-dashoffset: -1000; opacity: .30; } }
@keyframes solutionsDashMove { to { stroke-dashoffset: -120; } }
@keyframes solutionsPointPulse { 0%, 100% { transform: scale(.72); opacity: .55; } 50% { transform: scale(1.35); opacity: 1; } }
@keyframes solutionsAreaBreathe { from { opacity: .52; } to { opacity: .92; } }
@keyframes solutionsBarDance { from { transform: scaleY(.55); opacity: .5; } to { transform: scaleY(1); opacity: 1; } }
@keyframes solutionsProgressIn { from { transform: scaleX(0); transform-origin: left; } to { transform: scaleX(1); transform-origin: left; } }
@keyframes solutionsFinanceDraw { 0% { stroke-dashoffset: 900; opacity: .2; } 42% { stroke-dashoffset: 0; opacity: 1; } 82% { stroke-dashoffset: 0; opacity: 1; } 100% { stroke-dashoffset: -900; opacity: .25; } }
@keyframes solutionsDonutFloat { from { transform: rotate(-5deg) scale(.98); } to { transform: rotate(8deg) scale(1.025); } }
@keyframes solutionsInsightFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes solutionsDashboardProgress { from { width: 0; } to { width: 100%; } }

@media (max-width: 1220px) {
  body.solutions-page .solutions-dashboard-shell { min-height: 680px; }
}

@media (max-width: 1040px) {
  body.solutions-page .internal-hero h1,
  body.solutions-page .internal-hero p,
  body.solutions-page .solutions-hero-intro { max-width: none; }
  body.solutions-page .solutions-dashboard-shell { min-height: 620px; }
}

@media (max-width: 760px) {
  body.solutions-page .internal-hero { padding-top: 34px; }
  body.solutions-page .internal-hero h1 { font-size: clamp(34px, 10vw, 48px); }
  body.solutions-page .internal-hero p { font-size: 15px; }
  body.solutions-page .solutions-dashboard-shell { min-height: auto; padding: 15px; border-radius: 20px; }
  body.solutions-page .solutions-dashboard-top { align-items: flex-start; }
  body.solutions-page .solutions-dashboard-title { font-size: 18px; }
  body.solutions-page .solutions-kpis { grid-template-columns: repeat(2, minmax(0,1fr)); }
  body.solutions-page .solutions-line-chart,
  body.solutions-page .solutions-ai-wave { height: 235px; }
  body.solutions-page .solutions-dashboard-split,
  body.solutions-page .solutions-dashboard-split--finance,
  body.solutions-page .solutions-ai-layout { grid-template-columns: 1fr; }
  body.solutions-page .solutions-chart-card--bars { min-height: auto; }
  body.solutions-page .solutions-bars-chart { height: 245px; }
  body.solutions-page .solutions-side-stack { grid-template-columns: repeat(2, minmax(0,1fr)); grid-template-rows: auto; }
  body.solutions-page .solutions-finance-chart { height: 235px; }
  body.solutions-page .solutions-finance-overview { display: grid; grid-template-columns: .9fr 1.1fr; gap: 16px; align-items: center; }
  body.solutions-page .solutions-donut-wrap { width: 140px; height: 140px; margin-bottom: 0; }
  body.solutions-page .solutions-donut::after { inset: 26px; }
  body.solutions-page .solutions-dashboard-tabs button { min-height: 39px; font-size: 9px; }
}

@media (max-width: 520px) {
  body.solutions-page .solutions-dashboard-top { flex-direction: column; }
  body.solutions-page .solutions-side-stack { grid-template-columns: 1fr; }
  body.solutions-page .solutions-finance-overview { grid-template-columns: 1fr; }
  body.solutions-page .solutions-dashboard-tabs { grid-template-columns: repeat(2, minmax(0,1fr)); }
  body.solutions-page .solutions-bars-chart { gap: 7px; padding-inline: 4px; }
  body.solutions-page .solutions-bars-chart > span { min-width: 12px; }
  body.solutions-page .solutions-ai-floating-insight { left: 5%; right: 5%; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  body.solutions-page .solutions-dashboard-shell *,
  body.solutions-page .solutions-dashboard-shell::before { animation: none !important; }
  body.solutions-page .solutions-chart-line--primary,
  body.solutions-page .solutions-finance-line,
  body.solutions-page .solutions-ai-line { stroke-dashoffset: 0; }
}

/* =========================================================
   45. SOLUÇÕES — INTRO CENTRALIZADA SEM CTAs
   ========================================================= */
body.solutions-page .solutions-hero-intro {
  width: min(100%, 980px);
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

body.solutions-page .solutions-hero-intro .internal-eyebrow {
  margin-inline: auto;
}

body.solutions-page .solutions-hero-intro h1 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

body.solutions-page .solutions-hero-intro p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}


/* =========================================================
   46. SOLUÇÕES — DASHBOARD IA AVANÇADO
   ========================================================= */
body.solutions-page .solutions-dashboard-slide--ai {
  min-height: 0;
}

body.solutions-page .solutions-ai-dashboard-v2 {
  display: grid;
  gap: 12px;
}

body.solutions-page .solutions-ai-v2-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

body.solutions-page .solutions-ai-v2-top > div > strong {
  display: block;
  margin-top: 4px;
  color: #17255e;
  font-size: 15px;
}

body.solutions-page .solutions-ai-v2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6649ec;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .055em;
}

body.solutions-page .solutions-ai-v2-kicker svg {
  width: 13px;
  height: 13px;
}

body.solutions-page .solutions-ai-v2-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid #d7f0e6;
  border-radius: 999px;
  background: #effaf6;
  color: #168f67;
  font-size: 8px;
  font-weight: 800;
}

body.solutions-page .solutions-ai-v2-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #21b87e;
  animation: solutionsLivePulse 1.5s ease-out infinite;
}

body.solutions-page .solutions-ai-v2-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

body.solutions-page .solutions-ai-v2-kpis article {
  position: relative;
  min-width: 0;
  min-height: 86px;
  display: grid;
  grid-template-columns: 32px 1fr 68px;
  align-items: center;
  gap: 9px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid #e8e3f4;
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 24px rgba(57,44,111,.035);
}

body.solutions-page .solutions-ai-v2-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #eee9ff;
  color: #6247ea;
}

body.solutions-page .solutions-ai-v2-icon svg {
  width: 15px;
  height: 15px;
}

body.solutions-page .solutions-ai-v2-kpis small,
body.solutions-page .solutions-ai-v2-kpis strong,
body.solutions-page .solutions-ai-v2-kpis div > span {
  display: block;
}

body.solutions-page .solutions-ai-v2-kpis small {
  color: #81899d;
  font-size: 7px;
}

body.solutions-page .solutions-ai-v2-kpis strong {
  margin: 3px 0;
  color: #17255e;
  font-size: 16px;
  line-height: 1.1;
}

body.solutions-page .solutions-ai-v2-kpis div > span {
  color: #19a975;
  font-size: 7px;
  font-weight: 800;
}

body.solutions-page .solutions-ai-v2-kpis article > svg {
  width: 68px;
  height: 34px;
  overflow: visible;
}

body.solutions-page .solutions-ai-v2-kpis article > svg path {
  fill: none;
  stroke: #7052f4;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  animation: solutionsAiV2SparkDraw 3.5s ease-in-out infinite;
}

body.solutions-page .solutions-ai-v2-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(225px, .7fr);
  gap: 10px;
}

body.solutions-page .solutions-ai-v2-main-chart,
body.solutions-page .solutions-ai-v2-donut-card,
body.solutions-page .solutions-ai-v2-mini-chart-card {
  border: 1px solid #e8e3f4;
  border-radius: 15px;
  background: rgba(255,255,255,.9);
}

body.solutions-page .solutions-ai-v2-main-chart {
  padding: 13px;
}

body.solutions-page .solutions-ai-v2-chart-head,
body.solutions-page .solutions-ai-v2-side-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

body.solutions-page .solutions-ai-v2-chart-head {
  margin-bottom: 7px;
}

body.solutions-page .solutions-ai-v2-chart-head strong,
body.solutions-page .solutions-ai-v2-chart-head small,
body.solutions-page .solutions-ai-v2-side-head strong,
body.solutions-page .solutions-ai-v2-side-head small {
  display: block;
}

body.solutions-page .solutions-ai-v2-chart-head strong,
body.solutions-page .solutions-ai-v2-side-head strong {
  color: #26346a;
  font-size: 9px;
}

body.solutions-page .solutions-ai-v2-chart-head small,
body.solutions-page .solutions-ai-v2-side-head small {
  margin-top: 2px;
  color: #8990a3;
  font-size: 6.5px;
}

body.solutions-page .solutions-ai-v2-chart-head > span {
  padding: 6px 8px;
  border: 1px solid #e2dcf2;
  border-radius: 8px;
  color: #6f7891;
  font-size: 6.5px;
  font-weight: 700;
}

body.solutions-page .solutions-ai-v2-chart-stage {
  position: relative;
  height: 238px;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(249,248,255,.92), rgba(255,255,255,.68));
}

body.solutions-page .solutions-ai-v2-grid-lines {
  position: absolute;
  inset: 0 0 25px 38px;
  opacity: .55;
  background-image:
    linear-gradient(to right, rgba(91,72,173,.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(91,72,173,.07) 1px, transparent 1px);
  background-size: 14.28% 100%, 100% 16.66%;
}

body.solutions-page .solutions-ai-v2-y-axis {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 6px;
  bottom: 28px;
  width: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #9198aa;
  font-size: 6px;
}

body.solutions-page .solutions-ai-v2-chart-stage > svg {
  position: absolute;
  z-index: 3;
  left: 34px;
  right: 0;
  top: 5px;
  width: calc(100% - 34px);
  height: calc(100% - 30px);
}

body.solutions-page .solutions-ai-v2-area {
  fill: url(#solutionsAiV2Area);
  opacity: .95;
  animation: solutionsAreaBreathe 4s ease-in-out infinite alternate;
}

body.solutions-page .solutions-ai-v2-line {
  fill: none;
  stroke: url(#solutionsAiV2Line);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1050;
  stroke-dashoffset: 1050;
  filter: drop-shadow(0 3px 7px rgba(104,76,242,.2));
  animation: solutionsAiV2LineDraw 5s ease-in-out infinite;
}

body.solutions-page .solutions-ai-v2-node {
  fill: #684cf2;
  stroke: #fff;
  stroke-width: 3;
  transform-box: fill-box;
  transform-origin: center;
  animation: solutionsPointPulse 2.1s ease-in-out infinite;
}

body.solutions-page .solutions-ai-v2-node.n2 { animation-delay: .15s; }
body.solutions-page .solutions-ai-v2-node.n3 { animation-delay: .3s; }
body.solutions-page .solutions-ai-v2-node.n4 { animation-delay: .45s; }
body.solutions-page .solutions-ai-v2-node.n5 { animation-delay: .6s; }
body.solutions-page .solutions-ai-v2-node.n6 { animation-delay: .75s; }
body.solutions-page .solutions-ai-v2-node.n7 { animation-delay: .9s; }

body.solutions-page .solutions-ai-v2-tooltip {
  position: absolute;
  z-index: 5;
  right: 4%;
  top: 26%;
  min-width: 115px;
  padding: 9px 10px;
  border: 1px solid #e1dbf2;
  border-radius: 10px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 30px rgba(52,39,107,.10);
  animation: solutionsAiV2TooltipFloat 3.8s ease-in-out infinite;
}

body.solutions-page .solutions-ai-v2-tooltip small,
body.solutions-page .solutions-ai-v2-tooltip strong,
body.solutions-page .solutions-ai-v2-tooltip span {
  display: block;
}

body.solutions-page .solutions-ai-v2-tooltip small {
  color: #8990a2;
  font-size: 6px;
}

body.solutions-page .solutions-ai-v2-tooltip strong {
  margin: 3px 0;
  color: #6549ef;
  font-size: 13px;
}

body.solutions-page .solutions-ai-v2-tooltip span {
  color: #18a871;
  font-size: 6.5px;
  font-weight: 800;
}

body.solutions-page .solutions-ai-v2-x-axis {
  position: absolute;
  z-index: 4;
  left: 38px;
  right: 8px;
  bottom: 3px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  color: #9198aa;
  font-size: 5.8px;
  text-align: center;
}

body.solutions-page .solutions-ai-v2-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

body.solutions-page .solutions-ai-v2-donut-card,
body.solutions-page .solutions-ai-v2-mini-chart-card {
  padding: 12px;
}

body.solutions-page .solutions-ai-v2-donut-row {
  min-height: 95px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 9px;
  align-items: center;
}

body.solutions-page .solutions-ai-v2-donut {
  position: relative;
  width: 76px;
  height: 76px;
  margin: auto;
  border-radius: 50%;
  background: conic-gradient(#684cf2 0 45%, #30a8f4 45% 76%, #39c98a 76% 100%);
  animation: solutionsDonutFloat 5s ease-in-out infinite alternate;
}

body.solutions-page .solutions-ai-v2-donut::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: #fff;
}

body.solutions-page .solutions-ai-v2-legend {
  display: grid;
  gap: 7px;
}

body.solutions-page .solutions-ai-v2-legend div {
  display: grid;
  grid-template-columns: 7px 1fr auto;
  gap: 5px;
  align-items: center;
  color: #646d85;
  font-size: 6.2px;
}

body.solutions-page .solutions-ai-v2-legend i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
body.solutions-page .solutions-ai-v2-legend i.c1 { background: #684cf2; }
body.solutions-page .solutions-ai-v2-legend i.c2 { background: #30a8f4; }
body.solutions-page .solutions-ai-v2-legend i.c3 { background: #39c98a; }
body.solutions-page .solutions-ai-v2-legend strong { color: #26346b; }

body.solutions-page .solutions-ai-v2-side-head > span {
  padding: 4px 6px;
  border-radius: 999px;
  background: #f1edff;
  color: #6247ea;
  font-size: 6px;
  font-weight: 800;
}

body.solutions-page .solutions-ai-v2-mini-stage {
  position: relative;
  height: 91px;
  margin-top: 4px;
  overflow: hidden;
}

body.solutions-page .solutions-ai-v2-mini-bars {
  position: absolute;
  inset: 12px 3px 4px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 6px;
}

body.solutions-page .solutions-ai-v2-mini-bars i {
  width: 16px;
  height: var(--h);
  display: block;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, rgba(113,82,244,.18), rgba(113,82,244,.46));
  transform-origin: bottom;
  animation: solutionsBarDance 2.6s ease-in-out infinite alternate;
}

body.solutions-page .solutions-ai-v2-mini-stage svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

body.solutions-page .solutions-ai-v2-mini-stage svg path {
  fill: none;
  stroke: #6d51f3;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 380;
  stroke-dashoffset: 380;
  animation: solutionsAiV2MiniLine 4.2s ease-in-out infinite;
}

body.solutions-page .solutions-ai-v2-insight {
  display: grid;
  grid-template-columns: 30px minmax(140px,.75fr) minmax(0,1.7fr);
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid #e7e1f4;
  border-radius: 13px;
  background: linear-gradient(90deg, rgba(250,248,255,.96), rgba(255,255,255,.92));
}

body.solutions-page .solutions-ai-v2-insight-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #eee9ff;
  color: #6247ea;
}

body.solutions-page .solutions-ai-v2-insight-icon svg {
  width: 14px;
  height: 14px;
}

body.solutions-page .solutions-ai-v2-insight-title small,
body.solutions-page .solutions-ai-v2-insight-title strong {
  display: block;
}

body.solutions-page .solutions-ai-v2-insight-title small {
  color: #81899c;
  font-size: 6.5px;
}

body.solutions-page .solutions-ai-v2-insight-title strong {
  margin-top: 2px;
  color: #26346a;
  font-size: 8.5px;
}

body.solutions-page .solutions-ai-v2-insight p {
  margin: 0;
  color: #69728a;
  font-size: 7px;
  line-height: 1.45;
}

body.solutions-page .solutions-ai-v2-insight p strong {
  color: #26346a;
}

@keyframes solutionsAiV2SparkDraw {
  0% { stroke-dashoffset: 140; opacity: .3; }
  45%, 80% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -140; opacity: .3; }
}

@keyframes solutionsAiV2LineDraw {
  0% { stroke-dashoffset: 1050; opacity: .28; }
  38%, 80% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -1050; opacity: .28; }
}

@keyframes solutionsAiV2MiniLine {
  0% { stroke-dashoffset: 380; opacity: .3; }
  42%, 82% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -380; opacity: .3; }
}

@keyframes solutionsAiV2TooltipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 760px) {
  body.solutions-page .solutions-ai-v2-top {
    align-items: flex-start;
  }

  body.solutions-page .solutions-ai-v2-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.solutions-page .solutions-ai-v2-grid {
    grid-template-columns: 1fr;
  }

  body.solutions-page .solutions-ai-v2-side {
    grid-template-columns: repeat(2, minmax(0,1fr));
    grid-template-rows: none;
  }

  body.solutions-page .solutions-ai-v2-chart-stage {
    height: 220px;
  }

  body.solutions-page .solutions-ai-v2-insight {
    grid-template-columns: 30px 1fr;
  }

  body.solutions-page .solutions-ai-v2-insight p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  body.solutions-page .solutions-ai-v2-top {
    flex-direction: column;
  }

  body.solutions-page .solutions-ai-v2-kpis {
    grid-template-columns: 1fr;
  }

  body.solutions-page .solutions-ai-v2-kpis article {
    grid-template-columns: 32px 1fr 76px;
  }

  body.solutions-page .solutions-ai-v2-side {
    grid-template-columns: 1fr;
  }

  body.solutions-page .solutions-ai-v2-tooltip {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.solutions-page .solutions-ai-dashboard-v2 * {
    animation: none !important;
  }

  body.solutions-page .solutions-ai-v2-line,
  body.solutions-page .solutions-ai-v2-mini-stage svg path,
  body.solutions-page .solutions-ai-v2-kpis article > svg path {
    stroke-dashoffset: 0;
  }
}

/* =========================================================
   45. SEGMENTOS — CARDS MAIS COMPACTOS
   Somente segmentos.html. Não altera a home nem Soluções.
   ========================================================= */

body.segmentos-page .internal-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 1080px;
  margin-inline: auto;
}

body.segmentos-page .internal-card {
  min-height: 0;
  padding: 14px 15px;
  border-radius: 14px;
}

body.segmentos-page .internal-card-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 10px;
}

body.segmentos-page .internal-card-icon svg {
  width: 16px;
  height: 16px;
}

body.segmentos-page .internal-card h3 {
  margin-bottom: 5px;
  font-size: 12.5px;
}

body.segmentos-page .internal-card p {
  font-size: 9.2px;
  line-height: 1.48;
}

body.segmentos-page .internal-section-heading {
  margin-bottom: 24px;
}

body.segmentos-page .internal-hero-media--segments {
  height: 365px;
}

body.segmentos-page .internal-hero-media--segments img {
  transform: none;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 960px) {
  body.segmentos-page .internal-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.segmentos-page .internal-hero-media--segments {
    height: 330px;
  }
}

@media (max-width: 640px) {
  body.segmentos-page .internal-card-grid {
    grid-template-columns: 1fr;
  }

  body.segmentos-page .internal-card {
    padding: 15px;
  }

  body.segmentos-page .internal-hero-media--segments {
    height: 245px;
  }
}
