/* ══════════════════════════════════════════
   VISION — COMO FUNCIONA SECTION
══════════════════════════════════════════ */

.vsection {
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(139,69,255,0.07) 0%, transparent 70%),
    #0d0b1a;
}

.vsection-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding: var(--section-padding-y) 0;
}

@media (min-width: 1024px) {
  .vsection-layout {
    grid-template-columns: 0.72fr 1.28fr;
    align-items: center;
    gap: clamp(48px, 6vw, 88px);
  }
}

/* ── Left ── */
.vsection-label {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.vsection-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: var(--font-weight-bold);
  color: white;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-top: var(--space-4);
  clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0 100%);
}

/* ── Right: 3 cards grid ── */
.vsection-cards {
  display: grid;
  gap: 12px;
}

@media (min-width: 560px) {
  .vsection-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 559px) {
  .vsection-cards {
    grid-template-columns: 1fr;
  }

  .vcard {
    min-height: auto;
  }
}

/* ══════════════════════════════════════════
   VCARD — Redesign + Spotlight Hover
══════════════════════════════════════════ */

.vcard {
  position: relative;
  overflow: hidden;

  background: #181528;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 32px);
  min-height: 220px;

  display: flex;
  flex-direction: column;
  gap: 0;

  transform-style: preserve-3d;
  transition:
    box-shadow 300ms ease,
    border-color 300ms ease,
    transform 140ms ease;

  cursor: default;
  will-change: transform;
}

/* ── Spotlight radial (segue o mouse) ── */
.vcard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    460px circle at var(--mouse-x, 50%) var(--mouse-y, -60px),
    rgba(139, 69, 255, 0.11),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 360ms ease;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

.vcard:hover::before {
  opacity: 1;
}

.vcard:hover {
  border-color: rgba(139, 69, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(139, 69, 255, 0.14),
    0 16px 40px rgba(0, 0, 0, 0.35);
}

/* ── Step number (top right) ── */
.vcard__step {
  position: absolute;
  z-index: 3;
  top: clamp(20px, 2.5vw, 28px);
  right: clamp(20px, 2.5vw, 28px);
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.22);
  font-variant-numeric: tabular-nums;
}

/* ── Icon ── */
.vcard__icon {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  margin-bottom: var(--space-5);
  color: rgba(255, 255, 255, 0.60);
  flex-shrink: 0;
  transition: color 280ms ease;
}

.vcard:hover .vcard__icon {
  color: var(--color-purple-light);
}

.vcard__icon iconify-icon {
  display: flex;
  font-size: 28px;
  line-height: 1;
}

/* ── Title ── */
.vcard__title {
  position: relative;
  z-index: 3;
  font-size: 17px;
  font-weight: var(--font-weight-semibold);
  color: white;
  line-height: 1.3;
  letter-spacing: -0.1px;
}

/* ── Description ── */
.vcard__desc {
  position: relative;
  z-index: 3;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
  margin-top: var(--space-3);
}
