.menu a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border-radius: 999px;
  padding: 9px 12px;
}

.internal-hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding-top: 112px;
  background:
    radial-gradient(circle at 80% 20%, rgba(69, 70, 255, .26), transparent 34%),
    linear-gradient(135deg, #020C3D 0%, #06145F 62%, #020C3D 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  overflow: hidden;
}

.internal-hero::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 96px solid rgba(69, 70, 255, .18);
  pointer-events: none;
}

.internal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.internal-hero h1 {
  max-width: 940px;
  font-size: clamp(46px, 5.8vw, 56px);
  line-height: 1.03;
  letter-spacing: -3px;
  margin-bottom: 28px;
}

.internal-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, .76);
  font-size: 21px;
  line-height: 1.65;
}

.internal-hero-panel,
.systemic-panel {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 32px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(18px);
  padding: 34px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .24);
  display: grid;
  gap: 14px;
}

.internal-hero-panel strong {
  font-size: 22px;
  margin-bottom: 6px;
}

.internal-hero-panel span,
.internal-hero-panel a {
  color: rgba(255, 255, 255, .76);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  padding-bottom: 12px;
}

.internal-hero-panel span:last-child,
.internal-hero-panel a:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.numeric-panel span::before,
.internal-hero-panel span::before {
  content: "•";
  color: #4546FF;
  font-weight: 900;
  margin-right: 8px;
}

.contact-panel a:hover {
  color: #fff;
}

.four-card-grid,
.six-card-grid,
.contact-grid,
.leadership-grid {
  display: grid;
  gap: 24px;
}

.four-card-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.contact-grid {
  grid-template-columns: 1.15fr .95fr .9fr;
}

.soft-card,
.contact-card,
.leadership-grid article,
.timeline-grid article {
  min-height: 210px;
  border-radius: 30px;
  padding: 32px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.soft-card:hover,
.contact-card:hover,
.leadership-grid article:hover,
.timeline-grid article:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
}

.soft-card h3,
.contact-card h3,
.leadership-grid h3,
.timeline-grid h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.soft-card p,
.contact-card p,
.leadership-grid p,
.timeline-grid p {
  color: rgba(255, 255, 255, .66);
  line-height: 1.65;
}

.ecosystem-grid-internal {
  margin-top: 0;
}

.timeline-grid {
  display: grid;
  gap: 22px;
}

.timeline-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.timeline-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.timeline-grid span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(69, 70, 255, .20);
  color: #4546FF;
  font-weight: 900;
  margin-bottom: 24px;
}

.cta-mini {
  background: #020C3D;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.cta-mini-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.cta-mini h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.systemic-number {
  font-size: clamp(54px, 6vw, 92px);
  line-height: .95;
  letter-spacing: -4px;
  color: #fff;
  font-weight: 900;
}

.systemic-panel p {
  color: rgba(255, 255, 255, .72);
  font-size: 20px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .menu a.is-active {
    padding: 14px 12px;
    border-radius: 12px;
  }

  .internal-hero {
    min-height: auto;
    padding-top: 92px;
  }

  .internal-hero-grid,
  .four-card-grid,
  .six-card-grid,
  .contact-grid,
  .timeline-grid-4,
  .timeline-grid-5 {
    grid-template-columns: 1fr;
  }

  .internal-hero h1 {
    letter-spacing: -2px;
  }

  .cta-mini-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .internal-hero h1 {
    font-size: 42px;
  }

  .internal-hero p {
    font-size: 18px;
  }

  .internal-hero-panel,
  .systemic-panel,
  .soft-card,
  .contact-card,
  .leadership-grid article,
  .timeline-grid article {
    padding: 26px;
  }
}


/* ===== Ajustes finais solicitados - Home e placeholders ===== */
.home-compact .container {
  padding-top: 88px;
  padding-bottom: 88px;
}

.home-card-grid,
.home-growth-grid {
  display: grid;
  gap: 24px;
}

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

.home-summary-card,
.home-growth-card {
  min-height: 250px;
  border-radius: 30px;
  padding: 32px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.home-summary-card:hover,
.home-growth-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
}

.home-summary-card h3,
.home-growth-card h3 {
  font-size: 25px;
  margin: 24px 0 14px;
}

