/* ═══════════════════════════════════════════════════════════════════════════
   EmprenZona — Versión Mejorada CSS  v2
   Dirección de arte: cartelera viva, feria urbana, festival local
   Namespace: .vm-*
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Tokens ────────────────────────────────────────────────────────────────── */
:root {
    --vm-bg:           #faf9f7;
    --vm-surface:      #ffffff;
    --vm-surface-warm: #fdf6ee;
    --vm-dark:         #0c0e1a;
    --vm-dark-mid:     #13162b;
    --vm-dark-soft:    #1c2040;

    --vm-text:         #0d1117;
    --vm-text-soft:    #5a6275;
    --vm-text-muted:   #9ba3b5;
    --vm-text-inv:     rgba(255,255,255,.92);
    --vm-text-inv-soft:rgba(255,255,255,.6);

    --vm-primary:      #5b5ceb;
    --vm-primary-dark: #3d3ec9;
    --vm-primary-glow: rgba(91,92,235,.35);
    --vm-primary-pale: rgba(91,92,235,.1);

    /* Acentos festival */
    --vm-pink:         #ff4d8f;
    --vm-pink-pale:    rgba(255,77,143,.12);
    --vm-orange:       #ff7a2a;
    --vm-orange-pale:  rgba(255,122,42,.12);
    --vm-yellow:       #f5b800;
    --vm-yellow-pale:  rgba(245,184,0,.12);
    --vm-cyan:         #00c2c7;
    --vm-cyan-pale:    rgba(0,194,199,.12);
    --vm-green:        #00b67a;
    --vm-green-pale:   rgba(0,182,122,.12);
    --vm-violet:       #9b4dff;
    --vm-violet-pale:  rgba(155,77,255,.12);
    --vm-coral:        #ff5252;

    /* UI */
    --vm-border:       rgba(13,17,23,.09);
    --vm-border-dark:  rgba(255,255,255,.1);
    --vm-shadow-xs:    0 2px 8px rgba(0,0,0,.06);
    --vm-shadow:       0 4px 20px rgba(0,0,0,.1);
    --vm-shadow-md:    0 8px 32px rgba(0,0,0,.14);
    --vm-shadow-lg:    0 20px 56px rgba(0,0,0,.2);
    --vm-shadow-glow-pink:   0 8px 32px rgba(255,77,143,.35);
    --vm-shadow-glow-violet: 0 8px 32px rgba(91,92,235,.35);

    --vm-r:            14px;
    --vm-r-lg:         22px;
    --vm-r-xl:         30px;
    --vm-r-pill:       999px;

    --vm-shell:        1200px;
    --vm-nav-h:        62px;
}

/* ── Body / reset ──────────────────────────────────────────────────────────── */
.vm-body {
    background: var(--vm-bg);
    color: var(--vm-text);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.vm-skip-link {
    position: absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.vm-skip-link:focus {
    position:fixed; top:8px; left:8px; width:auto; height:auto;
    padding:10px 18px; border-radius:8px;
    background:var(--vm-primary); color:#fff; font-weight:700; z-index:9999;
}

/* ── Shell ─────────────────────────────────────────────────────────────────── */
.vm-shell {
    max-width: var(--vm-shell);
    margin: 0 auto;
    padding: 0 24px;
}

/* ══ HEADER ════════════════════════════════════════════════════════════════════ */
.vm-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--vm-nav-h);
    background: rgba(12,14,26,.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.07);
    transition: box-shadow .2s;
}

.vm-header.is-scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,.4);
}

.vm-header-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    height: 100%;
}

.vm-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.vm-brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--vm-pink), var(--vm-violet));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .92rem;
    box-shadow: 0 4px 14px rgba(255,77,143,.4);
}

.vm-brand strong {
    font-size: .98rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.02em;
}

/* Backward-compat for old brand-copy markup */
.vm-brand-copy strong { display: block; font-size: .98rem; font-weight: 900; color: #fff; letter-spacing: -.02em; line-height: 1.1; }
.vm-brand-copy small  { display: block; font-size: .65rem; font-weight: 700; color: var(--vm-pink); text-transform: uppercase; letter-spacing: .08em; }

/* Global search in header */
.vm-gsearch {
    flex: 1;
    max-width: 300px;
    position: relative;
    display: flex;
    align-items: center;
}

.vm-gsearch-icon {
    position: absolute;
    left: 12px;
    color: rgba(255,255,255,.3);
    font-size: .8rem;
    pointer-events: none;
}

.vm-gsearch-input {
    width: 100%;
    padding: 8px 14px 8px 34px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--vm-r-pill);
    color: #fff;
    font-size: .84rem;
    outline: none;
    transition: background .15s, border-color .15s;
}
.vm-gsearch-input::placeholder { color: rgba(255,255,255,.3); }
.vm-gsearch-input:focus { background: rgba(255,255,255,.11); border-color: rgba(255,77,143,.5); }

/* Mobile toggle */
.vm-menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.7);
    font-size: .95rem;
    padding: 7px 11px;
    border-radius: 9px;
    cursor: pointer;
    flex-shrink: 0;
}

