/* ════════════════════════════════════════════════════════════════════════
   VIMA — Sistema de diseño compartido (tema "Deep Night")
   Reutilizable por las páginas internas (servicios, etc.) para igualar el
   look de landingHome: tokens, header, offcanvas, footer, botones.
   ════════════════════════════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --orchid: #9B1BCB;
  --grape:  #6E3BFF;
  --neon:   #FF4FD8;
  --cyan:   #00D4FF;
  --bg:     #121212;
  --bg-deep:#0a0a12;
  --surf:   rgba(30,30,30,0.55);
  --border: rgba(255,255,255,0.08);
  --fh: 'Montserrat', sans-serif;
  --fb: 'Inter', sans-serif;
  --fm: 'JetBrains Mono', monospace;
}

/* ── Base ── */
html, body { background: #0a0a12 !important; }
body {
  font-family: var(--fb);
  color: #fff;
  overflow-x: hidden;
}
html { scrollbar-color: #6E3BFF #0a0a12; scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; height: 10px; background: #0a0a12; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #9B1BCB, #6E3BFF); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #FF4FD8, #6E3BFF); }
::-webkit-scrollbar-track { background: #0a0a12; }

/* Preloader oscuro (evita flash blanco) */
.preloader { background-color: #0a0a12 !important; }
.preloader .loader-section .bg { background: #0a0a12 !important; }

/* ── Eyebrow pill ── */
.vima-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(110,59,255,.12);
  border: 1px solid rgba(110,59,255,.3);
  border-radius: 100px;
  padding: 6px 18px;
  font-family: var(--fb);
  font-size: .67rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: #8B5CF6;
}
.vima-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--grape); box-shadow: 0 0 10px rgba(110,59,255,.9);
}
.vima-grad {
  background: linear-gradient(135deg, #FF4FD8 0%, #6E3BFF 50%, #00D4FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Botones ── */
.vima-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--fb); font-size: .92rem; font-weight: 700;
  letter-spacing: .03em; text-transform: uppercase;
  color: #fff !important; text-decoration: none;
  background: linear-gradient(135deg, #9B1BCB 0%, #6E3BFF 100%);
  padding: 15px 30px; border-radius: 13px;
  box-shadow: 0 0 28px rgba(110,59,255,.4);
  transition: transform .2s, box-shadow .2s;
}
.vima-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(110,59,255,.7); color: #fff !important; }

/* ════════════════════════════════════════════════════════════════════════
   HEADER (tema oscuro)
   ════════════════════════════════════════════════════════════════════════ */
#header-sticky.header-1 {
  background: rgba(10, 10, 18, 0.7) !important;
  backdrop-filter: blur(20px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(140%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding: 6px 0 !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35) !important;
}
#header-sticky .container-fluid { padding: 0 32px !important; }
#header-sticky .header-main {
  display: flex !important; align-items: center !important;
  justify-content: space-between !important; gap: 18px !important;
  min-height: 64px !important;
}
#header-sticky .logo .header-logo img { height: 36px !important; width: auto !important; display: block !important; }
#header-sticky .main-menu nav ul {
  display: flex !important; align-items: center !important; gap: 6px !important;
  margin: 0 !important; padding: 0 !important; list-style: none !important;
}
#header-sticky .main-menu nav ul li { margin: 0 !important; padding: 0 !important; position: relative !important; }
#header-sticky .main-menu nav ul li a {
  font-family: 'Inter', sans-serif !important; font-size: 0.86rem !important; font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.65) !important; text-decoration: none !important;
  padding: 8px 16px !important; border-radius: 10px !important;
  letter-spacing: 0 !important; text-transform: none !important;
  transition: color 0.2s, background 0.2s !important; display: inline-block !important; line-height: 1.4 !important;
}
#header-sticky .main-menu nav ul li a:hover,
#header-sticky .main-menu nav ul li.active > a { color: #fff !important; background: rgba(110, 59, 255, 0.12) !important; }
#header-sticky .main-menu .submenu,
#header-sticky .menu-thumb-item { display: none !important; }
#header-sticky .header-right-icon { margin: 0 4px 0 12px !important; }
#header-sticky .header-right-icon .main-header__search {
  width: 38px !important; height: 38px !important; border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.04) !important; border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.75) !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  transition: all 0.2s !important; text-decoration: none !important;
}
#header-sticky .header-right-icon .main-header__search:hover {
  background: rgba(110, 59, 255, 0.15) !important; border-color: rgba(110, 59, 255, 0.35) !important; color: #fff !important;
}
#header-sticky .header-right-icon .main-header__search i { font-size: 0.85rem !important; }
#header-sticky .header-button { margin: 0 8px !important; }
#header-sticky .header-button .gt-theme-btn {
  font-family: 'Inter', sans-serif !important; font-size: 0.82rem !important; font-weight: 700 !important;
  letter-spacing: 0.04em !important; text-transform: uppercase !important; color: #fff !important;
  background: linear-gradient(135deg, #9B1BCB 0%, #6E3BFF 100%) !important; border: none !important;
  padding: 11px 22px !important; border-radius: 11px !important; box-shadow: 0 0 24px rgba(110, 59, 255, 0.4) !important;
  transition: opacity 0.2s, transform 0.2s !important; display: inline-block !important; text-decoration: none !important;
}
#header-sticky .header-button .gt-theme-btn:hover { opacity: 0.9 !important; transform: translateY(-1px) !important; color: #fff !important; }
#header-sticky .header-button .gt-theme-btn::before,
#header-sticky .header-button .gt-theme-btn::after { display: none !important; }
#header-sticky .header__hamburger { margin: 0 8px !important; }
#header-sticky .header__hamburger .sidebar__toggle {
  width: 38px !important; height: 38px !important; border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.04) !important; border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.75) !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  cursor: pointer !important; transition: all 0.2s !important;
}
#header-sticky .header__hamburger .sidebar__toggle:hover {
  background: rgba(110, 59, 255, 0.15) !important; border-color: rgba(110, 59, 255, 0.35) !important; color: #fff !important;
}
#header-sticky .header__hamburger .sidebar__toggle i { font-size: 0.9rem !important; }
#header-sticky .header-lang { margin: 0 0 0 8px !important; padding: 0 !important; }
#header-sticky .header-lang .lang-wrapper {
  display: flex !important; align-items: center !important; gap: 8px !important;
  background: rgba(255, 255, 255, 0.04) !important; border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 10px !important; padding: 7px 12px !important; transition: all 0.2s !important;
}
#header-sticky .header-lang .lang-wrapper:hover { background: rgba(110, 59, 255, 0.12) !important; border-color: rgba(110, 59, 255, 0.3) !important; }
#header-sticky .header-lang .lang-wrapper img { width: 18px !important; height: auto !important; border-radius: 3px !important; }
#header-sticky .header-lang .lang-selector2 {
  background: transparent !important; border: none !important; color: #fff !important;
  font-family: 'Inter', sans-serif !important; font-size: 0.82rem !important; font-weight: 500 !important;
  outline: none !important; cursor: pointer !important; padding: 0 !important; padding-right: 14px !important;
  appearance: none !important; -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23ffffff' stroke-opacity='0.6' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important; background-position: right center !important;
}
#header-sticky .header-lang .lang-selector2 option { background: #0a0a12 !important; color: #fff !important; }
@media (max-width: 991px) {
  #header-sticky .main-menu { display: none !important; }
  #header-sticky .header-button { display: none !important; }
  #header-sticky .container-fluid { padding: 0 20px !important; }
}
@media (max-width: 600px) {
  #header-sticky .header-right-icon, #header-sticky .header-lang { display: none !important; }
  #header-sticky .header-main { gap: 8px !important; }
}