.home-summary-card p,
.home-growth-card p {
  color: #fff;
  line-height: 1.65;
  margin-bottom: 24px;
}

.home-section-intro {
  overflow: hidden;
}

.home-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr);
  gap: 56px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
}

.home-image-placeholder,
.home-card-placeholder,
.internal-image-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px dashed rgba(255, 255, 255, .28);
  background:
    linear-gradient(135deg, rgba(69, 70, 255, .18), rgba(255, 255, 255, .05)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .045) 0, rgba(255, 255, 255, .045) 10px, transparent 10px, transparent 20px);
  color: rgba(255, 255, 255, .78);
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-image-placeholder {
  min-height: 260px;
}

.home-card-placeholder {
  min-height: 150px;
  margin-bottom: 26px;
  border-radius: 24px;
}

.internal-image-placeholder {
  min-height: 320px;
}

.home-growth-grid {
  grid-template-columns: repeat(4, 1fr);
}

.home-growth-card {
  padding: 26px;
}

.home-solutions .partners-grid {
  grid-template-columns: repeat(2, 1fr);
}

.home-solutions .partner-card {
  min-height: 250px;
}

.home-solutions .partner-card .btn {
  margin-top: 22px;
}

.cta-actions {
  justify-content: center;
}

.cta-actions .btn-outline {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .42);
}

body.js-enabled .reveal {
  opacity: 0;
  transform: translateY(36px);
  animation: none;
}

body.js-enabled .reveal.is-visible {
  animation: fadeUp .8s ease forwards;
}

@media (max-width: 1280px) {
  .home-growth-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) {
  .home-card-grid,
  .home-growth-grid,
  .home-intro-grid,
  .home-solutions .partners-grid {
    grid-template-columns: 1fr;
  }

  .home-image-placeholder {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .home-summary-card,
  .home-growth-card {
    padding: 26px;
  }

  .home-image-placeholder,
  .home-card-placeholder,
  .internal-image-placeholder {
    min-height: 180px;
  }
}


/* ===== Correção Home com imagens preservando layout aprovado ===== */
.home-image-placeholder.has-image,
.home-card-placeholder.has-image {
  display: block;
  padding: 0;
  border-style: solid;
  background: rgba(255, 255, 255, .05);
}

.home-image-placeholder.has-image img,
.home-card-placeholder.has-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.home-image-placeholder.has-image {
  min-height: 260px;
}

.home-card-placeholder.has-image {
  min-height: 150px;
  height: 170px;
}

.home-image-placeholder.has-image:hover img,
.home-card-placeholder.has-image:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.home-image-placeholder.has-image::after,
.home-card-placeholder.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 12, 61, 0) 0%, rgba(2, 12, 61, .18) 100%);
  pointer-events: none;
}

@media (max-width: 640px) {
  .home-card-placeholder.has-image {
    height: 160px;
  }
}


/* ===== Imagens estáticas nas páginas internas - preserva hero da index ===== */
.internal-static-hero {
  min-height: 72vh;
  padding-top: 96px;
}

.internal-static-hero .static-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.internal-static-hero .hero-content {
  position: relative;
  z-index: 4;
}

.internal-static-hero .hero-image-fallback {
  opacity: 1;
  background:
    radial-gradient(circle at 78% 18%, rgba(69, 70, 255, .24), transparent 34%),
    linear-gradient(135deg, #020C3D 0%, #06145F 62%, #020C3D 100%);
}

.internal-static-hero .hero-bg.is-active {
  opacity: .96;
}


/* ===== Complemento seguro: imagens e blocos das páginas internas ===== */
.media-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: 56px;
  align-items: center;
}

.media-split-grid.reverse {
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr);
}

.internal-image-frame {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .20);
}

.internal-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.internal-image-frame:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.internal-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 12, 61, 0) 0%, rgba(2, 12, 61, .20) 100%);
  pointer-events: none;
}

.image-placeholder-frame {
  display: grid;
  place-items: center;
  min-height: 320px;
  border-style: dashed;
  background:
    linear-gradient(135deg, rgba(69, 70, 255, .18), rgba(255, 255, 255, .05)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .045) 0, rgba(255, 255, 255, .045) 10px, transparent 10px, transparent 20px);
  color: rgba(255, 255, 255, .78);
  text-align: center;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.benefit-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.benefit-list li {
  position: relative;
  padding-left: 32px;
  color: #fff;
  line-height: 1.65;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e;
  font-weight: 900;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  min-height: 230px;
  border-radius: 30px;
  padding: 32px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
}