/* Nav backdrop */
.vm-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 99;
    opacity: 0;
    transition: opacity .18s;
}
.vm-nav-backdrop.is-active { opacity: 1; }

.vm-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
}

/* Shared nav link style (used by vm-nav a AND vm-nav-link) */
.vm-nav a,
.vm-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 13px;
    border-radius: 10px;
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .15s, background .15s;
    white-space: nowrap;
}
.vm-nav a:hover, .vm-nav-link:hover, .vm-nav-link.is-active { color: #fff; background: rgba(255,255,255,.08); }

/* Dropdown "Más" */
.vm-nav-more { position: relative; }
.vm-nav-more summary { list-style: none; cursor: pointer; }
.vm-nav-more summary::-webkit-details-marker { display: none; }

.vm-nav-more-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 210px;
    background: #1a1d35;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--vm-r);
    padding: 6px;
    box-shadow: var(--vm-shadow-lg);
    z-index: 200;
}

.vm-nav-more-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: color .12s, background .12s;
}
.vm-nav-more-list a:hover { color: #fff; background: rgba(255,255,255,.07); }

/* Account menu */
.vm-account-menu { position: relative; }
.vm-account-menu summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: 10px; font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.6); transition: color .15s, background .15s; }
.vm-account-menu summary::-webkit-details-marker { display: none; }
.vm-account-menu summary:hover { color: #fff; background: rgba(255,255,255,.08); }
.vm-account-label { display: none; }

.vm-account-list {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 230px;
    background: #1a1d35;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--vm-r);
    padding: 6px;
    box-shadow: var(--vm-shadow-lg);
    z-index: 200;
}
.vm-account-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: .84rem;
    font-weight: 600;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: color .12s, background .12s;
}
.vm-account-list a:hover { color: #fff; background: rgba(255,255,255,.07); }
.vm-account-email { font-size: .78rem; color: rgba(255,255,255,.3); padding: 6px 12px 2px; margin: 0; }
.vm-account-role  { font-size: .75rem; color: rgba(255,255,255,.25); padding: 0 12px 8px; margin: 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.vm-role-chip { display: inline-flex; align-items: center; padding: 1px 7px; border-radius: 99px; background: rgba(255,77,143,.18); color: var(--vm-pink); font-size: .72rem; font-weight: 800; }

/* Publish CTA in header — smaller on mobile */
.vm-header-publish { font-size: .82rem !important; padding: 9px 16px !important; }

.vm-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
}

.vm-header-link {
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255,255,255,.45);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 8px;
    transition: color .15s;
}
.vm-header-link:hover { color: rgba(255,255,255,.75); }

/* ══ HERO ══════════════════════════════════════════════════════════════════════
   Estética: escenario nocturno de evento, cartelera viva
   ═══════════════════════════════════════════════════════════════════════════ */
.vm-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 80px;
    background:
        radial-gradient(ellipse 55% 80% at 92% 5%,  rgba(255,77,143,.28), transparent 55%),
        radial-gradient(ellipse 45% 60% at 5%  75%,  rgba(91,92,235,.28),  transparent 55%),
        radial-gradient(ellipse 40% 50% at 55% 100%, rgba(255,122,42,.18), transparent 55%),
        radial-gradient(ellipse 30% 40% at 30% 20%,  rgba(0,194,199,.14),  transparent 50%),
        linear-gradient(160deg, #0c0e1a 0%, #111328 55%, #0d1022 100%);
    color: #fff;
}

/* Grain sutil */
.vm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.06'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Grid de puntos decorativo */
.vm-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.vm-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ── Eyebrow / kicker ─────────────────────────────────── */
.vm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--vm-r-pill);
    background: rgba(255,77,143,.18);
    border: 1px solid rgba(255,77,143,.3);
    color: #ff87b3;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.vm-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--vm-pink);
    animation: vmDot 2s infinite;
}

@keyframes vmDot { 0%,100% { opacity:1; } 50% { opacity:.3; } }

/* ── H1 con tratamiento de cartelera ─────────────────── */
.vm-hero-copy h1 {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 900;
    line-height: .97;
    letter-spacing: -0.045em;
    margin: 0 0 20px;
    color: #fff;
}

.vm-hero-copy h1 .vm-h1-accent {
    display: inline-block;
    background: linear-gradient(90deg, var(--vm-pink), var(--vm-orange), var(--vm-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vm-hero-copy h1 .vm-h1-underline {
    position: relative;
    display: inline-block;
}

.vm-hero-copy h1 .vm-h1-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--vm-cyan), var(--vm-violet));
    opacity: .8;
}

.vm-hero-copy p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.65);
    margin: 0 0 28px;
    max-width: 46ch;
    line-height: 1.65;
}

/* ── CTAs ──────────────────────────────────────────────── */
.vm-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.vm-btn-fest {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--vm-r-pill);
    font-size: .92rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: transform .15s, box-shadow .15s;
    letter-spacing: -.01em;
}

.vm-btn-fest:hover { transform: translateY(-2px); }