/* ════════════════════════════════════════════════════════════════════════
   OFFCANVAS (menú móvil)
   ════════════════════════════════════════════════════════════════════════ */
.offcanvas__info {
  background: #0b0b14 !important; width: min(420px, 88vw) !important;
  box-shadow: -24px 0 70px rgba(0,0,0,.55) !important; border-left: 1px solid rgba(255,255,255,.06) !important;
}
.offcanvas__wrapper, .vima-oc { background: transparent !important; }
.vima-oc { padding: 28px 26px 40px !important; }
.vima-oc .offcanvas__top { margin-bottom: 26px !important; }
.vima-oc .offcanvas__logo img { height: 34px; width: auto; }
.vima-oc .offcanvas__close button {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg,#9B1BCB,#6E3BFF); border: none; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer;
  box-shadow: 0 0 20px rgba(110,59,255,.4); transition: transform .25s, box-shadow .25s;
}
.vima-oc .offcanvas__close button:hover { transform: rotate(90deg); box-shadow: 0 0 30px rgba(110,59,255,.7); }
.vima-oc-desc { font-family: 'Inter', sans-serif; font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.55); margin: 0 0 26px; }
.vima-oc-nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 22px; }
.vima-oc-link {
  font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 600;
  color: rgba(255,255,255,.78); text-decoration: none; padding: 14px 16px; border-radius: 12px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .2s, color .2s, padding-left .2s;
}
.vima-oc-link::after {
  content: ''; width: 7px; height: 7px; border-right: 2px solid currentColor; border-top: 2px solid currentColor;
  transform: rotate(45deg); opacity: .35; transition: opacity .2s;
}
.vima-oc-link:hover, .vima-oc-link--active { color: #fff; background: rgba(110,59,255,.12); padding-left: 20px; }
.vima-oc-link--active { background: rgba(110,59,255,.16); }
.vima-oc-link:hover::after { opacity: .9; }
.vima-oc-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: #fff; text-decoration: none; background: linear-gradient(135deg,#9B1BCB 0%,#6E3BFF 100%);
  padding: 15px 22px; border-radius: 13px; margin-bottom: 32px; box-shadow: 0 0 26px rgba(110,59,255,.45);
  transition: transform .2s, box-shadow .2s;
}
.vima-oc-cta:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 0 36px rgba(110,59,255,.7); }
.vima-oc-contact { border-top: 1px solid rgba(255,255,255,.07); padding-top: 26px; }
.vima-oc-contact h4 {
  font-family: 'Montserrat', sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: #8B5CF6; margin: 0 0 18px;
}
.vima-oc-contact ul { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 14px; }
.vima-oc-contact li { display: flex; align-items: center; gap: 14px; }
.vima-oc-ci {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  background: rgba(110,59,255,.12); border: 1px solid rgba(110,59,255,.25);
  display: flex; align-items: center; justify-content: center; color: #8B5CF6; font-size: .9rem;
}
.vima-oc-contact a, .vima-oc-contact span { color: rgba(255,255,255,.8); text-decoration: none; font-family: 'Inter', sans-serif; font-size: .92rem; }
.vima-oc-contact a:hover { color: #fff; }
.vima-oc-social { display: flex; gap: 10px; }
.vima-oc-social a {
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.75); text-decoration: none; transition: all .2s;
}
.vima-oc-social a:hover { background: rgba(110,59,255,.15); border-color: rgba(110,59,255,.35); color: #fff; }

/* ════════════════════════════════════════════════════════════════════════
   PÁGINA INTERNA — HERO
   ════════════════════════════════════════════════════════════════════════ */
.vima-page-hero {
  position: relative; overflow: hidden;
  background: #0a0a12;
  padding: 180px 24px 110px;
  text-align: center;
}
.vima-page-hero::after {
  content: ''; position: absolute; top: 30%; left: 50%; transform: translate(-50%, -50%);
  width: 900px; height: 520px;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(110,59,255,.28) 0%, transparent 70%);
  filter: blur(80px); pointer-events: none; opacity: .6; z-index: 0;
}
.vima-page-hero-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }
.vima-page-hero-title {
  font-family: var(--fh); font-weight: 900; color: #fff;
  font-size: clamp(2.6rem, 7vw, 5.5rem); line-height: 1.02; letter-spacing: -0.04em;
  margin: 22px 0 20px;
}
.vima-page-hero-sub {
  font-family: var(--fb); font-size: clamp(1rem, 1.6vw, 1.18rem); line-height: 1.7;
  color: rgba(255,255,255,.55); max-width: 620px; margin: 0 auto;
}

