    /* ===== 10° ANIVERSARIO MEDITECH ===== */

    /* --- Aniversario: barra fija superior --- */
    #aniversario-bar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1100;
      background: var(--meditech-dark);
      border-bottom: 2px solid #a0aec0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 4px 20px;
      /* height: 68px; */
      cursor: pointer;
      overflow: hidden;
      transition: background 0.3s;
    }

    #aniversario-bar::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg,
          transparent 0%,
          rgba(192, 210, 230, 0.10) 40%,
          rgba(220, 235, 248, 0.20) 50%,
          rgba(192, 210, 230, 0.10) 60%,
          transparent 100%);
      animation: shimmerBar 3s ease-in-out infinite;
    }

    @keyframes shimmerBar {
      0% {
        transform: translateX(-100%);
      }

      100% {
        transform: translateX(100%);
      }
    }

    #aniversario-bar:hover {
      background: #2a2a28;
    }

    .aniv-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: radial-gradient(circle at 38% 30%, #f0f5fa, #b8c8d8 50%, #7a8fa0);
      box-shadow: 0 0 0 2px rgba(176, 196, 214, 0.45), 0 0 14px rgba(176, 196, 214, 0.4);
      font-family: 'Raleway', sans-serif;
      font-weight: 900;
      font-size: 0.85rem;
      color: #0d1a2e;
      line-height: 1;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
      animation: pulseBadge 2.5s ease-in-out infinite;
    }

    @keyframes pulseBadge {

      0%,
      100% {
        box-shadow: 0 0 0 2px rgba(176, 196, 214, 0.45), 0 0 14px rgba(176, 196, 214, 0.4);
      }

      50% {
        box-shadow: 0 0 0 4px rgba(176, 196, 214, 0.25), 0 0 28px rgba(200, 220, 240, 0.6);
      }
    }

    .aniv-text-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
      position: relative;
      z-index: 1;
    }

    .aniv-title {
      font-family: 'Raleway', sans-serif;
      font-weight: 800;
      font-size: 0.9rem;
      color: #d8e8f5;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .aniv-sep {
      width: 1px;
      height: 18px;
      background: rgba(176, 196, 214, 0.4);
    }

    .aniv-sub {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 500;
    }

    .aniv-cta {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: linear-gradient(135deg, #8fa8be, #d8e8f5);
      color: #0d1a2e;
      font-family: 'Raleway', sans-serif;
      font-weight: 700;
      font-size: 0.72rem;
      letter-spacing: 0.04em;
      padding: 5px 14px;
      border-radius: 20px;
      text-transform: uppercase;
      transition: transform 0.2s, box-shadow 0.2s;
      white-space: nowrap;
    }

    #aniversario-bar:hover .aniv-cta {
      transform: scale(1.05);
      box-shadow: 0 4px 16px rgba(176, 196, 214, 0.5);
    }

    /* Ajustar el header para que quede debajo de la barra de aniversario */
    #header {
      top: 68px !important;
    }

    #page-header {
      margin-top: 138px !important;
      /* 52px barra + 70px header */
    }

    /* --- Modal de Aniversario --- */
    #aniv-modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(29, 29, 27, 0.90);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    #aniv-modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    #aniv-modal {
      background: var(--meditech-dark);
      border: 1px solid rgba(176, 196, 214, 0.2);
      border-radius: 20px;
      max-width: 640px;
      width: 100%;
      padding: 50px 48px 44px;
      position: relative;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(200, 220, 240, 0.08);
      transform: translateY(30px) scale(0.97);
      transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
      overflow: hidden;
    }

    #aniv-modal-overlay.active #aniv-modal {
      transform: translateY(0) scale(1);
    }

    /* Decoración fondo modal */
    #aniv-modal::before {
      content: '10';
      position: absolute;
      right: -10px;
      bottom: -20px;
      font-family: 'Raleway', sans-serif;
      font-weight: 900;
      font-size: 11rem;
      color: rgba(176, 196, 214, 0.06);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    #aniv-modal::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, #8fa8be 30%, #d8e8f5 50%, #8fa8be 70%, transparent);
    }

    .modal-close-btn {
      position: absolute;
      top: 16px;
      right: 20px;
      background: rgba(255, 255, 255, 0.07);
      border: none;
      color: rgba(255, 255, 255, 0.5);
      font-size: 1.1rem;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, color 0.2s;
    }

    .modal-close-btn:hover {
      background: rgba(176, 196, 214, 0.2);
      color: #d8e8f5;
    }

    .modal-badge-ring {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: radial-gradient(circle at 38% 32%, #f0f5fa, #b8c8d8 55%, #7a8fa0);
      box-shadow: 0 0 0 6px rgba(176, 196, 214, 0.15), 0 8px 28px rgba(176, 196, 214, 0.35);
      font-family: 'Raleway', sans-serif;
      font-weight: 900;
      font-size: 1.45rem;
      color: #0d1a2e;
      margin-bottom: 22px;
      flex-shrink: 0;
    }

    .modal-headline {
      font-family: 'Raleway', sans-serif;
      font-weight: 900;
      font-size: 1.75rem;
      color: #d8e8f5;
      margin-bottom: 8px;
      line-height: 1.2;
      position: relative;
      z-index: 1;
    }

    .modal-headline span {
      color: #4cb8e8;
    }

    .modal-divider {
      width: 48px;
      height: 3px;
      background: linear-gradient(90deg, #8fa8be, #d8e8f5);
      border-radius: 2px;
      margin-bottom: 20px;
    }

    .modal-body-text {
      font-size: 0.92rem;
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.8;
      position: relative;
      z-index: 1;
    }

    .modal-body-text p+p {
      margin-top: 12px;
    }

    .modal-body-text strong {
      color: #4cb8e8;
    }

    .modal-body-text em {
      color: #d8e8f5;
      font-style: normal;
      font-weight: 600;
    }

    .modal-footer-line {
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid rgba(176, 196, 214, 0.15);
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 1;
    }

    .modal-footer-brand {
      font-family: 'Raleway', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      color: #fff;
    }

    .modal-footer-brand span {
      color: #4cb8e8;
    }

    .modal-footer-year {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.35);
      letter-spacing: 0.08em;
    }

    /* --- Logo aniversario en header --- */
    .aniv-logo-header {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .aniv-logo-header .aniv-logo-badge {
      background: linear-gradient(135deg, #8fa8be, #d8e8f5);
      color: #0d1a2e;
      font-family: 'Raleway', sans-serif;
      font-weight: 900;
      font-size: 0.62rem;
      padding: 3px 7px;
      border-radius: 10px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      line-height: 1.2;
      white-space: nowrap;
      box-shadow: 0 2px 8px rgba(176, 196, 214, 0.4);
      animation: pulseBadge 2.5s ease-in-out infinite;
    }

    /* Confetti partículas de fondo modal */
    .modal-particle {
      position: absolute;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      opacity: 0.18;
      pointer-events: none;
    }

    @media (max-width: 576px) {
      #aniv-modal {
        padding: 28px 20px 24px;
        max-height: 90vh;
        overflow-y: auto;
      }

      #aniv-modal video,
      #aniv-modal img {
        width: 130px !important;
        height: 130px !important;
        margin-bottom: 14px;
      }

      .modal-headline {
        font-size: 1.2rem;
      }

      .modal-body-text {
        font-size: 0.82rem;
        line-height: 1.65;
      }

      .modal-body-text p+p {
        margin-top: 8px;
      }

      .aniv-sub {
        display: none;
      }

      .modal-footer-brand {
        font-size: 0.85rem;
      }

      .modal-footer-year {
        font-size: 0.68rem;
      }
    }