.vm-btn-fest--primary {
    background: linear-gradient(135deg, var(--vm-pink), #d4246e);
    color: #fff;
    box-shadow: 0 6px 22px rgba(255,77,143,.45);
}
.vm-btn-fest--primary:hover { box-shadow: 0 10px 30px rgba(255,77,143,.55); }

.vm-btn-fest--ghost {
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.85);
    backdrop-filter: blur(4px);
}
.vm-btn-fest--ghost:hover { background: rgba(255,255,255,.13); }

/* ── Stickers del hero ─────────────────────────────────── */
.vm-hero-stickers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    align-items: center;
}

.vm-hero-stickers span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: var(--vm-r-pill);
    font-size: .79rem;
    font-weight: 800;
    cursor: default;
    user-select: none;
    transition: transform .2s cubic-bezier(.22,.68,0,1.4), box-shadow .2s;
    box-shadow: var(--vm-shadow-xs);
}

.vm-hero-stickers span:hover { transform: rotate(0deg) scale(1.08) !important; box-shadow: var(--vm-shadow); }

/* Cada sticker tiene su color y rotación */
.vm-hero-stickers span:nth-child(1) { background:#fff7e6; color:#a16207; border:1px solid rgba(245,184,0,.3); transform:rotate(-2.5deg); }
.vm-hero-stickers span:nth-child(2) { background:#fff0f5; color:#9f1239; border:1px solid rgba(255,77,143,.3);  transform:rotate(1.5deg);  }
.vm-hero-stickers span:nth-child(3) { background:#eefdf5; color:#065f46; border:1px solid rgba(0,182,122,.3);  transform:rotate(-1deg);   }
.vm-hero-stickers span:nth-child(4) { background:#ecfeff; color:#164e63; border:1px solid rgba(0,194,199,.3);  transform:rotate(2deg);    }
.vm-hero-stickers span:nth-child(5) { background:#fdf2ff; color:#6b21a8; border:1px solid rgba(155,77,255,.3); transform:rotate(-1.5deg); }
.vm-hero-stickers span:nth-child(6) { background:#fff4ed; color:#9a3412; border:1px solid rgba(255,122,42,.3); transform:rotate(1deg);    }

/* ── Métricas de hero ──────────────────────────────────── */
.vm-hero-metrics {
    display: flex;
    gap: 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.vm-hero-metrics article {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-right: 20px;
    border-right: 1px solid rgba(255,255,255,.08);
    margin-right: 20px;
}
.vm-hero-metrics article:last-child { border-right: none; }

.vm-hero-metrics strong {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -.04em;
}

.vm-hero-metrics span {
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255,255,255,.45);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: 4px;
}

/* ── Hero stage (tarjeta spotlight) ───────────────────── */
.vm-hero-stage {
    position: relative;
}

.vm-hero-spotlight {
    background: linear-gradient(160deg, rgba(255,255,255,.1), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--vm-r-xl);
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 32px 64px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.1);
}

.vm-hero-spotlight-media {
    position: relative;
    overflow: hidden;
}

.vm-hero-spotlight-media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    filter: brightness(.92);
}

/* Gradient overlay en la imagen */
.vm-hero-spotlight-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
}

.vm-hero-badge-stack {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 2;
}

.vm-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 11px;
    border-radius: var(--vm-r-pill);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .02em;
    backdrop-filter: blur(4px);
}

.vm-badge--pink    { background: var(--vm-pink);   color: #fff; }
.vm-badge--orange  { background: var(--vm-orange);  color: #fff; }
.vm-badge--yellow  { background: var(--vm-yellow);  color: #1a1000; }
.vm-badge--cyan    { background: var(--vm-cyan);    color: #fff; }
.vm-badge--green   { background: var(--vm-green);   color: #fff; }
.vm-badge--violet  { background: var(--vm-violet);  color: #fff; }
.vm-badge--glass   { background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.2); color: #fff; }
.vm-badge--live    { background: #ef4444; color: #fff; animation: vmPulse 1.6s infinite; }

@keyframes vmPulse { 0%,100% { opacity:1; box-shadow:0 0 0 0 rgba(239,68,68,.5); } 50% { opacity:.8; box-shadow:0 0 0 5px rgba(239,68,68,0); } }

/* Texto superpuesto en la imagen */
.vm-hero-spotlight-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 14px 16px;
    z-index: 2;
}

.vm-hero-spotlight-overlay h2 {
    font-size: 1.05rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

.vm-hero-spotlight-overlay p {
    font-size: .75rem;
    color: rgba(255,255,255,.75);
    margin: 0;
}

.vm-hero-spotlight-body {
    padding: 16px 18px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.vm-hero-spotlight-kicker {
    font-size: .7rem;
    font-weight: 800;
    color: var(--vm-pink);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.vm-hero-spotlight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.vm-hero-spotlight-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .75rem;
    color: rgba(255,255,255,.65);
}

.vm-hero-spotlight-meta i { color: var(--vm-pink); width: 11px; }

.vm-hero-spotlight-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ── Chips flotantes de zona ───────────────────────────── */
.vm-hero-floating {
    position: absolute;
    right: -14px;
    top: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vm-floating-chip {
    background: rgba(255,255,255,.95);
    border-radius: 12px;
    padding: 8px 13px;
    box-shadow: var(--vm-shadow-md);
    min-width: 138px;
    border: 1px solid rgba(0,0,0,.06);
    transition: transform .2s;
}

.vm-floating-chip:nth-child(even) { transform: translateX(6px); }
.vm-floating-chip:nth-child(odd)  { transform: translateX(0); }
.vm-floating-chip:hover { transform: translateX(-4px) !important; }

.vm-floating-chip strong {
    display: block;
    font-size: .8rem;
    font-weight: 800;
    color: var(--vm-text);
}

.vm-floating-chip span {
    display: block;
    font-size: .7rem;
    color: var(--vm-primary);
    font-weight: 700;
}

/* ══ MAIN ══════════════════════════════════════════════════════════════════════ */
.vm-main { min-height: calc(100vh - var(--vm-nav-h)); }

/* ══ SECCIONES ════════════════════════════════════════════════════════════════ */
.vm-section {
    padding: 72px 0;
    position: relative;
}

.vm-section--warm {
    background: var(--vm-surface-warm);
}

.vm-section--off {
    background: #f4f3f0;
}

.vm-section--dark {
    background: var(--vm-dark);
    color: #fff;
}

.vm-section--soft {
    background: var(--vm-surface-warm);
}

/* Separador de ola entre secciones */
.vm-section--waved-top {
    margin-top: -2px;
}

.vm-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.vm-section-number {
    display: block;
    font-size: .65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--vm-text-muted);
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}

.vm-section-head h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    margin: 0 0 8px;
    line-height: 1.05;
}

.vm-section-head p {
    color: var(--vm-text-soft);
    margin: 0;
    font-size: .92rem;
}

.vm-section-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .85rem;
    font-weight: 800;
    color: var(--vm-primary);
    text-decoration: none;
    white-space: nowrap;
    padding: 9px 18px;
    border-radius: var(--vm-r-pill);
    border: 2px solid rgba(91,92,235,.25);
    letter-spacing: -.01em;
    transition: background .18s, border-color .18s, transform .15s;
}

.vm-section-link:hover {
    background: var(--vm-primary-pale);
    border-color: var(--vm-primary);
    transform: translateX(3px);
}

/* no ::after arrow — links already carry icons in markup */

/* Kicker tipo etiqueta */
.vm-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px 4px 10px;
    border-radius: var(--vm-r-pill);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 10px;
}

.vm-kicker--pink   { background: var(--vm-pink-pale);   color: var(--vm-pink);   border: 1px solid rgba(255,77,143,.2); }
.vm-kicker--orange { background: var(--vm-orange-pale);  color: var(--vm-orange); border: 1px solid rgba(255,122,42,.2); }
.vm-kicker--cyan   { background: var(--vm-cyan-pale);    color: #0e7490;         border: 1px solid rgba(0,194,199,.2); }
.vm-kicker--violet { background: var(--vm-violet-pale);  color: var(--vm-violet); border: 1px solid rgba(155,77,255,.2); }
.vm-kicker--green  { background: var(--vm-green-pale);   color: var(--vm-green);  border: 1px solid rgba(0,182,122,.2); }

/* ══ GRIDS DE CARDS ════════════════════════════════════════════════════════════ */
.vm-card-grid {
    display: grid;
    gap: 18px;
}

.vm-card-grid--fairs   { grid-template-columns: repeat(3, 1fr); }
.vm-card-grid--vendors { grid-template-columns: repeat(4, 1fr); }

/* ══ FAIR CARD — Estilo flyer / cartel de evento ════════════════════════════ */
.vm-fair-card {
    background: var(--vm-surface);
    border-radius: var(--vm-r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--vm-shadow);
    border: 1px solid rgba(0,0,0,.06);
    transition: transform .25s cubic-bezier(.22,.68,0,1.3), box-shadow .25s;
    position: relative;
}

.vm-fair-card:hover {
    transform: translateY(-8px) rotate(.3deg);
    box-shadow: var(--vm-shadow-lg);
}

/* Barra de color superior rotativa por posición */
.vm-fair-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    z-index: 2;
    border-radius: 0;
}

.vm-card-grid--fairs .vm-fair-card:nth-child(6n+1)::before { background: linear-gradient(90deg, var(--vm-pink), var(--vm-violet)); }
.vm-card-grid--fairs .vm-fair-card:nth-child(6n+2)::before { background: linear-gradient(90deg, var(--vm-orange), var(--vm-yellow)); }
.vm-card-grid--fairs .vm-fair-card:nth-child(6n+3)::before { background: linear-gradient(90deg, var(--vm-cyan), var(--vm-primary)); }
.vm-card-grid--fairs .vm-fair-card:nth-child(6n+4)::before { background: linear-gradient(90deg, var(--vm-yellow), var(--vm-orange)); }
.vm-card-grid--fairs .vm-fair-card:nth-child(6n+5)::before { background: linear-gradient(90deg, var(--vm-violet), var(--vm-pink)); }
.vm-card-grid--fairs .vm-fair-card:nth-child(6n+6)::before { background: linear-gradient(90deg, var(--vm-green), var(--vm-cyan)); }

/* Media — imagen dominante */
.vm-fair-card-media {
    position: relative;
    overflow: hidden;
}

.vm-fair-card-media img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform .45s cubic-bezier(.22,.68,0,1.2);
}

.vm-fair-card:hover .vm-fair-card-media img {
    transform: scale(1.08);
}

/* Gradient overlay — texto sobre imagen */
.vm-fair-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.2) 45%, transparent 75%);
}

/* Badges sobre imagen */
.vm-fair-card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    z-index: 3;
}

/* Zona badge — sticker girado */
.vm-fair-card-zone-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: .67rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--vm-r-pill);
    transform: rotate(1.5deg);
}

