/* ============================================================
   MenÃº principal - Dynamostore (v2 - versiÃ³n premium)
   "Personaliza!" con borde dorado animado + glow pulsante (CSS puro)
   Hover con subrayado animado en el resto del menÃº.
   ============================================================ */

/* ============================================================
   Layout horizontal base (desktop)
   ============================================================ */
.main-menu-container {
  display: flex;
  justify-content: center;
  margin: 10px 0 0 0;
}

.main-menu-container .top-menu {
  list-style: none;
  display: flex;
  gap: 5px;
  padding: 0;
  margin: 0;
}

.main-menu-container .top-menu > li {
  position: relative;
}

.main-menu-container .top-menu > li > a {
  color: #fff;
  font-family: LemonMilk, sans-serif;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 22px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  display: block;
}

.main-menu-container .top-menu > li > a:hover,
.main-menu-container .top-menu > li > a:focus {
  background: #ff6e00;
  box-shadow: 0 2px 12px rgba(255,110,0,0.18);
  text-decoration: none;
}

/* SubmenÃºs desktop (dropdown) â€” solo desktop */
@media (min-width: 768px) {
  .main-menu-container .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: auto;
  }

  .main-menu-container .top-menu > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
  }

  .main-menu-container .sub-menu .top-menu {
    flex-direction: column;
    gap: 0;
  }

  .main-menu-container .sub-menu .top-menu > li {
    display: block;
    margin: 0 !important;
    position: relative;
  }

  .main-menu-container .sub-menu .top-menu > li > a {
    color: #fff !important;
    padding: 8px 20px;
    display: block;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-radius: 0;
    background: transparent;
    font-family: inherit;
  }

  .main-menu-container .sub-menu .top-menu > li > a:hover {
    background: rgba(255, 110, 0, 0.2) !important;
    color: #ff6e00 !important;
    transform: translateX(5px);
  }

  .main-menu-container .sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    top: -10px !important;
    transform: none;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }

  .main-menu-container .sub-menu .top-menu > li > .sub-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .main-menu-container .sub-menu .top-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    left: 125%;
    top: 0;
    
    z-index: 1002;
  }

  .main-menu-container .sub-menu .sub-menu .top-menu > li > a {
    color: #fff !important;
    padding: 8px 20px;
    display: block;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    border-radius: 0;
    background: transparent;
    font-family: inherit;
  }

  .main-menu-container .sub-menu .sub-menu .top-menu > li > a:hover {
    background: rgba(255, 110, 0, 0.2) !important;
    color: #ff6e00 !important;
    transform: translateX(5px);
  }
}

/* Flecha dropdown */
.dropdown-arrow {
  color: #fff;
  font-size: 0.85em;
  margin-left: 6px;
  vertical-align: top;
  transition: transform 0.2s;
}

@media (min-width: 768px) {
  .main-menu-container .top-menu > li:hover > a .dropdown-arrow {
    transform: rotate(180deg);
  }
}

/* ============================================================
   Ãtem destacado "Personaliza!" â€” estilo lujoso premium
   ============================================================ */
#top-menu > li#personaliza {
  position: relative;
}

#top-menu > li#personaliza > a.menu-highlight {
  position: relative;
  display: inline-block;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  text-decoration: none;
  background: transparent;
  box-shadow:
    0 0 12px rgba(212, 175, 110, 0.3),
    0 0 30px rgba(212, 175, 110, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

/* Texto con gradiente holográfico */
#top-menu > li#personaliza > a.menu-highlight .menu-highlight-label {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #06b6d4 0%, #a855f7 30%, #ec4899 50%, #a855f7 70%, #06b6d4 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldTextShine 3s ease infinite;
  text-shadow: none;
}

/* Anillo dorado brillante (pseudo-elemento detrÃ¡s) */
#top-menu > li#personaliza > a.menu-highlight::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 18px;
  padding: 3px;

  background-size: 400% 400%;
  animation: goldBorderFlow 2.5s ease infinite;
  z-index: -1;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.9)) drop-shadow(0 0 16px rgba(255, 215, 0, 0.4));
}

/* Brillo que recorre el Ã­tem (efecto "shimmer" mÃ¡s agresivo) */
#top-menu > li#personaliza > a.menu-highlight::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 40%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.6) 60%,
    transparent 100%
  );
  transform: skewX(-25deg);
  animation: goldShimmer 2.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes goldBorderFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes goldShimmer {
  0%   { left: -100%; }
  50%  { left: 150%; }
  100% { left: 150%; }
}