.process-card span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(69, 70, 255, .20);
  color: #4546FF;
  font-weight: 900;
  margin-bottom: 24px;
}

.process-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.process-card p {
  color: rgba(255, 255, 255, .66);
  line-height: 1.65;
}

.internal-form {
  display: grid;
  gap: 18px;
  border-radius: 30px;
  padding: 32px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.internal-form label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-weight: 700;
}

.internal-form input,
.internal-form textarea,
.internal-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background: rgba(2, 12, 61, .46);
  color: #fff;
  padding: 15px 16px;
  font: inherit;
  outline: none;
}

.internal-form textarea {
  min-height: 130px;
  resize: vertical;
}

.internal-form input::placeholder,
.internal-form textarea::placeholder {
  color: rgba(255, 255, 255, .46);
}

.internal-form input:focus,
.internal-form textarea:focus,
.internal-form select:focus {
  border-color: rgba(34, 197, 94, .58);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .10);
}

@media (max-width: 1280px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) {
  .media-split-grid,
  .media-split-grid.reverse,
  .process-grid,
  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .media-split-grid.reverse .internal-image-frame,
  .media-split-grid.reverse .image-placeholder-frame {
    order: 2;
  }
}

@media (max-width: 640px) {
  .internal-image-frame,
  .internal-image-frame img,
  .image-placeholder-frame {
    min-height: 220px;
  }

  .internal-form,
  .process-card {
    padding: 26px;
  }
}


/* ===== Compramos seu Precatório - carteira e mapa ===== */
.availability-section {
  overflow: hidden;
}

.availability-section .center p {
  color: rgba(255, 255, 255, .78);
  font-size: 19px;
  line-height: 1.65;
  max-width: 860px;
  margin: 0 auto;
}

.availability-visual-stack {
  display: grid;
  gap: 34px;
}

.data-visual-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .24);
}

.data-visual-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.data-visual-frame-chart {
  background: #fff;
}

.data-visual-frame-map {
  background: #020C3D;
}

.data-visual-frame.image-placeholder-frame {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 32px;
  color: rgba(255, 255, 255, .78);
  text-align: center;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(69, 70, 255, .18), rgba(255, 255, 255, .05)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .045) 0, rgba(255, 255, 255, .045) 10px, transparent 10px, transparent 20px);
}

@media (max-width: 640px) {
  .availability-visual-stack {
    gap: 22px;
  }

  .data-visual-frame {
    border-radius: 22px;
  }
}


/* ===== Compramos seu Precatório - carteira e mapa ===== */
.availability-section {
  overflow: hidden;
}

.availability-section .center p {
  color: rgba(255, 255, 255, .78);
  font-size: 19px;
  line-height: 1.65;
  max-width: 860px;
  margin: 0 auto;
}

.availability-visual-stack {
  display: grid;
  gap: 34px;
}

.data-visual-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .24);
}

.data-visual-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.data-visual-frame-chart {
  background: #fff;
}

.data-visual-frame-map {
  background: #020C3D;
}

.data-visual-frame.image-placeholder-frame {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 32px;
  color: rgba(255, 255, 255, .78);
  text-align: center;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(69, 70, 255, .18), rgba(255, 255, 255, .05)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .045) 0, rgba(255, 255, 255, .045) 10px, transparent 10px, transparent 20px);
}

@media (max-width: 640px) {
  .availability-visual-stack {
    gap: 22px;
  }

  .data-visual-frame {
    border-radius: 22px;
  }
}
/* ===== Equipe sênior com minicurrículo em modal ===== */
.team-section .center p {
  color: rgba(255, 255, 255, .76);
  font-size: 19px;
  line-height: 1.65;
}

.team-profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.team-profile-card {
  position: relative;
  min-height: 420px;
  border-radius: 30px;
  padding: 28px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .18);
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow: hidden;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.team-profile-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .20);
}

.team-profile-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 12%, rgba(69, 70, 255, .24), transparent 35%);
  pointer-events: none;
}