/* Info sobre imagen */
.vm-fair-card-img-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 12px 14px;
    z-index: 3;
}

.vm-fair-card-img-title {
    font-size: .97rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 6px rgba(0,0,0,.4);
}

/* Stamp de fecha */
.vm-fair-card-date-stamp {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: .73rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.01em;
}

.vm-card-grid--fairs .vm-fair-card:nth-child(6n+1) .vm-fair-card-date-stamp { background: var(--vm-pink); }
.vm-card-grid--fairs .vm-fair-card:nth-child(6n+2) .vm-fair-card-date-stamp { background: var(--vm-orange); }
.vm-card-grid--fairs .vm-fair-card:nth-child(6n+3) .vm-fair-card-date-stamp { background: var(--vm-primary); }
.vm-card-grid--fairs .vm-fair-card:nth-child(6n+4) .vm-fair-card-date-stamp { background: var(--vm-yellow); color: #1a1000; }
.vm-card-grid--fairs .vm-fair-card:nth-child(6n+5) .vm-fair-card-date-stamp { background: var(--vm-violet); }
.vm-card-grid--fairs .vm-fair-card:nth-child(6n+6) .vm-fair-card-date-stamp { background: var(--vm-green); }

/* Body de la card (debajo de la imagen) */
.vm-fair-card-body {
    padding: 13px 14px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vm-fair-card-meta-row {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: .76rem;
    color: var(--vm-text-soft);
}

.vm-fair-card-meta-row i {
    color: var(--vm-primary);
    flex-shrink: 0;
    margin-top: 2px;
    width: 11px;
}

.vm-fair-card-organizer {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .73rem;
    color: var(--vm-text-soft);
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid rgba(0,0,0,.06);
}

.vm-fair-card-organizer i { color: var(--vm-primary); }
.vm-fair-card-organizer a { font-weight: 700; color: var(--vm-text); text-decoration: none; }
.vm-fair-card-organizer a:hover { color: var(--vm-primary); }

/* Tags */
.vm-fair-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
}

.vm-tag {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px 9px;
    border-radius: var(--vm-r-pill);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .01em;
}

.vm-tag--pink    { background: var(--vm-pink-pale);   color: #c0175a; }
.vm-tag--orange  { background: var(--vm-orange-pale);  color: #b85218; }
.vm-tag--green   { background: var(--vm-green-pale);   color: #05654a; }
.vm-tag--cyan    { background: var(--vm-cyan-pale);    color: #0d7f85; }
.vm-tag--yellow  { background: var(--vm-yellow-pale);  color: #8a6500; }
.vm-tag--violet  { background: var(--vm-violet-pale);  color: #6b1fc9; }
.vm-tag--default { background: rgba(0,0,0,.05);        color: var(--vm-text-soft); }

/* Acciones */
.vm-fair-card-actions {
    display: flex;
    gap: 7px;
    padding: 11px 14px;
    background: rgba(0,0,0,.025);
    border-top: 1px solid rgba(0,0,0,.06);
}

.vm-fair-card-cta {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: .8rem;
    font-weight: 800;
    padding: 9px 12px;
    border-radius: var(--vm-r-pill);
    text-decoration: none;
    letter-spacing: -.01em;
    transition: background .15s, color .15s, transform .15s;
    background: var(--vm-pink);
    color: #fff;
}
.vm-fair-card-cta:hover { transform: translateY(-1px); background: #e63d7c; color: #fff; }

.vm-fair-card-cta--ghost {
    background: transparent;
    border: 1.5px solid rgba(0,0,0,.12);
    color: var(--vm-text-soft);
}
.vm-fair-card-cta--ghost:hover { border-color: var(--vm-primary); color: var(--vm-primary); background: var(--vm-primary-pale); }

/* ══ VENDOR CARD ══════════════════════════════════════════════════════════════ */
.vm-vendor-card {
    background: var(--vm-surface);
    border-radius: var(--vm-r-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: var(--vm-shadow-xs);
    display: flex;
    flex-direction: column;
    transition: transform .25s cubic-bezier(.22,.68,0,1.3), box-shadow .25s;
}

.vm-vendor-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--vm-shadow-md);
}

.vm-vendor-card-media {
    position: relative;
    overflow: hidden;
}

.vm-vendor-card-media img {
    width: 100%;
    height: 135px;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.vm-vendor-card:hover .vm-vendor-card-media img { transform: scale(1.06); }

.vm-vendor-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 50%);
}

.vm-vendor-card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
}

.vm-vendor-card-img-name {
    position: absolute;
    bottom: 10px; left: 12px;
    font-size: .88rem;
    font-weight: 900;
    color: #fff;
    z-index: 2;
    text-shadow: 0 1px 4px rgba(0,0,0,.4);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: calc(100% - 24px);
}

.vm-vendor-card-body {
    padding: 12px 13px 13px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.vm-vendor-card-activity {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .7rem;
    font-weight: 800;
    color: var(--vm-pink);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.vm-vendor-card-desc {
    font-size: .79rem;
    color: var(--vm-text-soft);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.45;
}

.vm-vendor-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: .73rem;
    color: var(--vm-text-soft);
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid rgba(0,0,0,.06);
}

.vm-vendor-card-meta span { display: flex; align-items: center; gap: 4px; }
.vm-vendor-card-meta i { color: var(--vm-primary); width: 11px; }

.vm-vendor-card-cta {
    display: block;
    text-align: center;
    padding: 10px 12px;
    background: rgba(0,0,0,.025);
    border-top: 1px solid rgba(0,0,0,.06);
    font-size: .79rem;
    font-weight: 800;
    color: var(--vm-primary);
    text-decoration: none;
    transition: background .18s, color .18s;
    letter-spacing: -.01em;
}

.vm-vendor-card-cta:hover {
    background: var(--vm-primary);
    color: #fff;
}

/* ══ SEARCH DISCOVERY — Strip oscuro con chips vivos ══════════════════════════ */
.vm-search {
    background:
        radial-gradient(ellipse 60% 80% at 90% 50%, rgba(255,77,143,.12), transparent),
        radial-gradient(ellipse 50% 60% at 10% 50%, rgba(91,92,235,.12), transparent),
        var(--vm-dark-mid);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.vm-search::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.vm-search-inner {
    position: relative;
    z-index: 1;
}

.vm-search-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.vm-search-head h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    letter-spacing: -.04em;
    margin: 0 0 6px;
    color: #fff;
}

.vm-search-head p {
    color: rgba(255,255,255,.5);
    margin: 0;
    font-size: .88rem;
}

/* Chips vivos: sticker style */
.vm-search-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
}

.vm-search-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 15px;
    border-radius: var(--vm-r-pill);
    font-size: .8rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: transform .18s cubic-bezier(.22,.68,0,1.4), box-shadow .18s, opacity .15s;
    font-family: inherit;
    letter-spacing: -.01em;
    box-shadow: 0 3px 10px rgba(0,0,0,.25);
}

/* Sticker rotations */
.vm-search-chip:nth-child(odd)  { transform: rotate(-1.5deg); }
.vm-search-chip:nth-child(even) { transform: rotate(1deg); }
.vm-search-chip:nth-child(3n)   { transform: rotate(2deg); }
.vm-search-chip:nth-child(4n)   { transform: rotate(-2deg); }

.vm-search-chip:hover {
    transform: rotate(0) scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,.35);
}

.vm-search-chip.is-active {
    transform: rotate(0) scale(1.05) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,.3);
    outline: 3px solid rgba(255,255,255,.4);
    outline-offset: 2px;
}

/* Colores por chip */
.vm-search-chip--hoy    { background: var(--vm-yellow); color: #1a1000; }
.vm-search-chip--finde  { background: var(--vm-orange);  color: #fff; }
.vm-search-chip--gratis { background: var(--vm-green);   color: #fff; }
.vm-search-chip--geek   { background: var(--vm-cyan);    color: #fff; }
.vm-search-chip--food   { background: var(--vm-pink);    color: #fff; }
.vm-search-chip--stands { background: var(--vm-violet);  color: #fff; }
.vm-search-chip--cerca  { background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.2); color: rgba(255,255,255,.85); }

/* Form fields en dark */
.vm-search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr minmax(0,.8fr) auto;
    gap: 10px;
    align-items: end;
    margin-top: 22px;
}

.vm-search-form label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.vm-search-form input,
.vm-search-form select {
    width: 100%;
    height: 44px;
    padding: 0 13px;
    border-radius: var(--vm-r);
    border: 1.5px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.07);
    font-size: .86rem;
    color: #fff;
    font-family: inherit;
    transition: border-color .18s, background .18s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    backdrop-filter: blur(4px);
}

.vm-search-form input::placeholder { color: rgba(255,255,255,.3); }
.vm-search-form input:focus,
.vm-search-form select:focus {
    border-color: var(--vm-pink);
    background: rgba(255,255,255,.1);
    box-shadow: 0 0 0 3px rgba(255,77,143,.2);
}

.vm-search-form select option { background: #1c2040; color: #fff; }

.vm-search-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='0.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 30px;
}

.vm-search-submit {
    height: 44px;
    padding: 0 22px;
    border-radius: var(--vm-r);
    font-size: .88rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-family: inherit;
    letter-spacing: -.01em;
    transition: transform .15s, box-shadow .15s;
    background: linear-gradient(135deg, var(--vm-pink), #c0175a);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255,77,143,.4);
}

.vm-search-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,77,143,.5);
}

.vm-search-hints {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.07);
}

.vm-search-hints span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .76rem;
    color: rgba(255,255,255,.35);
    font-weight: 600;
}

.vm-search-hints i { color: var(--vm-pink); }

/* ══ PUBLISH SPLIT ════════════════════════════════════════════════════════════ */
.vm-publish {
    padding: 72px 0;
}

.vm-publish-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.vm-publish-card {
    border-radius: var(--vm-r-xl);
    padding: 36px 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.vm-publish-card--vendor {
    background: linear-gradient(145deg, #fff4ed, #ffede0);
    border: 1.5px solid rgba(255,122,42,.18);
}

.vm-publish-card--organizer {
    background: linear-gradient(145deg, #f0eeff, #e8e0ff);
    border: 1.5px solid rgba(91,92,235,.18);
}

/* Blob decorativo en cada tarjeta */
.vm-publish-card--vendor::after {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,122,42,.15), transparent 70%);
    pointer-events: none;
}

.vm-publish-card--organizer::after {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91,92,235,.15), transparent 70%);
    pointer-events: none;
}

.vm-publish-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.vm-publish-card--vendor .vm-publish-icon    { background: rgba(255,122,42,.15); color: var(--vm-orange); }
.vm-publish-card--organizer .vm-publish-icon { background: rgba(91,92,235,.15);  color: var(--vm-primary); }

.vm-publish-card h2 {
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: -.04em;
    margin: 0;
    color: var(--vm-text);
    line-height: 1.1;
}

.vm-publish-card p { color: var(--vm-text-soft); margin: 0; font-size: .93rem; line-height: 1.55; }

.vm-publish-benefits {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
}

.vm-publish-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: .88rem;
    color: var(--vm-text);
    font-weight: 600;
}