/* ── Sección genérica ── */
.vima-section { background: #0a0a12; padding: 100px 24px; position: relative; }
.vima-section--alt { background: #0c0c16; }
.vima-shell { max-width: 1180px; margin: 0 auto; position: relative; z-index: 2; }
.vima-section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.vima-section-title {
  font-family: var(--fh); font-weight: 900; color: #fff;
  font-size: clamp(1.9rem, 4vw, 3.1rem); line-height: 1.08; letter-spacing: -0.03em; margin: 18px 0 0;
}

/* ════════════════════════════════════════════════════════════════════════
   ACORDEÓN (beneficios + FAQ) — override oscuro de Bootstrap
   ════════════════════════════════════════════════════════════════════════ */
.vima-accordion .accordion-item {
  background: rgba(255,255,255,.025) !important;
  border: 1px solid rgba(255,255,255,.07) !important;
  border-radius: 16px !important;
  margin-bottom: 14px; overflow: hidden;
  transition: border-color .25s, background .25s;
}
.vima-accordion .accordion-item:hover { border-color: rgba(110,59,255,.3) !important; }
.vima-accordion .accordion-button {
  background: transparent !important; color: #fff !important;
  font-family: var(--fb); font-size: 1.02rem; font-weight: 600;
  padding: 20px 22px !important; box-shadow: none !important; border: none !important;
}
.vima-accordion .accordion-button .vima-acc-num {
  font-family: var(--fh); font-weight: 800; color: #8B5CF6; margin-right: 12px; font-size: 1rem;
}
.vima-accordion .accordion-button:not(.collapsed) { color: #fff !important; background: rgba(110,59,255,.08) !important; }
.vima-accordion .accordion-button:not(.collapsed) .vima-acc-num { color: var(--neon); }
.vima-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%238B5CF6' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-size: 14px !important;
}
.vima-accordion .accordion-button:focus { box-shadow: none !important; outline: none !important; }
.vima-accordion .accordion-body {
  color: rgba(255,255,255,.6) !important; font-family: var(--fb); font-size: .94rem; line-height: 1.7;
  padding: 0 22px 22px !important;
}

.vima-benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 900px) { .vima-benefits-grid { grid-template-columns: 1fr; gap: 0; } }

/* ════════════════════════════════════════════════════════════════════════
   TARJETAS DE FEATURES (numeradas)
   ════════════════════════════════════════════════════════════════════════ */
.vima-fcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vima-fcard {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px; padding: 34px 30px;
  transition: transform .3s, border-color .3s, background .3s;
}
.vima-fcard::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(110,59,255,.12) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.vima-fcard:hover { transform: translateY(-6px); border-color: rgba(110,59,255,.35); background: rgba(255,255,255,.04); }
.vima-fcard:hover::before { opacity: 1; }
.vima-fcard-num {
  font-family: var(--fh); font-weight: 900; font-size: 2.6rem; line-height: 1;
  background: linear-gradient(135deg, #FF4FD8 0%, #6E3BFF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 18px; display: block;
}
.vima-fcard h3 { font-family: var(--fh); font-size: 1.2rem; font-weight: 800; color: #fff; margin: 0 0 12px; }
.vima-fcard h3 a { color: #fff; text-decoration: none; }
.vima-fcard h3 a:hover { color: #c9b6ff; }
.vima-fcard p { font-family: var(--fb); font-size: .92rem; line-height: 1.7; color: rgba(255,255,255,.55); margin: 0; }

/* ── Brochure / side card ── */
.vima-brochure {
  background: linear-gradient(160deg, rgba(155,27,203,.14), rgba(110,59,255,.08));
  border: 1px solid rgba(110,59,255,.25); border-radius: 20px; padding: 32px 28px;
}
.vima-brochure h3 { font-family: var(--fh); font-size: 1.15rem; font-weight: 800; color: #fff; margin: 0 0 18px; }
.vima-brochure-row { display: flex; align-items: center; gap: 16px; }
.vima-brochure-ico {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: rgba(110,59,255,.15); border: 1px solid rgba(110,59,255,.3);
  display: flex; align-items: center; justify-content: center; color: #c9b6ff; font-size: 1.3rem;
}
.vima-brochure p { font-size: .85rem; color: rgba(255,255,255,.55); margin: 0 0 6px; line-height: 1.5; }
.vima-brochure a { color: var(--neon); font-weight: 700; font-size: .92rem; text-decoration: none; }
.vima-brochure a:hover { color: #fff; }

/* ── Layout 2 columnas (FAQ + brochure) ── */
.vima-faq-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 30px; align-items: start; }
.vima-faq-grid h3.vima-faq-h { font-family: var(--fh); font-size: 1.5rem; font-weight: 800; color: #fff; margin: 0 0 24px; }

/* ── CTA banda ── */
.vima-cta-band { text-align: center; padding: 20px 0 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .vima-fcards { grid-template-columns: 1fr; }
  .vima-faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .vima-page-hero { padding: 140px 20px 80px; }
  .vima-section { padding: 70px 20px; }
}

/* ════════════════════════════════════════════════════════════════════════
   PÁGINA NOSOTROS
   ════════════════════════════════════════════════════════════════════════ */
.vima-about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.vima-about-visual {
  position: relative; border-radius: 26px; overflow: hidden;
  background: linear-gradient(160deg, rgba(155,27,203,.25), rgba(110,59,255,.10));
  border: 1px solid rgba(110,59,255,.25);
  padding: 44px 34px; display: flex; align-items: center; justify-content: center;
}
.vima-about-visual::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 25%, rgba(110,59,255,.32), transparent 70%);
  pointer-events: none;
}
.vima-about-visual img {
  position: relative; z-index: 1; max-width: 100%; height: auto; display: block;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.55));
}
.vima-about-content h2 {
  font-family: var(--fh); font-weight: 900; color: #fff;
  font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -.03em; line-height: 1.05; margin: 0 0 12px;
}
.vima-about-sub {
  font-family: var(--fb); font-size: 1.25rem; font-weight: 600; margin: 0 0 28px;
  background: linear-gradient(135deg, #FF4FD8 0%, #6E3BFF 50%, #00D4FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.vima-about-content p { font-family: var(--fb); font-size: .98rem; line-height: 1.8; color: rgba(255,255,255,.6); margin: 0 0 18px; }
.vima-about-cta { margin-top: 16px; }
@media (max-width: 900px) { .vima-about-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ════════════════════════════════════════════════════════════════════════
   PÁGINA EVENTOS
   ════════════════════════════════════════════════════════════════════════ */
.vima-events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 28px; }
.vima-event-card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px; overflow: hidden; transition: transform .3s, border-color .3s;
}
.vima-event-card:hover { transform: translateY(-6px); border-color: rgba(110,59,255,.35); }
.vima-event-img { aspect-ratio: 16 / 9; overflow: hidden; background: #14141f; }
.vima-event-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.vima-event-card:hover .vima-event-img img { transform: scale(1.05); }
.vima-event-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.vima-event-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.vima-event-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .74rem; font-weight: 600; color: #c9b6ff;
  background: rgba(110,59,255,.12); border: 1px solid rgba(110,59,255,.25);
  padding: 5px 12px; border-radius: 100px;
}
.vima-event-title { font-family: var(--fh); font-size: 1.2rem; font-weight: 800; line-height: 1.25; margin: 0 0 10px; }
.vima-event-title a { color: #fff; text-decoration: none; }
.vima-event-title a:hover { color: #c9b6ff; }
.vima-event-loc { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.55); margin: 0 0 12px; }
.vima-event-loc i { color: #8B5CF6; }
.vima-event-desc { font-size: .9rem; line-height: 1.65; color: rgba(255,255,255,.5); margin: 0 0 20px; }
.vima-event-foot { margin-top: auto; }
.vima-event-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fb); font-size: .82rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  color: #fff; text-decoration: none;
  background: linear-gradient(135deg, #9B1BCB 0%, #6E3BFF 100%);
  padding: 11px 22px; border-radius: 11px; box-shadow: 0 0 22px rgba(110,59,255,.35);
  transition: transform .2s, box-shadow .2s;
}
.vima-event-btn:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 0 32px rgba(110,59,255,.6); }
.vima-events-empty {
  text-align: center; padding: 70px 24px; max-width: 520px; margin: 0 auto;
  background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.07); border-radius: 22px;
}
.vima-events-empty h3 { font-family: var(--fh); font-size: 1.5rem; color: #fff; margin: 0 0 10px; }
.vima-events-empty p { color: rgba(255,255,255,.5); margin: 0; }
@media (max-width: 600px) { .vima-events-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════════════════
   PÁGINA CONTACTO
   ════════════════════════════════════════════════════════════════════════ */
.vima-contact-grid { display: grid; grid-template-columns: .8fr 1.3fr; gap: 30px; align-items: start; }
.vima-contact-aside { display: flex; flex-direction: column; gap: 16px; }
.vima-contact-card {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px; padding: 22px 24px; transition: border-color .25s, background .25s;
}
.vima-contact-card:hover { border-color: rgba(110,59,255,.3); background: rgba(255,255,255,.04); }
.vima-contact-ico {
  width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(155,27,203,.25), rgba(110,59,255,.15));
  border: 1px solid rgba(110,59,255,.3);
  display: flex; align-items: center; justify-content: center; color: #c9b6ff; font-size: 1.2rem;
}
.vima-cc-label { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: #8B5CF6; font-weight: 700; margin-bottom: 4px; }
.vima-contact-card h5, .vima-contact-card a { font-family: var(--fb); font-size: .98rem; color: #fff; margin: 0; text-decoration: none; }
.vima-contact-card a:hover { color: #c9b6ff; }

.vima-form-panel {
  background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.07);
  border-radius: 22px; padding: 42px 40px;
}
.vima-form-panel h3 { font-family: var(--fh); font-size: 1.8rem; font-weight: 800; color: #fff; margin: 0 0 8px; }
.vima-form-panel > p { font-size: .9rem; color: rgba(255,255,255,.5); margin: 0 0 28px; }
.vima-field { margin-bottom: 20px; }
.vima-field span { display: block; font-family: var(--fb); font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.8); margin-bottom: 8px; }
.vima-field input, .vima-field textarea {
  width: 100%; font-family: var(--fb); font-size: .95rem; color: #fff;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 14px 16px; outline: none; transition: border-color .2s, background .2s;
}
.vima-field input::placeholder, .vima-field textarea::placeholder { color: rgba(255,255,255,.35); }
.vima-field input:focus, .vima-field textarea:focus { border-color: rgba(110,59,255,.5); background: rgba(110,59,255,.06); }
.vima-field textarea { min-height: 150px; resize: vertical; }
.vima-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.vima-form-panel button[type="submit"] {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--fb); font-size: .9rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  color: #fff; border: none; cursor: pointer;
  background: linear-gradient(135deg, #9B1BCB 0%, #6E3BFF 100%);
  padding: 15px 32px; border-radius: 13px; box-shadow: 0 0 28px rgba(110,59,255,.4);
  transition: transform .2s, box-shadow .2s; margin-top: 6px;
}
.vima-form-panel button[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(110,59,255,.7); }
.vima-form-panel button[type="submit"]:disabled { opacity: .6; cursor: default; transform: none; }
@media (max-width: 900px) {
  .vima-contact-grid { grid-template-columns: 1fr; }
  .vima-form-row { grid-template-columns: 1fr; }
  .vima-form-panel { padding: 30px 22px; }
}

/* ════════════════════════════════════════════════════════════════════════
   FOOTER (tema oscuro)
   ════════════════════════════════════════════════════════════════════════ */
#vima-footer {
  background: #0a0a12; padding: 80px 24px 32px; position: relative;
  color: #fff; font-family: 'Inter', sans-serif;
}
.vima-footer-divider {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(110,59,255,.4) 50%, transparent 100%);
}
.vima-footer-shell { max-width: 1240px; margin: 0 auto; }
.vima-footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1.4fr; gap: 60px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.05);
}
.vima-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.vima-footer-logo-img { height: 38px; width: auto; }
.vima-footer-tagline { font-size: .88rem; line-height: 1.75; color: rgba(255,255,255,.5); max-width: 340px; margin: 0 0 22px; }
.vima-footer-social { display: flex; gap: 10px; }
.vima-footer-social a {
  width: 38px; height: 38px; border-radius: 11px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6);
  transition: all .25s; text-decoration: none;
}
.vima-footer-social a:hover { background: rgba(110,59,255,.15); border-color: rgba(110,59,255,.35); color: #fff; transform: translateY(-3px); }
.vima-footer-h4 {
  font-family: 'Montserrat', sans-serif; font-size: .82rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: #fff; margin: 0 0 22px;
}
.vima-footer-list { list-style: none; padding: 0; margin: 0; }
.vima-footer-list li { margin-bottom: 12px; }
.vima-footer-list a {
  font-size: .88rem; color: rgba(255,255,255,.5); text-decoration: none;
  transition: color .2s, padding-left .2s; position: relative;
}
.vima-footer-list a:hover { color: #fff; padding-left: 6px; }
.vima-footer-download-text { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.5); max-width: 280px; margin: 0 0 20px; }
.vima-footer-stores { display: flex; flex-direction: column; gap: 10px; max-width: 220px; }
.vima-store-btn {
  display: flex; align-items: center; gap: 12px; padding: 11px 16px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; color: #fff; text-decoration: none; transition: all .25s;
}
.vima-store-btn:hover {
  background: linear-gradient(135deg, rgba(155,27,203,.18), rgba(110,59,255,.12));
  border-color: rgba(110,59,255,.4); transform: translateY(-2px); color: #fff; text-decoration: none;
}
.vima-store-btn svg { flex-shrink: 0; color: rgba(255,255,255,.85); }
.vima-store-btn div { display: flex; flex-direction: column; line-height: 1.1; }
.vima-store-btn small { font-size: .58rem; font-weight: 700; letter-spacing: .12em; color: rgba(255,255,255,.45); margin-bottom: 2px; }
.vima-store-btn strong { font-family: 'Montserrat', sans-serif; font-size: .9rem; font-weight: 800; color: #fff; }
.vima-footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; flex-wrap: wrap; gap: 16px; }
.vima-footer-copy { font-size: .78rem; color: rgba(255,255,255,.32); }
.vima-footer-legal { list-style: none; padding: 0; margin: 0; display: flex; gap: 24px; }
.vima-footer-legal a { font-size: .78rem; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.vima-footer-legal a:hover { color: #fff; }
@media (max-width: 900px) {
  .vima-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .vima-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  #vima-footer { padding: 60px 20px 24px; }
  .vima-footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .vima-footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .vima-footer-legal { gap: 18px; }
}
