/* Compatibilidad: notch / home indicator (iOS, algunos Android) */
@supports (padding: env(safe-area-inset-top)) {
  body.agency-body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
  .agency-glass-nav {
    padding-top: env(safe-area-inset-top);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Paleta: marca + TikTok — https://fonts.google.com/specimen/TikTok+Sans */
:root {
  --tt-bg: #050505;
  --tt-brand: #00e676;
  --tt-pink: #fe2c55;
  --tt-cyan: #25f4ee;
  --tt-gaming: #ff2a2a;
  --tt-gold: #ffd700;
  --agency-font: "TikTok Sans", system-ui, -apple-system, sans-serif;
}

body.agency-body {
  font-family: var(--agency-font);
  -webkit-font-smoothing: antialiased;
}

.agency-body h1,
.agency-body h2,
.agency-body h3 {
  font-family: var(--agency-font);
  letter-spacing: -0.02em;
}

/* “Glitch” tipo logo TikTok: sombras rosa + cian */
.agency-glitch-title {
  color: #f4f4f5;
  text-shadow:
    -2px 0 0 rgba(254, 44, 85, 0.92),
    2px 0 0 rgba(37, 244, 238, 0.88);
}

.agency-title-italic {
  font-style: italic;
}

@keyframes agency-spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.animate-spin-slow-3s {
  animation: agency-spin-slow 3s linear infinite;
}
.animate-spin-slow-4s {
  animation: agency-spin-slow 4s linear infinite;
}

/* Fondo atmosférico — orbes alineados a la paleta */
/* Partículas (particles.js): fondo no bloquea; el canvas recibe hover para repulse */
.particles-host {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.particles-host canvas {
  pointer-events: auto;
  mix-blend-mode: screen;
}

/* Degradados radiales en esquinas (Gaming / Batallas PK) */
.ag-corners-wrap {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.ag-corner {
  position: absolute;
  border-radius: 50%;
}
.ag-corner--pk-tl {
  top: -5rem;
  left: -7rem;
  width: min(100vw, 520px);
  height: min(100vw, 520px);
  background: radial-gradient(circle at 32% 32%, rgba(254, 44, 85, 0.1), transparent 62%);
}
.ag-corner--pk-tr {
  top: -4rem;
  right: -6rem;
  width: min(95vw, 480px);
  height: min(95vw, 480px);
  background: radial-gradient(circle at 68% 28%, rgba(37, 244, 238, 0.1), transparent 62%);
}
.ag-corner--pk-bl {
  bottom: -6rem;
  left: -5rem;
  width: min(90vw, 440px);
  height: min(90vw, 440px);
  background: radial-gradient(circle at 28% 72%, rgba(37, 244, 238, 0.08), transparent 58%);
}
.ag-corner--pk-br {
  bottom: -5rem;
  right: -7rem;
  width: min(95vw, 480px);
  height: min(95vw, 480px);
  background: radial-gradient(circle at 72% 76%, rgba(254, 44, 85, 0.09), transparent 60%);
}

.agency-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.agency-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  opacity: 0.5;
  animation: agency-float-orb 22s ease-in-out infinite;
}

.agency-orb-a {
  width: min(52vw, 440px);
  height: min(52vw, 440px);
  background: radial-gradient(circle, rgba(0, 230, 118, 0.4) 0%, transparent 72%);
  top: -12%;
  left: -8%;
}

.agency-orb-b {
  width: min(48vw, 400px);
  height: min(48vw, 400px);
  background: radial-gradient(circle, rgba(254, 44, 85, 0.22) 0%, transparent 72%);
  top: 35%;
  right: -12%;
  animation-delay: -7s;
}

.agency-orb-c {
  width: min(42vw, 340px);
  height: min(42vw, 340px);
  background: radial-gradient(circle, rgba(37, 244, 238, 0.26) 0%, transparent 72%);
  bottom: 8%;
  left: 25%;
  animation-delay: -14s;
}

.agency-orb-d {
  width: min(58vw, 520px);
  height: min(58vw, 520px);
  background: radial-gradient(circle, rgba(255, 42, 42, 0.16) 0%, transparent 72%);
  bottom: -18%;
  right: 5%;
  animation-delay: -5s;
}

@keyframes agency-float-orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(4%, 5%) scale(1.06);
  }
  66% {
    transform: translate(-3%, 3%) scale(0.94);
  }
}

.agency-grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* No incluir nav: anulaba el `position: fixed` de Tailwind (mayor especificidad que .fixed)
   y el hero (z-index 1) tapaba la barra en móvil — “no se ve el menú”. */
body.agency-body > nav.agency-glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
}