@keyframes goldBgPulse {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

@keyframes goldTextShine {
  0%   { background-position: 0% center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0% center; }
}

#top-menu > li#personaliza > a.menu-highlight:hover,
#top-menu > li#personaliza > a.menu-highlight:focus {
  box-shadow:
    0 0 25px rgba(6, 182, 212, 0.9),
    0 0 50px rgba(168, 85, 247, 0.5),
    0 0 80px rgba(236, 72, 153, 0.2);
}

/* ============================================================
   Resto del menÃº principal â€” hover con subrayado animado
   (solo desktop; en mÃ³vil se usa click / .submenu-open)
   ============================================================ */
@media (min-width: 768px) {
  #top-menu > li > a.dropdown-item {
    position: relative;
    transition: color 0.2s ease;
  }

  /* LÃ­nea dorada que crece desde el centro al hacer hover */
  #top-menu > li > a.dropdown-item::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2.5px;
    border-radius: 2px;
    background: linear-gradient(90deg, #b79768, #e1c699, #b79768);
    transition: width 0.25s ease;
  }

  #top-menu > li > a.dropdown-item:hover {
    color: #8d6e41;
  }

  #top-menu > li > a.dropdown-item:hover::after {
    width: 80%;
  }

  /* ============================================================
     SubmenÃºs â€” tarjetas con sombra suave y hover dorado
     ============================================================ */
  #top-menu .sub-menu .dropdown-item {
    padding: 9px 16px;
    font-size: 0.95rem;
    line-height: 1.4;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: background-color 0.18s ease, border-color 0.18s ease, padding-left 0.18s ease, color 0.18s ease;
  }

  #top-menu .sub-menu .dropdown-item:hover {
    background: linear-gradient(90deg, #faf3e7 0%, #f5efe6 100%);
    border-left-color: #b79768;
    padding-left: 20px;
    color: #5d4037;
  }

  /* Flecha de submenÃº */
  #top-menu .dropdown-arrow {
    font-size: 0.75rem;
    opacity: 0.55;
    margin-left: 6px;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  #top-menu .dropdown-item:hover .dropdown-arrow {
    opacity: 1;
    transform: translateX(2px);
  }
}

/* ============================================================
    Accesibilidad: foco visible para navegaciÃ³n por teclado
    ============================================================ */
#top-menu a:focus-visible {
  outline: 2px solid #b79768;
  outline-offset: 2px;
  border-radius: 6px;
}

/* ============================================================
    MenÃº colapsable en mÃ³vil (hamburguesa + drawer lateral)
    - BotÃ³n hamburguesa visible solo en mÃ³vil
    - Drawer fijo a la izquierda, se desliza con .menu-open
    - SubmenÃºs en acordeÃ³n con .submenu-open
    ============================================================ */

/* --- BotÃ³n hamburguesa (oculto en desktop) --- */
.mobile-menu-toggle {
  display: none;
}

/* --- Contacto: oculto en desktop, solo visible en mÃ³vil --- */
.mobile-menu-contact {
  display: none;
}

/* --- Overlay (oculto en desktop) --- */
.mobile-menu-overlay {
  display: none;
}

/* --- BotÃ³n de cierre (oculto en desktop) --- */
.mobile-menu-close {
  display: none;
}

