/* =========================
   ABOUT + MINDSET HYBRID
========================= */

.about-mindset {
  background: linear-gradient(
    to bottom,
    rgba(2,6,23,0.96),
    rgba(2,6,23,0.99)
  );
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.about-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: flex-start;
}

/* =========================
   ABOUT CARD (DOMINANTE)
========================= */

.about-card {
  display: flex;
  flex-direction: column;
  gap: 40px;

  padding: 80px 70px;
  border-radius: 24px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.015)
    ),
    radial-gradient(
      420px 220px at top left,
      rgba(59,130,246,0.14),
      transparent 65%
    );

  border: 1px solid rgba(255,255,255,0.08);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.about-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.18);
}

/* HEADER */

.about-card h3 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-top: 12px;
  max-width: 720px;
}

/* BODY */

.about-card p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 760px;
}

.about-card p strong {
  color: var(--text-main);
  font-weight: 500;
}

/* FOOTER / ASSINATURA */

.about-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.about-highlight {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-accent);
}

.about-divider {
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.18);
}

/* =========================
   MINDSET PANEL (COMPLEMENTAR)
========================= */

.mindset-panel {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* HEADER */

.mindset-header h4 {
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.mindset-header p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 420px;
}

/* GRID */

.mindset-grid {
  display: grid;
  gap: 20px;
}

/* CARD */

.mindset-card {
  padding: 26px;
  border-radius: 16px;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.035),
    rgba(255,255,255,0.01)
  );

  border: 1px solid rgba(255,255,255,0.06);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.mindset-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59,130,246,0.45);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.15);
}

.mindset-card.is-featured {
  border-color: rgba(59,130,246,0.4);
  position: relative;
}

.mindset-card.is-featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    360px 120px at top,
    rgba(59,130,246,0.18),
    transparent 70%
  );
  pointer-events: none;
}

/* =========================
   CTA
========================= */

.mindset-cta-wrapper {
  margin-top: 8px;
}

.mindset-cta {
  font-size: 1rem;
  font-weight: 500;
  color: #6f8fd1;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(59,130,246,0.35);

  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}

.mindset-cta:hover {
  color: #93c5fd;
  border-color: rgba(59,130,246,0.9);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .about-card {
    padding: 48px 40px;
  }

  .about-card h3 {
    font-size: 2.2rem;
  }
}
