/* ==========================================================================
   LICORES COSTA / SISTEMA DE DESIGN TOKENS Y ESTILOS GLOBALES
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. REGISTRO DE TIPOGRAFÍAS LOCALES (@font-face)
   -------------------------------------------------------------------------- */

/* NOURD FONT (Marca Paraguas) */
@font-face {
  font-family: 'Nourd';
  src: url('../assets/fonts/PARAGUAS/Nourd Font/nourd_light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nourd';
  src: url('../assets/fonts/PARAGUAS/Nourd Font/nourd_regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nourd';
  src: url('../assets/fonts/PARAGUAS/Nourd Font/nourd_medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nourd';
  src: url('../assets/fonts/PARAGUAS/Nourd Font/nourd_semi_bold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nourd';
  src: url('../assets/fonts/PARAGUAS/Nourd Font/nourd_bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nourd';
  src: url('../assets/fonts/PARAGUAS/Nourd Font/nourd_heavy.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* TAN PEARL (Línea Exclusiva / Alto Impacto) */
@font-face {
  font-family: 'Tan Pearl';
  src: url('../assets/fonts/EXCLUSIVO/TAN-Pearl-Font/TAN-Pearl-Font/TAN-Pearl-Regular.woff2') format('woff2'),
       url('../assets/fonts/EXCLUSIVO/TAN-Pearl-Font/TAN-Pearl-Font/TAN-Pearl-Regular.otf') format('opentype'),
       url('../assets/fonts/EXCLUSIVO/TAN-Pearl-Font/TAN-Pearl-Font/TAN-Pearl-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* CORMORANT SC (Línea Exclusiva / Encabezados) */
@font-face {
  font-family: 'Cormorant SC';
  src: url('../assets/fonts/EXCLUSIVO/Cormorant SC/CormorantSC-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant SC';
  src: url('../assets/fonts/EXCLUSIVO/Cormorant SC/CormorantSC-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant SC';
  src: url('../assets/fonts/EXCLUSIVO/Cormorant SC/CormorantSC-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant SC';
  src: url('../assets/fonts/EXCLUSIVO/Cormorant SC/CormorantSC-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* LATO (Línea Exclusiva / Lectura Continua) */
@font-face {
  font-family: 'Lato';
  src: url('../assets/fonts/EXCLUSIVO/Lato/Lato-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../assets/fonts/EXCLUSIVO/Lato/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../assets/fonts/EXCLUSIVO/Lato/Lato-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* DYNAMIC TROOPER (Línea Urbana / Alto Impacto) */
@font-face {
  font-family: 'Dynamic Trooper';
  src: url('../assets/fonts/URBANO/Dynamix Trooper/dynamictrooper.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* FUGAZ ONE (Línea Urbana / Encabezados) */
@font-face {
  font-family: 'Fugaz One';
  src: url('../assets/fonts/URBANO/Fugaz One/FugazOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* SQUARE721 CN BT (Línea Urbana / Lectura Continua) */
@font-face {
  font-family: 'Square721 Cn BT';
  src: url('../assets/fonts/URBANO/Square721 Cn BT Roman/Square721 Cn BT Roman.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Square721 Cn BT';
  src: url('../assets/fonts/URBANO/Square721 Cn BT Roman/Square721 Cn BT Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* --------------------------------------------------------------------------
   2. SISTEMA DE DESIGN TOKENS INDEXADOS (:root)
   -------------------------------------------------------------------------- */
:root {
  /* --- PALETAS DE COLOR --- */
  /* Marca Matriz (Licores Costa) */
  --costa-blue-dark: #1B2A3C;
  --costa-blue-slate: #4B6C8C;
  --costa-bone: #f8f5ef;
  --costa-black: #0b0c0c;

  /* Línea Exclusiva (Colección Privada) */
  --excl-bg-anis: #19201D;
  --excl-bg-quebranto: #191A20;
  --excl-bg-ron: #1F1A19;
  --excl-bg-vinos-tranq: #20181A;
  --excl-bg-vinos-gas: #1D201A;
  --excl-text-bone: #f5f0e7;
  --excl-gold: #C4A850;
  --excl-silver: #B8BDC7;

  /* Línea Urbana (LC Saborizado) */
  --urb-pink: #C83885;
  --urb-orange: #D98835;
  --urb-yellow: #F5D321;
  --urb-green: #5BA778;
  --urb-purple: #4F5CA2;
  --urb-brown: #A94D21;
  --urb-white: #FFFFFF;
  --urb-black: #0C0D0D;
  --urb-gray-dark: #2A2A2A;
  --urb-gray-mid: #5C5C5C;
  --urb-gray-light: #B0B0B0;

  /* --- FAMILIAS TIPOGRÁFICAS --- */
  --font-paraguas: 'Nourd', sans-serif;
  --font-excl-display: 'Tan Pearl', serif;
  --font-excl-heading: 'Cormorant SC', serif;
  --font-excl-body: 'Lato', sans-serif;
  --font-urb-display: 'Dynamic Trooper', sans-serif;
  --font-urb-heading: 'Fugaz One', sans-serif;
  --font-urb-body: 'Square721 Cn BT', sans-serif;

  /* --- ESCALA DE GROSORES TIPOGRÁFICOS --- */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-heavy: 900;

  /* --- ESCALA TIPOGRÁFICA MODULAR FLUIDA --- */
  --text-xs: 0.75rem;                       /* 12px */
  --text-sm: 0.85rem;                       /* 13.6px */
  --text-base: 1rem;                        /* 16px */
  --text-md: 1.12rem;                       /* 18px */
  --text-lg: 1.35rem;                       /* 21.6px */
  --text-xl: 1.65rem;                       /* 26.4px */
  --text-2xl: clamp(1.8rem, 3.2vw, 2.8rem); /* 28px - 45px */
  --text-hero: clamp(2.4rem, 4.8vw, 4.2rem);/* 38px - 67px */

  /* --- INTERLINEADOS --- */
  --lh-tight: 1.12;
  --lh-snug: 1.25;
  --lh-normal: 1.6;
  --lh-relaxed: 1.75;

  /* --- INTERLETRAJE (LETTER SPACING) --- */
  --ls-tight: -0.5px;
  --ls-normal: 0;
  --ls-wide: 1px;
  --ls-wider: 2px;
  --ls-widest: 3px;

  /* --- ESCALA DE ESPACIADOS --- */
  --space-xs: 0.5rem;   /* 8px */
  --space-sm: 1rem;     /* 16px */
  --space-md: 1.5rem;   /* 24px */
  --space-lg: 2.5rem;   /* 40px */
  --space-xl: 4.5rem;   /* 72px */
  --space-2xl: 7rem;    /* 112px */

  /* --- RADIOS Y BORDES --- */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-full: 9999px;

  /* --- TRANSICIONES Y SOMBRAS --- */
  --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
  --shadow-card: 0 16px 36px rgba(0, 0, 0, 0.6);
  --shadow-glow-blue: 0 0 20px rgba(74, 107, 139, 0.3);
}


/* --------------------------------------------------------------------------
   3. RESET GENERAL Y CONTENEDOR BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  min-height: 100vh;
  line-height: var(--lh-normal);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}


/* --------------------------------------------------------------------------
   4. COMPONENTES GLOBALES (Age Gate, WhatsApp, Puntos de Venta)
   -------------------------------------------------------------------------- */
/* AGE GATE (+18) */

/* Evita el parpadeo instantáneo al recargar si ya se confirmó edad */
html.age-verified .age-gate-overlay {
  display: none !important;
}

.age-gate-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(12, 12, 12, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.age-gate-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-gate-card {
  background: #14161B;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-sm);
  max-width: 460px;
  width: 100%;
  text-align: center;
  color: var(--costa-bone);
  box-shadow: var(--shadow-card);
}

.age-gate-logo {
  height: 60px;
  margin: 0 auto var(--space-md) auto;
}

.age-gate-card .gate-eyebrow {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--costa-blue-slate);
  margin-bottom: var(--space-xs);
  font-weight: var(--fw-bold);
}

.age-gate-card h2 {
  font-size: var(--text-xl);
  font-weight: var(--fw-heavy);
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.age-gate-card p {
  font-size: var(--text-sm);
  color: rgba(250, 245, 239, 0.75);
  margin-bottom: var(--space-lg);
  font-weight: var(--fw-light);
}

.age-gate-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
}

.btn-gate {
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-xs);
  font-weight: var(--fw-bold);
  font-size: var(--text-sm);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-gate-primary {
  background: var(--costa-bone);
  color: var(--costa-black);
}

.btn-gate-primary:hover {
  background: var(--costa-blue-slate);
  color: var(--costa-bone);
}

.btn-gate-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--costa-bone);
}

.btn-gate-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* BOTÓN FLOTANTE DE WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-float .wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--costa-black);
  color: var(--costa-bone);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-xs);
  font-size: var(--text-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
}

.whatsapp-float .wa-icon-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* BUSCADOR DE TIENDAS / PUNTOS DE VENTA (GLOBAL) */
.store-locator-box {
  background: rgba(18, 22, 28, 0.7);
  border: 1px solid rgba(74, 107, 139, 0.25);
  border-radius: var(--radius-sm);
  padding: var(--space-lg) var(--space-md);
  margin-top: var(--space-md);
}

.store-search-bar {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.store-search-bar input {
  flex: 1;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-xs);
  color: var(--costa-bone);
  font-size: var(--text-sm);
}

.store-search-bar input:focus {
  outline: none;
  border-color: var(--costa-blue-slate);
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

.store-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-md);
  border-radius: var(--radius-xs);
}

.store-card h4 {
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.store-card p {
  font-size: var(--text-sm);
  opacity: 0.7;
  margin-bottom: var(--space-sm);
  font-weight: var(--fw-light);
}

.store-badge {
  display: inline-block;
  font-size: var(--text-xs);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-xs);
  background: rgba(74, 107, 139, 0.2);
  border: 1px solid rgba(74, 107, 139, 0.4);
  color: var(--costa-bone);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  font-weight: var(--fw-semibold);
}

/* REDES SOCIALES Y LEGAL COMPARTIDO */
.footer-responsible {
  font-size: var(--text-xs);
  color: rgba(250, 245, 239, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-md);
  margin-top: var(--space-lg);
  text-align: center;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  font-weight: var(--fw-medium);
}

.social-links {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  background: rgba(74, 107, 139, 0.3);
  border-color: var(--costa-blue-slate);
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: var(--costa-bone);
}

/* ANIMACIONES REVEAL ON SCROLL */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   8. COMPONENTES RESPONSIVOS GLOBALES: HAMBURGUESA Y MENÚ LATERAL (DRAWER)
   -------------------------------------------------------------------------- */

/* Botón Hamburguesa (Oculto en escritorio, visible en móviles <= 900px) */
.nav-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav-toggle-btn .bar {
  width: 100%;
  height: 2px;
  background-color: var(--costa-bone);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Fondo oscurecido al abrir menú */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Panel Lateral Deslizante */
.mobile-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  max-width: 340px;
  height: 100%;
  background: #111315;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-smooth);
  overflow-y: auto;
}

.mobile-drawer-overlay.active .mobile-drawer-content {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-title {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  font-weight: var(--fw-bold);
  opacity: 0.7;
}

.drawer-close-btn {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--costa-bone);
  cursor: pointer;
  padding: 0.2rem 0.5rem;
}

.drawer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.drawer-nav-list li a {
  font-size: var(--text-md);
  display: block;
  padding: 0.4rem 0;
  transition: all 0.2s ease;
}

.drawer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0.8rem 0;
}

.drawer-sub-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.5;
  margin-bottom: 0.5rem;
  display: block;
}

body.drawer-open {
  overflow: hidden;
}

/* Mostrar botón hamburguesa en móviles */
@media (max-width: 900px) {
  .nav-toggle-btn {
    display: flex;
  }
}

/* --------------------------------------------------------------------------
   9. BUSCADOR RESPONSIVO CON LUPA EN MÓVILES (ANDROID / COMPACTO)
   -------------------------------------------------------------------------- */
.store-btn-responsive {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.store-btn-responsive .search-icon-svg {
  display: none;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 650px) {
  .store-search-bar {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.4rem !important;
  }
  .store-btn-responsive {
    padding: 0.85rem 1.15rem !important;
    width: auto !important;
  }
  .store-btn-responsive .btn-text {
    display: none;
  }
  .store-btn-responsive .search-icon-svg {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   10. MAPA INTERACTIVO CLARO (LEAFLET)
   -------------------------------------------------------------------------- */
.map-view-frame {
  height: 380px;
  width: 100%;
  border-radius: var(--radius-xs);
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #E5E3DF;
  z-index: 10;
}

/* Ventanas emergentes (Popups) con fondo claro y texto nítido */
.leaflet-popup-content-wrapper {
  background: #FFFFFF !important;
  color: #1A1A1A !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  border-radius: 4px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
  padding: 0.4rem !important;
}

.leaflet-popup-tip {
  background: #FFFFFF !important;
}

.map-popup-box h5 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.map-popup-box p {
  font-size: 0.82rem;
  color: #4A4A4A !important;
  margin-bottom: 0.4rem;
}

.map-popup-box span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.2rem 0.55rem;
  background: #F0F0F0;
  color: #333333 !important;
  border-radius: 2px;
  display: inline-block;
}

/* Pines vectoriales */
.custom-map-pin {
  background: none;
  border: none;
}

.custom-map-pin svg {
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.45));
  transition: transform 0.25s ease;
}

.custom-map-pin:hover svg {
  transform: scale(1.2) translateY(-4px);
}

/* --------------------------------------------------------------------------
   11. MOTOR CROMÁTICO CÍCLICO PARA IDENTIDAD URBANA (LC SABORIZADO)
   -------------------------------------------------------------------------- */
@keyframes urbanCycleColor {
  0%, 100% { color: #C83885; } /* Rosa */
  17% { color: #D98835; }      /* Naranja */
  34% { color: #F5D321; }      /* Amarillo */
  51% { color: #5BA778; }      /* Verde */
  68% { color: #4F5CA2; }      /* Morado */
  85% { color: #A94D21; }      /* Marrón */
}

@keyframes urbanCycleBorder {
  0%, 100% { border-color: #C83885; }
  17% { border-color: #D98835; }
  34% { border-color: #F5D321; }
  51% { border-color: #5BA778; }
  68% { border-color: #4F5CA2; }
  85% { border-color: #A94D21; }
}

@keyframes urbanCycleBgSubtle {
  0%, 100% { background-color: rgba(200, 56, 133, 0.14); }
  17% { background-color: rgba(217, 136, 53, 0.14); }
  34% { background-color: rgba(245, 211, 33, 0.14); }
  51% { background-color: rgba(91, 167, 120, 0.14); }
  68% { background-color: rgba(79, 92, 162, 0.14); }
  85% { background-color: rgba(169, 77, 33, 0.14); }
}

@keyframes urbanGradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Enlace animado en Menús Laterales Móviles */
.drawer-nav-list a.drawer-link-urbana {
  animation: urbanCycleColor 10s linear infinite;
  font-weight: var(--fw-bold);
}