@media (max-width: 767px) {

  /* ============================================================
     BotÃ³n hamburguesa
     ============================================================ */
  .mobile-menu-toggle-wrapper {
    display: inline-block;
    vertical-align: middle;
    padding: 0 8px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    margin: 0;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
  }

  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
  }

  .mobile-menu-toggle-bar {
    display: block;
    width: 22px;
    height: 2.5px;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  /* Estado abierto: las 3 barras forman una X */
  .mobile-menu-toggle.menu-open .mobile-menu-toggle-bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .mobile-menu-toggle.menu-open .mobile-menu-toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.menu-open .mobile-menu-toggle-bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* ============================================================
     Drawer lateral (panel fijo a la izquierda)
     - Oculto por defecto (translateX(-100%))
     - Se muestra con .menu-open (translateX(0))
     ============================================================ */
  .main-menu-container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1041;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: linear-gradient(180deg, #1f2537 0%, #000000 100%);
    border-right: 1px solid rgba(6, 182, 212, 0.4);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.6);
    padding: 100px 12px 24px;
    box-sizing: border-box;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: block;
    margin: 0;
    text-align: left;
  }

  .main-menu-container.menu-open {
    transform: translateX(0);
  }

  /* ============================================================
     BotÃ³n de cierre (X) â€” fijo en la esquina superior derecha
     ============================================================ */
  .mobile-menu-close {
    display: none;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1042;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
  }

  .mobile-menu-close.menu-open {
    display: inline-flex;
    top: 60px;
  }

  .mobile-menu-close:hover,
  .mobile-menu-close:focus {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.7);
  }

  .mobile-menu-close-bar {
    display: block;
    width: 20px;
    height: 2.5px;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.25s ease;
  }

  /* Las 2 barras forman una X */
  .mobile-menu-close-bar:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
  }
  .mobile-menu-close-bar:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }

  /* ============================================================
     Overlay oscuro que cubre el resto de la pantalla
     ============================================================ */
  .mobile-menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .mobile-menu-overlay.overlay-open {
    opacity: 1;
    pointer-events: auto;
  }

  /* ============================================================
     Lista principal dentro del drawer
     ============================================================ */
  .main-menu-container .top-menu {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  /* ============================================================
     Ãtems de primer nivel â€” apilados verticalmente
     ============================================================ */
  .main-menu-container .top-menu > li {
    display: block;
    width: 100%;
    position: relative;
  }

  .main-menu-container .top-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    color: #fff;
    font-family: LemonMilk, sans-serif;
    font-size: 1.05rem;
    padding: 14px 16px;
    border-radius: 8px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    overflow-wrap: break-word;
    word-break: break-word;
    transition: background-color 0.18s ease, border-color 0.18s ease;
  }

  .main-menu-container .top-menu > li > a > span:not(.collapse-icons) {
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .main-menu-container .top-menu > li > a:active {
    background: rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.4);
    color: #06b6d4;
  }

  /* "Personaliza!" en el drawer: estilo lujoso premium */
  .main-menu-container #top-menu > li#personaliza > a.menu-highlight {
      margin: 0 0 8px;
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent !important;
      border: none !important;
      border-radius: 16px;
      padding: 10px 22px;
      font-weight: 800;
      font-size: 1.08rem;
      letter-spacing: 0.5px;
      box-shadow:
        0 0 12px rgba(6, 182, 212, 0.3),
        0 0 30px rgba(168, 85, 247, 0.15) !important;
      overflow: hidden;
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

  .main-menu-container #top-menu > li#personaliza > a.menu-highlight .menu-highlight-label {
      background: linear-gradient(135deg, #06b6d4 0%, #a855f7 30%, #ec4899 50%, #a855f7 70%, #06b6c4 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: goldTextShine 3s ease infinite;
      text-shadow: none;
    }

  /* Anillo dorado brillante (pseudo-elemento detras) */
  .main-menu-container #top-menu > li#personaliza > a.menu-highlight::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 18px;
    padding: 3px;
    background-size: 400% 400%;
    animation: goldBorderFlow 2.5s ease infinite;
    z-index: -1;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.9)) drop-shadow(0 0 16px rgba(255, 215, 0, 0.4));
  }

  /* Shimmer en mÃ³vil */
  .main-menu-container #top-menu > li#personaliza > a.menu-highlight::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
      100deg,
      transparent 0%,
      rgba(255, 255, 255, 0.6) 40%,
      rgba(255, 255, 255, 0.9) 50%,
      rgba(255, 255, 255, 0.6) 60%,
      transparent 100%
    );
    transform: skewX(-25deg);
    animation: goldShimmer 2.2s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
  }

  /* Ocultar el icono de expansiÃ³n (+/âˆ’) en el botÃ³n Personaliza en mÃ³vil */
  .main-menu-container #top-menu > li#personaliza > a.menu-highlight .collapse-icons {
    display: none;
  }

  /* ============================================================
     Icono de expansiÃ³n (+/âˆ’)
     ============================================================ */
  .main-menu-container .top-menu > li > a .collapse-icons {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 8px;
  }

  .main-menu-container .top-menu > li > a .collapse-icons .material-icons {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    line-height: 1;
  }

  .main-menu-container .top-menu > li > a .collapse-icons .material-icons.remove {
    display: none;
  }

  .main-menu-container .top-menu > li.submenu-open > a .collapse-icons .material-icons.add {
    display: none;
  }

  .main-menu-container .top-menu > li.submenu-open > a .collapse-icons .material-icons.remove {
    display: inline-block;
  }

  /* ============================================================
     SubmenÃºs â€” acordeÃ³n con max-height
     - position: static anula .popover (position:absolute) de Bootstrap
     - overflow: hidden SIEMPRE para que la animaciÃ³n de max-height funcione
     ============================================================ */
  .main-menu-container .sub-menu,
  .main-menu-container .sub-menu .sub-menu {
    position: static;
    display: block;
    max-height: 0;
    overflow: hidden;
    visibility: visible;
    opacity: 1;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .main-menu-container .top-menu > li.submenu-open > .sub-menu,
  .main-menu-container .sub-menu .top-menu > li.submenu-open > .sub-menu {
    max-height: 2000px;
    width: 100%;
  }

  /* ============================================================
     SubmenÃº â€” contenedor con guÃ­a de indentaciÃ³n
     ============================================================ */
  .main-menu-container .sub-menu .top-menu {
    padding: 4px 0 4px 14px;
    margin-left: 0;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
  }

  .main-menu-container .sub-menu .sub-menu .top-menu {
    padding: 4px 0 4px 12px;
    margin-left: 0;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
  }

  /* ============================================================
     Ãtems de submenÃº (nivel 1)
     ============================================================ */
  .main-menu-container .sub-menu ul[data-depth="1"] > li,
  .main-menu-container .sub-menu ul[data-depth="2"] > li {
    float: none !important;
    margin: 0 0 2px !important;
    min-width: 0;
  }

  .main-menu-container .sub-menu .top-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 12px;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 6px;
    min-width: 0;
    box-sizing: border-box;
    width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    transition: background-color 0.18s ease, color 0.18s ease;
  }

  .main-menu-container .sub-menu .top-menu > li > a .collapse-icons {
    margin-left: auto;
  }

  .main-menu-container .sub-menu .top-menu > li > a:active {
    background: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
  }

  /* ============================================================
     Ãtems de submenÃº (nivel 2)
     ============================================================ */
  .main-menu-container .sub-menu .sub-menu .top-menu > li {
    margin-bottom: 2px;
    min-width: 0;
  }

  .main-menu-container .sub-menu .sub-menu .top-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: rgba(255, 255, 255, 0.65);
    padding: 8px 12px;
    font-size: 0.85rem;
    min-width: 0;
    box-sizing: border-box;
    width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .main-menu-container .sub-menu .sub-menu .top-menu > li > a:active {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
  }

  /* ============================================================
     Icono de expansiÃ³n en submenÃºs
     ============================================================ */
  .main-menu-container .sub-menu .top-menu > li > a .collapse-icons {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 8px;
  }

  .main-menu-container .sub-menu .top-menu > li > a .collapse-icons .material-icons {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    line-height: 1;
  }

  .main-menu-container .sub-menu .top-menu > li > a .collapse-icons .material-icons.remove {
    display: none;
  }

  .main-menu-container .sub-menu .top-menu > li.submenu-open > a .collapse-icons .material-icons.add {
    display: none;
  }

  .main-menu-container .sub-menu .top-menu > li.submenu-open > a .collapse-icons .material-icons.remove {
    display: inline-block;
  }

  /* ============================================================
     Contacto al pie del panel
     ============================================================ */
  .mobile-menu-contact {
    display: block;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(6, 182, 212, 0.4);
  }

  .mobile-menu-contact-title {
    color: #06b6d4;
    font-family: LemonMilk, sans-serif;
    font-size: 1.05rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 10px;
  }

  .mobile-menu-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-menu-contact-list li {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 6px;
  }

  .mobile-menu-contact-label {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
  }

  .mobile-menu-contact-list a {
    color: #06b6d4;
    text-decoration: none;
  }

  .mobile-menu-contact-list a:hover {
    color: #0891b2;
    text-decoration: underline;
  }
}

/* ============================================================
   Respeto a preferencias de movimiento reducido (accesibilidad)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  #top-menu > li#personaliza > a.menu-highlight,
  #top-menu > li#personaliza > a.menu-highlight::before,
  #top-menu > li#personaliza > a.menu-highlight::after,
  #top-menu > li#personaliza > a.menu-highlight .menu-highlight-label {
    animation: none;
  }
  #top-menu > li#personaliza > a.menu-highlight::after {
    display: none;
  }
}