.team-profile-photo {
  position: relative;
  z-index: 2;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, .20);
  background: linear-gradient(135deg, rgba(69, 70, 255, .38), rgba(255, 255, 255, .08));
  display: grid;
  place-items: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .24);
}

.team-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-profile-photo span {
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: .08em;
}

.team-profile-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
}

.team-profile-role {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(34, 197, 94, .14);
  color: #fff;
  border: 1px solid rgba(34, 197, 94, .28);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.team-profile-card h3 {
  font-size: 24px;
  line-height: 1.18;
  margin-bottom: 14px;
}

.team-profile-card p {
  color: rgba(255, 255, 255, .72);
  line-height: 1.65;
  margin-bottom: 24px;
}

.btn-team-modal {
  margin-top: auto;
  width: fit-content;
  padding: 13px 20px;
  border-radius: 14px;
  box-shadow: none;
}

.team-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.team-modal:target {
  display: flex;
}

.team-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 8, 38, .78);
  backdrop-filter: blur(12px);
}

.team-modal-box {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  max-height: min(760px, calc(100vh - 56px));
  overflow: auto;
  border-radius: 32px;
  padding: 34px;
  background: #020C3D;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 34px 110px rgba(0, 0, 0, .48);
}

.team-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  transition: background .2s ease, transform .2s ease;
}

.team-modal-close:hover {
  background: rgba(34, 197, 94, .18);
  transform: rotate(90deg);
}

.team-modal-header {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 24px;
  align-items: center;
  padding-right: 48px;
  margin-bottom: 28px;
}

.team-modal-photo {
  width: 112px;
  height: 112px;
}

.team-modal-header h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 42px);
}

.team-modal-body {
  display: grid;
  gap: 18px;
}

.team-modal-body p {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.72;
}

@media (max-width: 1280px) {
  .team-profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .team-profile-grid {
    grid-template-columns: 1fr;
  }

  .team-profile-card {
    min-height: auto;
  }

  .team-modal {
    padding: 18px;
  }

  .team-modal-box {
    padding: 26px;
    border-radius: 26px;
  }

  .team-modal-header {
    grid-template-columns: 1fr;
    padding-right: 42px;
  }
}

/* Complemento visual - página Governança e Compliance | V2
   Ajustes para não interferir no header e preservar helper de imagens existente. */
.governance-structure-section {
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 90px;
}

.governance-structure-section .container {
  position: relative;
  z-index: 1;
}

.governance-flow {
  position: relative;
  display: grid;
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}