body.agency-body > section,
body.agency-body > footer {
  position: relative;
  z-index: 1;
}

body.agency-body > section {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

body.agency-body > section.reveal-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.agency-text-shimmer {
  background-size: 220% auto;
  animation: agency-shimmer 5s ease-in-out infinite;
}

@keyframes agency-shimmer {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.agency-btn-primary {
  animation: agency-btn-pulse 2.8s ease-out infinite;
}

@keyframes agency-btn-pulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(0, 230, 118, 0.45),
      0 4px 24px rgba(37, 244, 238, 0.12);
  }
  65% {
    box-shadow:
      0 0 0 16px rgba(0, 230, 118, 0),
      0 4px 24px rgba(37, 244, 238, 0.06);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(0, 230, 118, 0),
      0 4px 24px rgba(37, 244, 238, 0.12);
  }
}

.agency-glass-nav {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

/* Menú móvil (cajón bajo la barra) */
body.agency-nav-open {
  overflow: hidden;
}

/* z-index > nav (50): antes el menú quedaba debajo o mal posicionado en Chrome móvil */
.agency-mobile-drawer {
  position: fixed;
  left: 0;
  right: 0;
  top: calc(4rem + env(safe-area-inset-top, 0px));
  bottom: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.agency-mobile-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

/* Sin backdrop-filter aquí: en Brave/Android puede combinar mal con canvas/partículas y vaciar la capa */
.agency-mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.agency-mobile-drawer__panel {
  position: relative;
  z-index: 1;
  max-height: min(70vh, 28rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  background: rgba(12, 12, 12, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
}

.agency-mobile-drawer__inner {
  padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
}

@media (min-width: 1024px) {
  .agency-mobile-drawer {
    display: none !important;
  }
}

.agency-hero-mesh {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 230, 118, 0.16), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(37, 244, 238, 0.1), transparent),
    radial-gradient(ellipse 50% 50% at 0% 80%, rgba(254, 44, 85, 0.08), transparent);
  animation: agency-mesh-drift 28s ease-in-out infinite;
  opacity: 0.9;
  pointer-events: none;
}

@keyframes agency-mesh-drift {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.08) rotate(6deg);
  }
}

.agency-chart-line {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: agency-draw-line 2.4s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.4s;
}

@keyframes agency-draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

.agency-hover-lift {
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}

.agency-hover-lift:hover {
  transform: translateY(-10px);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(0, 230, 118, 0.08);
}

#interactive .agency-hover-lift:hover {
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.55),
    0 0 72px rgba(0, 230, 118, 0.12),
    0 0 40px rgba(37, 244, 238, 0.06);
}

#gaming .agency-hover-lift:hover {
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.55),
    0 0 70px rgba(255, 42, 42, 0.14);
}

#batallas .agency-hover-lift:hover {
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.55),
    0 0 64px rgba(37, 244, 238, 0.1),
    0 0 48px rgba(254, 44, 85, 0.08);
}

.faq-answer {
  display: none;
}
.faq-item.is-open .faq-answer {
  display: block;
}
.faq-item.is-open .faq-chevron-down {
  display: none;
}
.faq-item.is-open .faq-chevron-up {
  display: block;
}
.faq-item:not(.is-open) .faq-chevron-up {
  display: none;
}
.faq-item:not(.is-open) .faq-chevron-down {
  display: block;
}

/* Modales (Eventos / Capacitaciones) */
.agency-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4.5rem 1rem 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.agency-modal[hidden] {
  display: none !important;
}
.agency-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.agency-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
}
.agency-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.agency-modal__body {
  padding: 1.25rem;
}
.agency-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  background: transparent;
  border: 0;
  padding: 0.35rem;
  cursor: pointer;
  border-radius: 0.375rem;
  line-height: 0;
}
.agency-modal__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.agency-eventos-page-main {
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  min-height: 100vh;
}

