/* =====================================================================
   INÍCIO - PÁGINA INTELIGÊNCIA ARTIFICIAL PARA EMPRESAS
===================================================================== */

.ai-page {
  background: #ffffff;
}

.ai-page section {
  scroll-margin-top: 110px;
}

/* =====================================================================
   INÍCIO - BREADCRUMB IA
===================================================================== */

.ai-breadcrumb {
  padding: 24px 0 0;
  background: #ffffff;
}

.ai-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.ai-breadcrumb li + li::before {
  content: "/";
  margin-right: 10px;
  color: #cbd5e1;
}

.ai-breadcrumb a:hover {
  color: #2563eb;
}

/* =====================================================================
   FIM - BREADCRUMB IA
===================================================================== */

/* =====================================================================
   INÍCIO - HERO IA
===================================================================== */

.ai-hero {
  position: relative;
  overflow: hidden;
  min-height: 810px;
  padding: 88px 0 130px;
  background:
    radial-gradient(circle at 12% 18%, rgba(37,99,235,.15), transparent 34%),
    radial-gradient(circle at 86% 16%, rgba(124,58,237,.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.ai-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,23,42,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
  pointer-events: none;
}

.ai-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.ai-hero__orb--one {
  width: 430px;
  height: 430px;
  left: -170px;
  top: 180px;
  background: rgba(37,99,235,.16);
}

.ai-hero__orb--two {
  width: 520px;
  height: 520px;
  right: -200px;
  bottom: 40px;
  background: rgba(124,58,237,.17);
}

.ai-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 64px;
  align-items: center;
}

.ai-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(37,99,235,.09);
  border: 1px solid rgba(37,99,235,.15);
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.ai-kicker span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34,197,94,.12);
}

.ai-hero__content h1 {
  max-width: 720px;
  margin: 0;
  color: #020617;
  font-size: clamp(48px, 6vw, 82px);
  line-height: .94;
  letter-spacing: -.072em;
  font-weight: 950;
}

.ai-hero__content h1 strong {
  display: block;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ai-hero__content > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: #64748b;
  font-size: 19px;
  line-height: 1.75;
}

.ai-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.ai-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

.ai-hero__visual {
  position: relative;
  min-height: 620px;
}

.ai-core {
  position: absolute;
  left: 50%;
  top: 42%;
  z-index: 4;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.40), transparent 28%),
    linear-gradient(145deg, #2563eb, #7c3aed);
  box-shadow:
    0 0 0 18px rgba(37,99,235,.08),
    0 0 0 38px rgba(124,58,237,.05),
    0 42px 100px rgba(37,99,235,.35);
}

.ai-core__pulse {
  position: absolute;
  inset: -26px;
  border-radius: 50%;
  border: 1px solid rgba(37,99,235,.35);
  animation: aiPulse 2.8s ease-in-out infinite;
}

.ai-core__center {
  color: #ffffff;
  font-size: 58px;
  font-weight: 950;
  letter-spacing: -.08em;
}

.ai-core__label {
  position: absolute;
  bottom: -42px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.72);
  color: #2563eb;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(15,23,42,.12);
  white-space: nowrap;
}

@keyframes aiPulse {
  0%, 100% {
    transform: scale(1);
    opacity: .7;
  }
  50% {
    transform: scale(1.08);
    opacity: .28;
  }
}

.ai-orbit {
  position: absolute;
  z-index: 3;
}

.ai-orbit article {
  min-width: 180px;
  padding: 15px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: 0 22px 60px rgba(15,23,42,.16);
  backdrop-filter: blur(16px);
}

.ai-orbit span,
.ai-orbit strong {
  display: block;
}

.ai-orbit span {
  margin-bottom: 5px;
  color: #64748b;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.ai-orbit strong {
  color: #0f172a;
  font-size: 13px;
}

.ai-orbit--one {
  left: 0;
  top: 80px;
}

.ai-orbit--two {
  right: 0;
  top: 40px;
}

.ai-orbit--three {
  right: 20px;
  top: 270px;
}

.ai-dashboard-card {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(620px, 100%);
  transform: translateX(-50%);
  padding: 22px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(124,58,237,.38), transparent 36%),
    linear-gradient(145deg, #07111f, #111c3a);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 42px 110px rgba(15,23,42,.28);
}

.ai-dashboard-card__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.ai-dashboard-card__top span,
.ai-dashboard-card__top strong {
  display: block;
}

.ai-dashboard-card__top span {
  color: #93c5fd;
  font-size: 11px;
  font-weight: 850;
}

