/* Reusable component & typography helpers used across all sections */

/* Gradient hairline border (cards, buttons, badges, nav pills) */
.border-gradient {
  position: relative;
}
.border-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  background: linear-gradient(225deg, rgba(255,255,255,0) 0%, rgba(251,191,36,0.26) 38%, rgba(255,255,255,0.24) 56%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

/* Font utility classes */
.font-gloock { font-family: 'Gloock', serif !important; }
.font-manrope { font-family: 'Manrope', sans-serif !important; }

/* Visible keyboard focus — amber ring (fio dourado). Mouse clicks stay clean via :focus-visible. */
:where(a, button, [tabindex]):focus-visible {
  outline: 2px solid #fbbf24;
  outline-offset: 3px;
}

/* Ícones do sprite SVG inline (substituem o runtime Iconify) */
svg.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  fill: currentColor;
}

/* Fachada de vídeo do YouTube: o iframe só carrega após o clique */
.yt-facade-btn { cursor: pointer; }
.yt-facade-btn:hover span,
.yt-facade-btn:focus-visible span { transform: scale(1.1); }

/* Texto azul-marinho com contraste AA sobre branco (utility ausente do build) */
.text-\[\#0c2147\]\/70 { color: rgb(12 33 71 / 0.7); }

/* Link "pular para o conteúdo": invisível até receber foco do teclado */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  background: #67e8f9;
  color: #0c0a09;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
}
.skip-link:focus {
  top: 1rem;
}