/* —— Página eventos: catálogo tipo “posters” + detalle editorial —— */
.agency-eventos-catalog-page .agency-eventos-page-main {
  padding-top: 3.75rem;
  padding-bottom: 2.5rem;
}

/* Ancho de columna FIJO: con minmax(..., 1fr) una sola tarjeta estiraba a pantalla completa. */
.agency-eventos-catalog-page .agency-eventos-grid--catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, 6.5rem);
  justify-content: start;
  gap: 0.55rem 0.65rem;
}
@media (min-width: 400px) {
  .agency-eventos-catalog-page .agency-eventos-grid--catalog {
    grid-template-columns: repeat(auto-fill, 7rem);
    gap: 0.6rem 0.75rem;
  }
}
@media (min-width: 640px) {
  .agency-eventos-catalog-page .agency-eventos-grid--catalog {
    grid-template-columns: repeat(auto-fill, 7.5rem);
    gap: 0.7rem 0.85rem;
  }
}
@media (min-width: 1024px) {
  .agency-eventos-catalog-page .agency-eventos-grid--catalog {
    grid-template-columns: repeat(auto-fill, 8rem);
    gap: 0.75rem 0.95rem;
  }
}

.agency-eventos-catalog-page .agency-event-card--poster {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.agency-eventos-catalog-page .agency-event-card--poster:hover,
.agency-eventos-catalog-page .agency-event-card--poster:focus-visible {
  background: transparent;
  border: none;
}
.agency-eventos-catalog-page .agency-event-card--poster:active {
  transform: none;
}
.agency-eventos-catalog-page .agency-event-card--poster:focus-visible .agency-event-card__thumb-wrap {
  box-shadow:
    0 0 0 2px rgba(37, 244, 238, 0.85),
    0 14px 42px rgba(0, 0, 0, 0.5);
}

.agency-eventos-catalog-page .agency-event-card--poster .agency-event-card__thumb-wrap {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: #101012;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.agency-eventos-catalog-page .agency-event-card--poster:hover .agency-event-card__thumb-wrap {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.agency-eventos-catalog-page .agency-event-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.45) 72%, rgba(0, 0, 0, 0.9) 100%);
  pointer-events: none;
}

.agency-eventos-catalog-page .agency-event-card--poster .agency-event-card__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem 0.45rem 0.4rem;
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #f9fafb;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.9);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}
@media (min-width: 640px) {
  .agency-eventos-catalog-page .agency-event-card--poster .agency-event-card__title {
    font-size: 0.75rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.agency-eventos-detail--page {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.32) 55%);
  padding: 1rem 0.9rem 1.2rem;
}
@media (min-width: 768px) {
  .agency-eventos-detail--page {
    padding: 1.2rem 1.35rem 1.45rem;
  }
}

.agency-eventos-back--subtle {
  color: #9ca3af;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.32rem 0.55rem;
}
.agency-eventos-back--subtle:hover,
.agency-eventos-back--subtle:focus-visible {
  color: #f3f4f6;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.agency-eventos-catalog-page .agency-eventos-detail__layout {
  display: grid;
  gap: 1.15rem;
  align-items: start;
}
@media (min-width: 768px) {
  .agency-eventos-catalog-page .agency-eventos-detail__layout {
    grid-template-columns: minmax(200px, min(34vw, 300px)) minmax(0, 1fr);
    gap: 1.5rem 1.85rem;
  }
}
@media (min-width: 1100px) {
  .agency-eventos-catalog-page .agency-eventos-detail__layout {
    grid-template-columns: minmax(220px, min(30vw, 340px)) minmax(0, 1fr);
  }
}

.agency-eventos-catalog-page .agency-eventos-detail__media {
  margin: 0 auto;
  width: 100%;
  max-width: 260px;
}
@media (min-width: 768px) {
  .agency-eventos-catalog-page .agency-eventos-detail__media {
    margin: 0;
    max-width: none;
    position: sticky;
    top: 4rem;
    align-self: start;
  }
}

.agency-eventos-catalog-page .agency-eventos-detail__img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  max-height: none;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  background: #0a0a0c;
}