.governance-flow::before {
  content: '';
  position: absolute;
  top: calc(33.333% - 8px);
  bottom: calc(33.333% - 8px);
  left: 50%;
  width: 0;
  border-left: 3px dotted rgba(255, 255, 255, .72);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.governance-flow-card,
.governance-flow-center {
  position: relative;
  z-index: 2;
}

.governance-flow-card {
  border: 3px dotted rgba(255, 255, 255, .75);
  border-radius: 16px;
  padding: 30px 34px;
  color: #fff;
  background: #101879;
}

.governance-flow-card h2 {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.governance-flow-card h2 strong {
  font-style: italic;
  font-weight: 800;
}

.governance-flow-card h2 span {
  font-weight: 400;
}

.governance-flow-card p {
  margin: 0;
  color: rgba(255, 255, 255, .92);
  line-height: 1.65;
}

.governance-flow-card p + p {
  margin-top: 18px;
}

.governance-flow-center {
  display: flex;
  align-items: center;
  gap: 22px;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 24px 34px;
  border-radius: 12px;
  background: #fff;
  color: var(--primary, #15158f);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}

.governance-flow-mark {
  flex: 0 0 auto;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: .82;
  font-weight: 900;
  letter-spacing: -.08em;
}

.governance-flow-center strong {
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  line-height: 1.08;
  text-transform: uppercase;
  font-style: italic;
}

.executives-section {
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 105px;
  background: #fff;
  color: var(--primary, #15158f);
}

.executives-section .section-heading {
  max-width: 980px;
  margin: 0 auto 88px;
  color: var(--primary, #15158f);
}

.executives-section .section-heading .eyebrow,
.executives-section .section-heading h2 {
  color: var(--primary, #15158f);
}

.executives-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.executive-card {
  position: relative;
  min-height: 520px;
  border: 2px solid rgba(21, 21, 143, .78);
  border-radius: 16px;
  padding: 112px 28px 30px;
  text-align: center;
  color: var(--primary, #15158f);
  background: #fff;
}

.executive-photo-wrap {
  position: absolute;
  top: -68px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  z-index: 3;
}

.executive-photo {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border-radius: 50% 50% 0 0;
  object-fit: cover;
  object-position: center top;
  background: #eef0ff;
  color: var(--primary, #15158f);
  font-size: 2rem;
  font-weight: 800;
}

.executive-card h3 {
  margin: 0 0 8px;
  color: var(--primary, #15158f);
  font-size: 1.2rem;
  line-height: 1.2;
  text-transform: uppercase;
  font-style: italic;
}

.executive-role {
  margin: 0 0 18px;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--primary, #15158f);
}

.executive-card p:not(.executive-role) {
  margin: 0;
  text-align: left;
  line-height: 1.62;
  color: rgba(21, 21, 143, .82);
}

.executive-card p:not(.executive-role) + p:not(.executive-role) {
  margin-top: 14px;
}

@media (max-width: 900px) {
  .governance-structure-section,
  .executives-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .executives-section .section-heading {
    margin-bottom: 82px;
  }

  .executives-grid {
    grid-template-columns: 1fr;
    gap: 92px;
  }
}

@media (max-width: 640px) {
  .governance-flow::before {
    display: none;
  }

  .governance-flow-card,
  .governance-flow-center {
    padding: 24px 20px;
  }

  .governance-flow-center {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .executives-section .section-heading {
    margin-bottom: 76px;
  }

  .executive-card {
    min-height: auto;
    padding: 96px 20px 26px;
  }

  .executive-photo-wrap,
  .executive-photo {
    width: 132px;
    height: 132px;
  }

  .executive-photo-wrap {
    top: -56px;
  }
}

/* Complemento específico - Página Ativos Judiciais */
.assets-judicial-section {
  position: relative;
  overflow: hidden;
}

.assets-judicial-section::before,
.assets-negotiation-section::before,
.assets-process-section::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(76, 76, 255, 0.28);
  pointer-events: none;
}

.assets-judicial-section::before {
  top: -160px;
  right: -80px;
}

.assets-negotiation-section,
.assets-process-section {
  position: relative;
  overflow: hidden;
}

.assets-negotiation-section::before {
  right: -120px;
  bottom: -160px;
}

.assets-process-section::before {
  left: -130px;
  bottom: -170px;
}

.assets-judicial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px 58px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.assets-judicial-intro {
  grid-row: span 2;
  max-width: 620px;
}

.assets-judicial-intro h2 {
  margin-bottom: 24px;
}

.assets-judicial-intro p + p {
  margin-top: 18px;
}

.assets-classification-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 30px 34px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(8px);
}

.assets-card-header {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: flex-start;
}

.assets-card-header > span {
  width: 62px;
  height: 62px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 61, 255, 0.28);
  color: #5557ff;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.assets-card-header h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
}

.assets-card-header p {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 0;
}

.assets-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  padding-left: 94px;
}

.assets-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #fff;
  color: #15159c;
  font-weight: 800;
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.15;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.assets-negotiation-panel {
  position: relative;
  z-index: 1;
  background: #fff;
  color: #15159c;
  border-radius: 28px;
  padding: clamp(28px, 4vw, 56px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.14);
}

.assets-negotiation-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.assets-negotiation-title .eyebrow {
  color: #15159c;
}

.assets-negotiation-title h2 {
  color: #15159c;
  margin-bottom: 0;
}

.assets-negotiation-title > span {
  flex: 0 0 auto;
  color: rgba(21, 21, 156, 0.72);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.assets-negotiation-panel .lead {
  color: #15159c;
  max-width: 1060px;
}

.assets-objective-list {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.assets-objective-list div {
  background: #4646ff;
  color: #fff;
  border-radius: 10px;
  padding: 13px 20px;
  font-weight: 900;
  font-style: italic;
  line-height: 1.25;
}

.assets-legal-base {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(21, 21, 156, 0.16);
}

.assets-legal-base h3 {
  color: #15159c;
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.assets-legal-base p {
  color: #15159c;
  margin-bottom: 6px;
}

.assets-process-section .center {
  position: relative;
  z-index: 1;
  margin-bottom: 44px;
}

.assets-process-grid {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .assets-judicial-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .assets-judicial-intro {
    grid-row: auto;
    max-width: none;
  }

  .assets-tags {
    padding-left: 0;
  }

  .assets-negotiation-title {
    display: block;
  }

  .assets-negotiation-title > span {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  .assets-classification-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .assets-card-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .assets-tags span {
    width: 100%;
  }

  .assets-negotiation-panel {
    border-radius: 22px;
  }
}

/* Complemento V2 - Estrutura Operacional | compramos-seu-precatorio.php */
.operational-structure-section-v2 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(33, 208, 184, .16), transparent 28%),
    radial-gradient(circle at 8% 86%, rgba(78, 70, 255, .20), transparent 30%),
    linear-gradient(180deg, #06123a 0%, #061044 48%, #050d33 100%);
}

.operational-structure-section-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, .65), transparent 72%);
}

.operational-structure-section-v2 .container {
  position: relative;
  z-index: 1;
}

.operational-header {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 54px;
}

.operational-header h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.operational-header p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 1.02rem;
  line-height: 1.75;
}

.operation-map {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .24);
  backdrop-filter: blur(10px);
}

.operation-map::before {
  content: "";
  position: absolute;
  inset: 34px;
  border-radius: 22px;
  border: 1px solid rgba(31, 209, 188, .18);
  pointer-events: none;
}

.operation-core-card {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto 32px;
  padding: 28px 32px;
  text-align: center;
  border-radius: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(42, 57, 255, .94), rgba(25, 210, 184, .82)),
    linear-gradient(180deg, #1025d9, #4d47ff);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28), 0 0 0 1px rgba(255, 255, 255, .16) inset;
}

.operation-core-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: 2px;
  height: 34px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(31, 209, 188, .95), rgba(31, 209, 188, 0));
}

.core-label,
.unit-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
  font-weight: 800;
}

.core-label {
  margin-bottom: 12px;
  padding: 7px 12px;
  color: #04223d;
  background: rgba(255, 255, 255, .88);
}

.operation-core-card strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.03em;
}

.operation-core-card p {
  max-width: 430px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, .88);
  line-height: 1.55;
}