.vm-publish-benefits li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px; height: 20px;
    border-radius: 50%;
    font-size: .62rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
}

.vm-publish-card--vendor .vm-publish-benefits li::before    { background: rgba(255,122,42,.15); color: var(--vm-orange); }
.vm-publish-card--organizer .vm-publish-benefits li::before { background: rgba(91,92,235,.15);  color: var(--vm-primary); }

.vm-publish-card-cta {
    margin-top: auto;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.vm-publish-card--vendor .btn.btn-primary {
    background: var(--vm-orange);
    border-color: var(--vm-orange);
}
.vm-publish-card--vendor .btn.btn-primary:hover {
    background: #d96020;
    border-color: #d96020;
}

/* ══ ZONE ALERTS — Strip oscuro festival ══════════════════════════════════════ */
.vm-alerts {
    padding: 72px 0;
}

.vm-alerts-card {
    background:
        radial-gradient(ellipse 60% 80% at 15% 30%,  rgba(255,77,143,.22), transparent),
        radial-gradient(ellipse 50% 60% at 85% 70%,  rgba(91,92,235,.22), transparent),
        linear-gradient(160deg, var(--vm-dark) 0%, var(--vm-dark-mid) 100%);
    border-radius: var(--vm-r-xl);
    padding: 52px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--vm-shadow-lg);
}