.ai-dashboard-card__top strong {
  margin-top: 4px;
  color: #ffffff;
  font-size: 17px;
}

.ai-dashboard-card__top b {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34,197,94,.12);
  color: #86efac;
  font-size: 11px;
}

.ai-dashboard-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ai-dashboard-card__metrics article {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
}

.ai-dashboard-card__metrics span,
.ai-dashboard-card__metrics strong,
.ai-dashboard-card__metrics small {
  display: block;
}

.ai-dashboard-card__metrics span {
  color: #94a3b8;
  font-size: 10px;
}

.ai-dashboard-card__metrics strong {
  margin: 7px 0;
  color: #ffffff;
  font-size: 25px;
}

.ai-dashboard-card__metrics small {
  color: #93c5fd;
  font-size: 10px;
}

.ai-dashboard-card__activity {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.ai-dashboard-card__activity div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
}

.ai-dashboard-card__activity span {
  color: #86efac;
  font-size: 10px;
  font-weight: 900;
}

.ai-dashboard-card__activity strong {
  color: #e2e8f0;
  font-size: 11px;
}

/* =====================================================================
   FIM - HERO IA
===================================================================== */

/* =====================================================================
   INÍCIO - PROBLEMAS IA
===================================================================== */

.ai-problems__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ai-problems__grid article {
  min-height: 250px;
  padding: 30px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 52px rgba(15,23,42,.06);
  transition: .3s ease;
}

.ai-problems__grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(37,99,235,.24);
  box-shadow: 0 30px 85px rgba(15,23,42,.11);
}

.ai-problems__grid article > span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  border-radius: 16px;
  background: rgba(239,68,68,.09);
  color: #dc2626;
  font-weight: 900;
}

.ai-problems__grid h3 {
  margin-bottom: 12px;
  color: #0f172a;
  font-size: 21px;
  letter-spacing: -.035em;
}

.ai-problems__grid p {
  color: #64748b;
  font-size: 14.5px;
  line-height: 1.7;
}

.ai-problem--dark {
  background:
    radial-gradient(circle at top right, rgba(37,99,235,.25), transparent 38%),
    linear-gradient(145deg, #07111f, #111c3a) !important;
  border-color: rgba(255,255,255,.08) !important;
}

.ai-problem--dark > span {
  background: rgba(255,255,255,.12) !important;
  color: #ffffff !important;
}

.ai-problem--dark h3 {
  color: #ffffff;
}

.ai-problem--dark p {
  color: rgba(226,232,240,.78);
}

/* =====================================================================
   FIM - PROBLEMAS IA
===================================================================== */

/* =====================================================================
   INÍCIO - CAPACIDADES IA
===================================================================== */

.ai-capabilities {
  padding: 120px 0;
}

.ai-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ai-capability {
  min-height: 285px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 52px rgba(15,23,42,.06);
  transition: .3s ease;
}

.ai-capability:hover {
  transform: translateY(-7px);
  border-color: rgba(37,99,235,.26);
  box-shadow: 0 32px 90px rgba(15,23,42,.12);
}

.ai-capability > span {
  display: inline-flex;
  margin-bottom: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(37,99,235,.09);
  color: #2563eb;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-capability h3 {
  margin-bottom: 13px;
  color: #0f172a;
  font-size: 21px;
  line-height: 1.12;
  letter-spacing: -.04em;
}

.ai-capability p {
  color: #64748b;
  font-size: 14.5px;
  line-height: 1.7;
}

.ai-capability--featured {
  border-color: rgba(37,99,235,.26);
  box-shadow: 0 28px 80px rgba(37,99,235,.12);
}

.ai-capability--dark {
  background:
    radial-gradient(circle at top right, rgba(124,58,237,.35), transparent 38%),
    linear-gradient(145deg, #07111f, #1e1b4b);
  border-color: rgba(255,255,255,.08);
}

.ai-capability--dark > span {
  background: rgba(255,255,255,.11);
  color: #bfdbfe;
}

.ai-capability--dark h3 {
  color: #ffffff;
}

.ai-capability--dark p {
  color: rgba(226,232,240,.78);
}

/* =====================================================================
   FIM - CAPACIDADES IA
===================================================================== */

/* =====================================================================
   INÍCIO - FLUXO IA
===================================================================== */

.ai-flow-board {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(124,58,237,.28), transparent 34%),
    linear-gradient(145deg, #07111f, #111827);
  box-shadow: 0 38px 110px rgba(15,23,42,.22);
}

.ai-flow-board article {
  min-height: 170px;
  display: grid;
  align-content: center;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
}

.ai-flow-board article > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #ffffff;
  font-weight: 900;
}

.ai-flow-board strong,
.ai-flow-board small {
  display: block;
}

.ai-flow-board strong {
  color: #ffffff;
  font-size: 14px;
}

.ai-flow-board small {
  margin-top: 7px;
  color: #94a3b8;
  font-size: 11px;
  line-height: 1.5;
}

.ai-flow-line {
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  box-shadow: 0 0 18px rgba(37,99,235,.55);
}

/* =====================================================================
   FIM - FLUXO IA
===================================================================== */

/* =====================================================================
   INÍCIO - INTEGRAÇÃO IA
===================================================================== */

.ai-integration {
  padding: 120px 0;
}

.ai-integration__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.ai-check-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 32px;
}

