/*
    NOA Tecnología — Design System Clean
    Versión limpia: sin cursor custom, sin blobs, sin spotlights, sin glows.
    Solo transiciones sutiles y sistema de stagger de reveal.
  */

  /* =============================================
     BENTO GRID CARD SYSTEM
     ============================================= */

  .noa-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(80px, auto);
    gap: 16px;
  }

  @media (max-width: 767px) {
    .noa-bento-grid { grid-template-columns: 1fr; }
    .noa-bento-card { grid-column: 1 / -1 !important; grid-row: auto !important; }
  }

  .noa-bento-card {
    background: #fff;
    border: 1px solid rgba(5,150,105,0.1);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    cursor: default;
  }

  .noa-bento-card:hover {
    border-color: rgba(232,168,74,0.3);
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
    transform: translateY(-2px);
  }

  /* =============================================
     STAGGERED REVEAL DELAYS
     ============================================= */

  .row [data-reveal]:nth-child(1) { transition-delay: 0s; }
  .row [data-reveal]:nth-child(2) { transition-delay: 0.07s; }
  .row [data-reveal]:nth-child(3) { transition-delay: 0.14s; }
  .row [data-reveal]:nth-child(4) { transition-delay: 0.21s; }
  .row [data-reveal]:nth-child(5) { transition-delay: 0.28s; }
  .row [data-reveal]:nth-child(6) { transition-delay: 0.35s; }

  /* =============================================
     ANIMATED UNDERLINES — NAVBAR (subtle)
     ============================================= */

  .navbar-nav .nav-link {
    position: relative;
  }

  .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: #10b981;
    border-radius: 2px;
    transition: left 0.22s ease, right 0.22s ease;
  }

  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    left: 8px;
    right: 8px;
  }

  /* =============================================
     ANIMATED LINKS (inline)
     ============================================= */

  .noa-link-anim {
    position: relative;
    text-decoration: none;
    color: var(--primary, #10b981);
    font-weight: 600;
  }

  .noa-link-anim::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: #10b981;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
  }

  .noa-link-anim:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  /* =============================================
     TOAST NOTIFICATIONS
     ============================================= */

  #noa-toast-container {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 9997;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    max-width: calc(100vw - 48px);
  }

  @supports (padding-bottom: env(safe-area-inset-bottom)) {
    #noa-toast-container {
      bottom: calc(90px + env(safe-area-inset-bottom));
      right: max(24px, env(safe-area-inset-right));
    }
  }

  .noa-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid rgba(5,150,105,0.18);
    border-radius: 12px;
    padding: 14px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    pointer-events: all;
    min-width: 240px;
    max-width: 340px;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.25s ease;
    color: #1a2535;
    font-size: 14px;
    font-weight: 500;
  }

  .noa-toast.show {
    transform: translateX(0);
    opacity: 1;
  }

  .noa-toast-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(5,150,105,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 15px;
    flex-shrink: 0;
  }

  .noa-toast-icon.amber {
    background: rgba(232,168,74,0.12);
    color: #e8a84a;
  }

  .noa-toast-close {
    margin-left: auto;
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 4px 6px;
    font-size: 14px;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.2s;
    border-radius: 4px;
    flex-shrink: 0;
  }

  .noa-toast-close:hover { opacity: 1; }

  @media (max-width: 575px) {
    #noa-toast-container { left: 16px; right: 16px; bottom: 80px; }
    .noa-toast { min-width: 0; max-width: 100%; width: 100%; }
  }

  /* =============================================
     CURSOR TRAIL — DISABLED
     ============================================= */

  .noa-cursor,
  .noa-cursor-ring { display: none !important; }
  