.operation-units-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.operation-units-grid::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: -23px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 209, 188, .9), transparent);
}

.operation-unit-card {
  position: relative;
  min-height: 270px;
  padding: 24px 20px 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .045));
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.operation-unit-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -23px;
  width: 1px;
  height: 23px;
  transform: translateX(-50%);
  background: rgba(31, 209, 188, .9);
}

.operation-unit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 209, 188, .42);
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .055));
}

.operation-unit-card.is-featured {
  background: linear-gradient(180deg, rgba(31, 209, 188, .16), rgba(255, 255, 255, .055));
  border-color: rgba(31, 209, 188, .35);
}

.unit-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #1fd1bc, #4b46ff);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
  font-size: 1.2rem;
}

.unit-tag {
  padding: 6px 10px;
  color: #1fd1bc;
  background: rgba(31, 209, 188, .1);
  border: 1px solid rgba(31, 209, 188, .18);
}

.operation-unit-card h3 {
  margin: 16px 0 8px;
  color: #fff;
  font-size: clamp(1.02rem, 1.25vw, 1.22rem);
  line-height: 1.18;
  font-weight: 850;
}

.operation-unit-card p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .68);
  font-size: .94rem;
}

.operation-unit-card small {
  display: block;
  color: rgba(255, 255, 255, .78);
  font-size: .88rem;
  line-height: 1.55;
}

.operation-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.operation-pillars-grid article {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
}

.operation-pillars-grid span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 12px;
  color: #1fd1bc;
  background: rgba(31, 209, 188, .1);
  font-weight: 900;
  font-size: .84rem;
}

.operation-pillars-grid h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.08rem;
}