.ai-check-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 12px 32px rgba(15,23,42,.05);
  color: #334155;
  font-size: 14px;
}

.ai-check-list span {
  display: grid;
  place-items: center;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.ai-integration__visual {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.ai-network {
  position: relative;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(37,99,235,.12), transparent 58%);
}

.ai-network::before,
.ai-network::after {
  content: "";
  position: absolute;
  inset: 58px;
  border-radius: 50%;
  border: 1px solid rgba(37,99,235,.16);
}

.ai-network::after {
  inset: 112px;
  border-color: rgba(124,58,237,.18);
}

.ai-network__center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 130px;
  height: 130px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #2563eb, #7c3aed);
  color: #ffffff;
  font-size: 44px;
  font-weight: 950;
  box-shadow: 0 35px 90px rgba(37,99,235,.30);
}

.ai-network__item {
  position: absolute;
  z-index: 2;
  min-width: 120px;
  padding: 14px;
  text-align: center;
  border-radius: 17px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 50px rgba(15,23,42,.10);
}

.ai-network__item span {
  color: #0f172a;
  font-size: 12px;
  font-weight: 900;
}

.ai-network__item--one { left: 50%; top: 12px; transform: translateX(-50%); }
.ai-network__item--two { right: 0; top: 120px; }
.ai-network__item--three { right: 10px; bottom: 92px; }
.ai-network__item--four { left: 50%; bottom: 0; transform: translateX(-50%); }
.ai-network__item--five { left: 0; bottom: 92px; }
.ai-network__item--six { left: 0; top: 120px; }

/* =====================================================================
   FIM - INTEGRAÇÃO IA
===================================================================== */

/* =====================================================================
   INÍCIO - CASOS DE USO IA
===================================================================== */

.ai-usecases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ai-usecases__grid article {
  min-height: 250px;
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 52px rgba(15,23,42,.06);
}

.ai-usecases__grid span {
  display: inline-flex;
  margin-bottom: 30px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(37,99,235,.09);
  color: #2563eb;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-usecases__grid h3 {
  margin-bottom: 12px;
  color: #0f172a;
  font-size: 21px;
  letter-spacing: -.04em;
}

.ai-usecases__grid p {
  color: #64748b;
  font-size: 14.5px;
  line-height: 1.7;
}

/* =====================================================================
   FIM - CASOS DE USO IA
===================================================================== */

/* =====================================================================
   INÍCIO - COMPARATIVO IA
===================================================================== */

.ai-comparison__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.ai-comparison__card {
  padding: 34px;
  border-radius: 32px;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 24px 75px rgba(15,23,42,.08);
}

.ai-comparison__card > span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-comparison__card h3 {
  margin-bottom: 22px;
  color: #0f172a;
  font-size: 28px;
  letter-spacing: -.04em;
}

.ai-comparison__card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-comparison__card li {
  position: relative;
  padding-left: 30px;
  color: #475569;
  font-size: 15px;
  font-weight: 750;
}

.ai-comparison__card li::before {
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
}

.ai-comparison__card--bad {
  background: #ffffff;
}

.ai-comparison__card--bad > span {
  background: rgba(239,68,68,.09);
  color: #dc2626;
}

.ai-comparison__card--bad li::before {
  content: "×";
  background: #ef4444;
}