.vm-alerts-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.vm-alerts-copy { position: relative; z-index: 1; }

.vm-alerts-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    border-radius: var(--vm-r-pill);
    background: rgba(255,77,143,.18);
    border: 1px solid rgba(255,77,143,.3);
    color: #ff87b3;
    font-size: .73rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 14px;
}

.vm-alerts-copy h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -.045em;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.02;
}

.vm-alerts-copy p {
    color: rgba(255,255,255,.55);
    margin: 0 0 24px;
    font-size: .92rem;
    line-height: 1.6;
}

.vm-alerts-benefits { display: flex; flex-direction: column; gap: 12px; }

.vm-alerts-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.8);
    font-size: .88rem;
    font-weight: 600;
}

.vm-alerts-benefit-icon {
    width: 34px; height: 34px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: .82rem; flex-shrink: 0;
}

.vm-alerts-benefit-icon.pink   { background: rgba(255,77,143,.2);  color: var(--vm-pink); }
.vm-alerts-benefit-icon.orange { background: rgba(255,122,42,.2);  color: var(--vm-orange); }
.vm-alerts-benefit-icon.green  { background: rgba(0,182,122,.2);   color: #4ade80; }

.vm-alerts-form {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--vm-r-lg);
    padding: 28px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.vm-alerts-form h3 { font-size: 1.1rem; font-weight: 800; margin: 0 0 4px; color: #fff; }
.vm-alerts-form > p { font-size: .82rem; color: rgba(255,255,255,.45); margin: 0 0 18px; }

/* ══ FOOTER ════════════════════════════════════════════════════════════════════ */
.vm-footer {
    background: #080a14;
    color: rgba(255,255,255,.55);
    padding: 52px 0 0;
    border-top: 1px solid rgba(255,255,255,.05);
}

.vm-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.vm-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.15rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: -.03em;
    margin-bottom: 12px;
}
.vm-footer-logo i { color: var(--vm-pink); }

.vm-footer-social {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}
.vm-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.45);
    text-decoration: none;
    font-size: .9rem;
    transition: background .15s, color .15s;
}
.vm-footer-social a:hover { background: rgba(255,77,143,.2); color: var(--vm-pink); }