.operation-pillars-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .92rem;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .operation-units-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operation-units-grid::before,
  .operation-unit-card::before,
  .operation-core-card::after {
    display: none;
  }

  .operation-unit-card {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .operational-header,
  .operation-pillars-grid {
    grid-template-columns: 1fr 1fr;
  }

  .operational-header {
    align-items: start;
  }
}

@media (max-width: 680px) {
  .operational-header,
  .operation-units-grid,
  .operation-pillars-grid {
    grid-template-columns: 1fr;
  }

  .operation-map {
    padding: 20px;
    border-radius: 22px;
  }

  .operation-map::before {
    display: none;
  }

  .operation-core-card {
    padding: 24px 20px;
    margin-bottom: 20px;
  }
}

/* Complemento V2 - Página Consultoria Especializada */
.ce-showcase {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #78c7c2 0%, #70c0bb 52%, #6ab7b4 100%);
  color: #122635;
  padding: 76px 0 84px;
}

.ce-showcase::before,
.ce-showcase::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.ce-showcase::before {
  width: 190px;
  height: 190px;
  right: -70px;
  top: -70px;
  border: 34px solid rgba(255, 255, 255, .20);
}

.ce-showcase::after {
  width: 260px;
  height: 260px;
  left: -92px;
  bottom: -105px;
  background: rgba(255, 255, 255, .14);
}

.ce-showcase-container {
  position: relative;
  z-index: 1;
}

.ce-showcase-grid {
  display: grid;
  grid-template-columns: minmax(300px, .86fr) minmax(520px, 1.14fr);
  gap: clamp(34px, 5vw, 66px);
  align-items: start;
}

.ce-showcase-head {
  max-width: 620px;
  margin-bottom: 28px;
}

.ce-eyebrow-dark {
  display: inline-block;
  color: #122635;
  letter-spacing: .18em;
  font-weight: 800;
  margin-bottom: 16px;
}

.ce-showcase-head h2 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(2.15rem, 3.25vw, 4.05rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 500;
  color: #122635;
}

.ce-showcase-intro {
  max-width: 540px;
}

.ce-showcase-intro p {
  margin: 0;
  max-width: 500px;
  font-size: 1.06rem;
  line-height: 1.72;
  letter-spacing: .01em;
  color: #122635;
}

.ce-showcase-intro strong {
  font-weight: 850;
}

.ce-showcase-image {
  width: min(100%, 500px);
  margin-top: 34px;
  border-radius: 32px 120px 32px 32px;
  overflow: hidden;
  box-shadow: 0 24px 58px rgba(8, 23, 34, .16);
  background: rgba(255, 255, 255, .26);
  min-height: 230px;
}

.ce-showcase-image img,
.ce-image-fallback {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: grayscale(1) sepia(.12) saturate(.75);
}

.ce-image-fallback {
  display: grid;
  place-items: center;
  color: rgba(18, 38, 53, .45);
  font-size: 3.5rem;
}

.ce-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 4px;
}

.ce-service-card {
  min-height: 190px;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: flex-start;
  background: rgba(255, 255, 255, .96);
  border-radius: 18px;
  padding: 24px 24px 22px;
  box-shadow: 0 22px 54px rgba(8, 23, 34, .10);
  border: 1px solid rgba(255, 255, 255, .78);
}

.ce-service-icon {
  width: 58px;
  height: 58px;
  border: 2px solid #122635;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #78c7c2;
  font-size: 1.35rem;
  background: #fff;
  flex: 0 0 auto;
}

.ce-service-card h3 {
  margin: 2px 0 11px;
  color: #122635;
  font-size: clamp(1.08rem, 1.2vw, 1.35rem);
  line-height: 1.28;
  font-weight: 850;
}

.ce-service-card p {
  margin: 0;
  color: #122635;
  font-size: 1rem;
  line-height: 1.58;
}

.ce-value-section {
  background: #061242;
  color: #fff;
  padding: 86px 0;
}

.ce-value-grid {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(420px, 1.15fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: start;
}

.ce-value-content h2 {
  margin: 14px 0 18px;
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  line-height: 1.05;
}

.ce-value-content p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.75;
  font-size: 1.05rem;
}

.ce-value-list {
  display: grid;
  gap: 18px;
}

.ce-value-list article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
}

.ce-value-list span {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(45, 60, 255, .34);
  color: #fff;
  font-weight: 800;
}