.ai-comparison__card--good {
  background:
    radial-gradient(circle at top right, rgba(37,99,235,.26), transparent 36%),
    linear-gradient(145deg, #07111f, #111c3a);
  border-color: rgba(255,255,255,.08);
}

.ai-comparison__card--good > span {
  background: rgba(34,197,94,.12);
  color: #86efac;
}

.ai-comparison__card--good h3 {
  color: #ffffff;
}

.ai-comparison__card--good li {
  color: rgba(226,232,240,.82);
}

.ai-comparison__card--good li::before {
  content: "✓";
  background: #22c55e;
}

/* =====================================================================
   FIM - COMPARATIVO IA
===================================================================== */

/* =====================================================================
   INÍCIO - RESULTADOS IA
===================================================================== */

.ai-results {
  background:
    radial-gradient(circle at 20% 20%, rgba(37,99,235,.18), transparent 34%),
    radial-gradient(circle at 80% 70%, rgba(124,58,237,.18), transparent 36%),
    linear-gradient(145deg, #07111f, #111827 60%, #1e1b4b);
}

.ai-results .section__eyebrow {
  color: #93c5fd;
}

.ai-results .section__title {
  color: #ffffff;
}

.ai-results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ai-results__grid article {
  min-height: 210px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(16px);
}

.ai-results__grid strong {
  display: block;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #60a5fa, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -.06em;
}

.ai-results__grid span {
  color: rgba(226,232,240,.78);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 750;
}

.ai-results__note {
  margin: 24px auto 0;
  text-align: center;
  color: rgba(226,232,240,.52);
  font-size: 12px;
}

/* =====================================================================
   FIM - RESULTADOS IA
===================================================================== */

/* =====================================================================
   INÍCIO - FAQ E CTA IA
===================================================================== */

.ai-faq {
  background: #ffffff;
}

.ai-final {
  padding: 120px 0 96px;
}

/* =====================================================================
   FIM - FAQ E CTA IA
===================================================================== */

/* =====================================================================
   INÍCIO - RESPONSIVO IA
===================================================================== */

@media (max-width: 1120px) {
  .ai-hero__grid,
  .ai-integration__grid {
    grid-template-columns: 1fr;
  }

  .ai-hero__visual {
    min-height: 650px;
  }

  .ai-problems__grid,
  .ai-capabilities__grid,
  .ai-results__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .ai-flow-board {
    grid-template-columns: 1fr;
  }

  .ai-flow-line {
    width: 2px;
    height: 32px;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .ai-breadcrumb {
    padding-top: 18px;
  }

  .ai-hero {
    min-height: auto;
    padding: 58px 0 84px;
  }

  .ai-hero__content h1 {
    font-size: clamp(43px, 13vw, 60px);
  }

  .ai-hero__content > p {
    font-size: 17px;
  }

  .ai-hero__actions {
    flex-direction: column;
  }

  .ai-hero__actions .btn {
    width: 100%;
  }

  .ai-hero__proof {
    flex-direction: column;
    gap: 10px;
  }

  .ai-hero__visual {
    min-height: 720px;
  }

  .ai-core {
    top: 31%;
    width: 145px;
    height: 145px;
  }

  .ai-core__center {
    font-size: 46px;
  }

  .ai-orbit article {
    min-width: 140px;
  }

  .ai-orbit--one {
    left: 0;
    top: 40px;
  }

  .ai-orbit--two {
    right: 0;
    top: 40px;
  }

  .ai-orbit--three {
    right: 0;
    top: 270px;
  }

  .ai-dashboard-card {
    bottom: 0;
  }

  .ai-dashboard-card__metrics {
    grid-template-columns: 1fr;
  }

  .ai-problems__grid,
  .ai-capabilities__grid,
  .ai-usecases__grid,
  .ai-results__grid,
  .ai-comparison__grid {
    grid-template-columns: 1fr;
  }

  .ai-capabilities,
  .ai-integration {
    padding: 82px 0;
  }

  .ai-network {
    width: 320px;
    height: 320px;
  }

  .ai-network__item {
    min-width: 92px;
    padding: 11px;
  }

  .ai-network__item--two,
  .ai-network__item--six {
    top: 82px;
  }

  .ai-network__item--three,
  .ai-network__item--five {
    bottom: 62px;
  }

  .ai-network__center {
    width: 100px;
    height: 100px;
    font-size: 36px;
  }

  .ai-problems__grid article,
  .ai-capability,
  .ai-usecases__grid article {
    min-height: auto;
  }
}

/* =====================================================================
   FIM - RESPONSIVO IA
===================================================================== */

/* =====================================================================
   FIM - PÁGINA INTELIGÊNCIA ARTIFICIAL PARA EMPRESAS
===================================================================== */
