/* =====================================================================
   Visa — v2 (navy/teal). Escopo: body.page-template-tpl-visa.page-overview
   ===================================================================== */

/* Seções de texto */
.vi-sec { padding: 40px 0 0; }
.vi-sec__body p {
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--color-cream);
  margin: 0 0 var(--space-2);
}
.vi-sec__body p:last-child { margin-bottom: 0; }
.vi-sec__body a {
  color: var(--color-teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.vi-sec__body a:hover { filter: brightness(1.1); }

/* Passos numerados (círculo teal, número navy) */
.vi-steps {
  list-style: none;
  margin: var(--space-3) 0 0;
  padding: 0 0 0 var(--space-3);
  counter-reset: step;
  max-width: 720px;
}
.vi-steps__item { position: relative; padding: 0 0 var(--space-3) 44px; }
.vi-steps__item:last-child { padding-bottom: 0; }
.vi-steps__item::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-teal); color: var(--color-navy);
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-sm);
}
.vi-steps__item:not(:last-child)::after {
  content: ""; position: absolute; left: 12px; top: 28px; bottom: 6px;
  width: 2px; background: rgba(235,237,230,0.18);
}
.vi-steps__item p { margin: 0; color: var(--color-cream); line-height: 1.5; font-size: var(--text-base); }
.vi-steps__item p strong { color: var(--color-white); }
.vi-steps__item a { color: var(--color-teal); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.vi-steps__item a:hover { filter: brightness(1.1); }

@media (max-width: 480px) {
  .vi-steps__item { padding-left: 40px; }
  .vi-steps__item::before { width: 24px; height: 24px; }
  .vi-steps__item:not(:last-child)::after { left: 11px; }
}

/* CTA */
.vi-cta { padding: 40px 0 0; }
.vi-cta__box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}
.vi-cta__title {
  font-family: var(--font-body); font-weight: 700;
  font-size: var(--text-xl); color: var(--color-teal);
  letter-spacing: -0.01em; margin: 0 0 var(--space-2);
}
.vi-cta__desc {
  font-size: var(--text-base); line-height: 1.5;
  color: var(--color-cream); margin: 0 0 var(--space-3); max-width: 380px;
}
.vi-btn {
  display: inline-flex; align-items: center; gap: var(--space-1);
  background: var(--color-teal); color: var(--color-navy);
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-base);
  padding: 12px 24px; border-radius: var(--radius-md);
  text-decoration: none; transition: gap .2s ease, filter .2s ease;
}
.vi-btn:hover { gap: var(--space-2); filter: brightness(1.05); }