.agency-eventos-dates--inline .agency-eventos-dates__row {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.35rem 0.75rem;
  align-items: baseline;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.agency-eventos-dates--inline .agency-eventos-dates__row:last-of-type {
  border-bottom: none;
}
.agency-eventos-dates--inline dt {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
}
.agency-eventos-dates--inline dd {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #e5e7eb;
}

.agency-eventos-desc--detail {
  border-top: none !important;
  padding-top: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
  .agency-eventos-catalog-page .agency-event-card--poster:hover .agency-event-card__thumb-wrap {
    transform: none;
  }
}

.agency-modal__panel--eventos {
  max-height: calc(100vh - 5rem);
  display: flex;
  flex-direction: column;
}
.agency-modal__body--eventos {
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}

.agency-eventos-state {
  padding: 1rem 0;
  font-size: 0.875rem;
}
.agency-eventos-state--error {
  font-weight: 600;
}

.agency-eventos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(6.5rem, 7.5rem));
  justify-content: start;
  gap: 0.75rem 0.85rem;
}

.agency-event-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.agency-event-card:hover,
.agency-event-card:focus-visible {
  border-color: rgba(37, 244, 238, 0.35);
  background: rgba(37, 244, 238, 0.06);
  outline: none;
}
.agency-event-card:active {
  transform: scale(0.98);
}
.agency-event-card__thumb-wrap {
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 0.65rem 0.65rem 0 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
}
.agency-event-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.agency-event-card__title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #e5e7eb;
  line-height: 1.25;
  padding: 0 0.65rem 0.65rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.agency-eventos-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.65rem;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #25f4ee;
  background: rgba(37, 244, 238, 0.08);
  border: 1px solid rgba(37, 244, 238, 0.2);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.agency-eventos-back:hover,
.agency-eventos-back:focus-visible {
  background: rgba(37, 244, 238, 0.14);
  border-color: rgba(37, 244, 238, 0.35);
  outline: none;
}

.agency-eventos-detail__layout {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .agency-eventos-detail__layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: start;
  }
}
.agency-eventos-detail__img {
  width: 100%;
  max-height: min(68vh, 540px);
  height: auto;
  object-fit: contain;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.45);
  display: block;
}

.agency-eventos-desc {
  white-space: pre-wrap;
  word-break: break-word;
}

.agency-cap-cal {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}
.agency-cap-cal__wd {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  padding: 6px 0;
}
.agency-cap-cal__cell {
  min-height: 4.5rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 4px 4px 6px;
  font-size: 10px;
  background: rgba(0, 0, 0, 0.35);
}
.agency-cap-cal__cell--muted {
  opacity: 0.2;
  pointer-events: none;
  min-height: 2.5rem;
}
.agency-cap-cal__daynum {
  font-weight: 800;
  color: #f3f4f6;
  font-size: 12px;
  line-height: 1.2;
}
.agency-cap-cal__tag {
  display: block;
  margin-top: 3px;
  padding: 3px 4px;
  border-radius: 4px;
  line-height: 1.25;
  font-size: 9px;
  font-weight: 600;
}
.agency-cap-cal__tag--cap {
  background: rgba(0, 230, 118, 0.14);
  color: #86efac;
}
.agency-cap-cal__tag--met {
  background: rgba(191, 90, 242, 0.14);
  color: #e9d5ff;
}

@media (prefers-reduced-motion: reduce) {
  .agency-orb,
  .agency-text-shimmer,
  .agency-btn-primary,
  .agency-hero-mesh,
  .agency-chart-line {
    animation: none !important;
  }
  .agency-chart-line {
    stroke-dashoffset: 0 !important;
  }
  body.agency-body > section {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Enlace “Bonificaciones” (lima #a3e635): no está en el purge de agency-tailwind */
.agency-nav-link-bonif {
  color: #a3e635;
}
.agency-nav-link-bonif:hover {
  color: #fff;
}
.agency-drawer-link-bonif {
  color: #a3e635;
  border: 1px solid rgba(163, 230, 53, 0.3);
  background: rgba(163, 230, 53, 0.08);
}
.agency-drawer-link-bonif:hover {
  background: rgba(163, 230, 53, 0.14);
}