.vm-footer-legal { display: flex; gap: 14px; }

.vm-footer-provinces {
    padding: 28px 0 32px;
    border-top: 1px solid rgba(255,255,255,.05);
}
.vm-footer-provinces-title {
    font-size: .65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255,255,255,.2);
    margin: 0 0 12px;
}
.vm-footer-provinces-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 6px 12px;
}
.vm-footer-provinces-grid a {
    font-size: .78rem;
    color: rgba(255,255,255,.35);
    text-decoration: none;
    transition: color .15s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.vm-footer-provinces-grid a:hover { color: rgba(255,255,255,.7); }

.vm-footer-brand h2 {
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: -.03em;
}

.vm-footer-brand p { font-size: .86rem; line-height: 1.65; max-width: 38ch; margin: 0 0 16px; }

.vm-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.vm-footer-badges span {
    padding: 3px 10px;
    border-radius: var(--vm-r-pill);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255,255,255,.45);
}

.vm-footer-col p {
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.3);
    margin: 0 0 14px;
}

.vm-footer-col a {
    display: block;
    margin-bottom: 10px;
    font-size: .86rem;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color .15s;
}

.vm-footer-col a:hover { color: #fff; }

.vm-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.05);
    font-size: .78rem;
    color: rgba(255,255,255,.25);
}

