/* =========================
   HERO DA PÁGINA DIFERENCIAIS
   ========================= */

.page-hero {
  background: transparent;
  border-bottom: 1px solid rgba(142, 148, 146, 0.14);
}

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

.page-hero-inner {
  min-height: 420px;
  display: block;
  padding: 56px 0;
  position: relative;
  z-index: 1;
}

.page-hero-inner .badge {
  display: inline-flex;
  margin-bottom: 36px;
}

.page-hero-inner h1 {
  max-width: 1024px;
  margin: 0;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-hero-inner .lead {
  max-width: 900px;
  margin-top: 24px;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.75;
  color: var(--text-soft);
}


/* =========================
   SEÇÃO PRINCIPAL DE DIFERENCIAIS
   ========================= */

.diferenciais-section,
.dark-section {
  padding: 48px 0 88px;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.diff-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: start;
  gap: 28px;
}

.diff-content {
  min-width: 0;
}

.diff-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 28px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(22, 112, 214, 0.12);
}

.diff-content h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--white);
}

.diff-content .section-desc {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.8;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.diff-item {
  display: flex;
  align-items: center;
  min-height: 96px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--white);
  line-height: 1.7;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    color 0.28s ease;
  cursor: pointer;
}

.diff-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.20);
  box-shadow: 0 18px 40px rgba(16, 44, 74, 0.24);
}


/* =========================
   RESPONSIVO - TABLET
   ========================= */
@media (max-width: 980px) {
  .page-hero-inner {
    min-height: auto;
    padding: 46px 0;
  }

  .page-hero-inner h1,
  .page-hero-inner .lead,
  .diff-content h2,
  .diff-content .section-desc {
    max-width: 100%;
  }

  .diferenciais-section,
  .dark-section {
    padding: 48px 0 72px;
  }

  .diff-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .diff-grid {
    margin-top: 12px;
  }

  .diff-content h2,
  .diff-content .section-desc {
    max-width: 100%;
  }
}


/* =========================
   RESPONSIVO - MOBILE
   ========================= */
@media (max-width: 760px) {
  .page-hero-inner {
    padding: 38px 0;
  }

  .page-hero-inner .badge {
    margin-bottom: 18px;
  }

  .page-hero-inner h1 {
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1.1;
  }

  .page-hero-inner .lead {
    margin-top: 18px;
    font-size: 16px;
  }

  .diferenciais-section,
  .dark-section {
    padding: 48px 0 60px;
  }

  .diff-content .section-tag {
    margin-bottom: 18px;
    padding: 8px 16px;
  }

  .diff-content h2 {
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1.1;
  }

  .diff-content .section-desc {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.75;
  }

  .diff-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 12px;
  }

  .diff-item {
    min-height: auto;
    padding: 18px;
    border-radius: 20px;
  }
}