.ce-value-list h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.15rem;
}

.ce-value-list p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  line-height: 1.65;
}

@media (max-width: 1180px) {
  .ce-showcase-grid,
  .ce-value-grid {
    grid-template-columns: 1fr;
  }

  .ce-showcase-head,
  .ce-showcase-intro {
    max-width: 860px;
  }

  .ce-showcase-intro p {
    max-width: 760px;
  }

  .ce-showcase-image {
    display: none;
  }
}

@media (max-width: 760px) {
  .ce-showcase,
  .ce-value-section {
    padding: 58px 0;
  }

  .ce-showcase-grid {
    gap: 28px;
  }

  .ce-showcase-head {
    margin-bottom: 20px;
  }

  .ce-showcase-head h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
    letter-spacing: -0.045em;
  }

  .ce-service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ce-service-card,
  .ce-value-list article {
    grid-template-columns: 1fr;
  }

  .ce-service-card {
    min-height: initial;
    padding: 22px;
  }
}


/* =========================================================
   CINGA - Seja Afiliado | Parceiros e afiliados atuais
   ========================================================= */

.section-affiliate-partners {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: #fff;
  background:
    radial-gradient(circle at 95% 6%, rgba(80, 93, 255, .32) 0 95px, transparent 96px),
    radial-gradient(circle at 0% 100%, rgba(80, 93, 255, .28) 0 115px, transparent 116px),
    linear-gradient(135deg, #1f18a8 0%, #17108f 48%, #0b075d 100%);
}

.section-affiliate-partners::before {
  content: "";
  position: absolute;
  inset: 34px 34px auto auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 10px solid rgba(255, 255, 255, .18);
  opacity: .55;
}

.affiliate-partners-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.65fr);
  gap: 64px;
  align-items: center;
}

.affiliate-partners-copy h2 {
  max-width: 560px;
  margin: 18px 0 24px;
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 4.15rem);
  line-height: .98;
  letter-spacing: -0.055em;
}

.affiliate-partners-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.08rem;
  line-height: 1.8;
}

.affiliate-partners-note {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
  backdrop-filter: blur(10px);
}

.affiliate-partners-note strong {
  color: #fff;
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.affiliate-partners-note span {
  color: rgba(255, 255, 255, .72);
}

.affiliate-partners-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.affiliate-partner-card {
  position: relative;
  min-height: 475px;
  padding: 34px 28px 30px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .14) 0%, rgba(255, 255, 255, .07) 100%);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .28);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.affiliate-partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, .38);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .18) 0%, rgba(255, 255, 255, .09) 100%);
}

.affiliate-partner-card.is-featured {
  background:
    linear-gradient(180deg, rgba(48, 69, 255, .82) 0%, rgba(55, 47, 219, .62) 100%);
}

.affiliate-partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  margin-bottom: 26px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  color: #191096;
  text-align: center;
}

.affiliate-partner-logo img {
  max-width: 100%;
  max-height: 68px;
  object-fit: contain;
}

.affiliate-partner-logo strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.affiliate-partner-logo span {
  display: block;
  margin-top: 5px;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.affiliate-partner-card h3 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.22;
}

.affiliate-partner-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.affiliate-partner-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, .78);
  font-size: .95rem;
  line-height: 1.45;
}

.affiliate-partner-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22d477;
  box-shadow: 0 0 0 4px rgba(34, 212, 119, .13);
}

.affiliate-partner-card li strong {
  color: #fff;
}

@media (max-width: 1199px) {
  .affiliate-partners-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .affiliate-partners-copy h2,
  .affiliate-partners-copy p {
    max-width: 820px;
  }
}

@media (max-width: 991px) {
  .section-affiliate-partners {
    padding: 84px 0;
  }

  .affiliate-partners-list {
    grid-template-columns: 1fr;
  }

  .affiliate-partner-card {
    min-height: initial;
  }
}

@media (max-width: 575px) {
  .section-affiliate-partners {
    padding: 70px 0;
  }

  .affiliate-partners-copy h2 {
    font-size: 2.35rem;
  }

  .affiliate-partners-copy p {
    font-size: 1rem;
  }

  .affiliate-partner-card {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .affiliate-partner-logo {
    height: 84px;
  }
}