.vm-footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .15s; }
.vm-footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ══ REVEAL ANIMATIONS ═════════════════════════════════════════════════════════ */
[data-vm-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .6s cubic-bezier(.22,.68,0,1.2), transform .6s cubic-bezier(.22,.68,0,1.2);
}

[data-vm-reveal].is-visible { opacity: 1; transform: none; }

/* ══ RESPONSIVE ════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .vm-hero-grid          { grid-template-columns: 1fr; gap: 0; }
    .vm-hero-stage         { display: none; }
    .vm-hero               { padding: 52px 0 60px; }
    .vm-hero-copy p        { max-width: none; }
    .vm-card-grid--fairs   { grid-template-columns: 1fr 1fr; }
    .vm-card-grid--vendors { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
    /* Mobile nav */
    .vm-nav {
        display: none;
        position: fixed;
        top: var(--vm-nav-h);
        right: 0;
        bottom: 0;
        width: min(85vw, 300px);
        background: #13162b;
        border-left: 1px solid rgba(255,255,255,.08);
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 16px;
        overflow-y: auto;
        z-index: 100;
        box-shadow: -8px 0 40px rgba(0,0,0,.5);
    }
    .vm-nav.is-open { display: flex; }
    .vm-nav-backdrop { display: block; }

    .vm-nav a, .vm-nav-link    { width: 100%; }
    .vm-nav-more               { width: 100%; }
    .vm-nav-more summary       { width: 100%; }
    .vm-nav-more-list          { position: static; box-shadow: none; background: rgba(255,255,255,.03); border: none; margin-top: 2px; }
    .vm-account-menu           { width: 100%; }
    .vm-account-menu summary   { width: 100%; }
    .vm-account-list           { position: static; box-shadow: none; background: rgba(255,255,255,.03); border: none; margin-top: 2px; }
    .vm-account-label          { display: inline; }
    .vm-header-publish         { width: 100%; justify-content: center; }
    .vm-menu-toggle            { display: flex; }
    .vm-gsearch                { max-width: none; flex: 1; }

    .vm-search-form        { grid-template-columns: 1fr 1fr; }
    .vm-search-form > *:last-child { grid-column: span 2; }
    .vm-publish-grid       { grid-template-columns: 1fr; }
    .vm-alerts-card        { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
    .vm-footer-grid        { grid-template-columns: 1fr 1fr; }
    .vm-footer-provinces-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 620px) {
    .vm-hero               { padding: 36px 0 48px; }
    .vm-section            { padding: 48px 0; }
    .vm-card-grid--fairs,
    .vm-card-grid--vendors { grid-template-columns: 1fr; }
    .vm-search-form        { grid-template-columns: 1fr; }
    .vm-search-form > *:last-child { grid-column: auto; }
    .vm-publish-card       { padding: 24px; }
    .vm-footer-grid                { grid-template-columns: 1fr; }
    .vm-footer-provinces-grid      { grid-template-columns: repeat(3, 1fr); }
    .vm-section-head               { flex-direction: column; align-items: flex-start; }
    .vm-alerts-card        { padding: 24px; }
    .vm-alerts-form        { padding: 20px; }
    .vm-hero-metrics       { gap: 0; }
    .vm-hero-metrics article { padding-right: 14px; margin-right: 14px; }
    .vm-hero-metrics strong { font-size: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    [data-vm-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
    .vm-fair-card, .vm-vendor-card { transition: none; }
    .vm-fair-card:hover, .vm-vendor-card:hover { transform: none; }
    .vm-badge--live { animation: none; }
}
