/* ─── HOME EVENTS SECTION ─── */
.hs-header { display:flex; align-items:flex-end; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.hs-header__left { display:flex; flex-direction:column; gap:4px; }
.hs-header__title { font-size:26px; font-weight:800; color:#111827; margin:0; letter-spacing:-.02em; line-height:1.2; }
.hs-header__sub { font-size:14px; color:#6b7280; margin:0; }
.hs-header__cta { display:inline-flex; align-items:center; gap:6px; padding:9px 18px; border:1.5px solid #e5e7eb; border-radius:9px; font-size:13px; font-weight:700; color:#374151; text-decoration:none; white-space:nowrap; transition:border-color .2s, color .2s, background .2s; flex-shrink:0; }
.hs-header__cta:hover { border-color:#f97316; color:var(--primary-text-color); background:#fff7ed; }
.mb-32 { margin-bottom:32px; }

.hs-tabs-nav { display:flex; align-items:center; justify-content:center; }

/* Events tabs — Modern SaaS */
.nav-tabs.events-tabs {
  border:none;
  display:inline-flex;
  align-items:center;
  gap:4px;
  background:#f3f4f6;
  border-radius:12px;
  padding:4px;
  flex-wrap:wrap;
}
.nav-tabs.events-tabs .nav-link {
  border:none;
  border-radius:9px;
  padding:7px 20px;
  font-size:13px;
  font-weight:600;
  color:#6b7280;
  background:transparent;
  transition:background .2s, color .2s, box-shadow .2s;
  white-space:nowrap;
  line-height:1.4;
}
.nav-tabs.events-tabs .nav-link:hover {
  background:#e5e7eb;
  color:#111827;
}
.nav-tabs.events-tabs .nav-link.active {
  background:#fff;
  color:#111827;
  box-shadow:0 1px 4px rgba(0,0,0,.12);
}

/* Events Marquee Slider */
/* ================================
   Events Marquee
   ================================ */

.events-marquee {
    overflow: hidden;
    background: #fff;
    padding: 24px 0 34px;
    position: relative;
}

.events-marquee-track {
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    display: block;
    position: relative;
}

.events-marquee-track::before,
.events-marquee-track::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 96px;
    z-index: 4;
    pointer-events: none;
}

.events-marquee-track::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0) 100%);
}

.events-marquee-track::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, rgba(255,255,255,0) 100%);
}

.events-marquee-inner {
    display: flex;
    width: max-content;
    gap: 12px;
    will-change: transform;
    animation: eventsMarqueeLeft 24s linear infinite;
}

/* Card horizontal — landscape */
.events-marquee-item {
    flex-shrink: 0;
    display: block;
    position: relative;
    width: 328px;
    height: 208px;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.10);
    transition: transform 0.28s cubic-bezier(0.22,1,0.36,1), box-shadow 0.28s ease, border-color 0.28s ease;
    contain: layout style;
    background: #f8fafc;
}

.events-marquee-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.32s ease;
    will-change: transform;
}

.events-marquee-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
    border-color: rgba(255, 255, 255, 0.88);
}

.events-marquee-item:hover img {
    transform: scale(1.06);
}

/* Fecha — top-left, siempre visible */
.emq-date {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    background: rgba(20, 26, 38, 0.88);
    border-radius: 9px;
    padding: 6px 9px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    gap: 1px;
    pointer-events: none;
}

.emq-date__day {
    font-family: var(--tuki-font-sans);
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    -webkit-font-smoothing: antialiased;
}

.emq-date__month {
    font-family: var(--tuki-font-sans);
    font-size: 9px;
    font-weight: 700;
    color: var(--primary-text-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
}

/* Badge — top-right, siempre visible */
.emq-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(20, 26, 38, 0.88);
    border-radius: 6px;
    padding: 4px 7px;
    font-family: var(--tuki-font-sans);
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    pointer-events: none;
    -webkit-font-smoothing: antialiased;
    line-height: 1;
}

.emq-badge__icon {
    display: inline-flex;
    align-items: center;
    font-size: 9px;
    opacity: 0.92;
}

/* Gradiente inferior + título siempre visible */
.emq-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 30px 16px 14px;
    background:
      linear-gradient(to top,
        rgba(17,24,39,0.94) 0%,
        rgba(17,24,39,0.76) 42%,
        rgba(17,24,39,0.30) 68%,
        rgba(17,24,39,0.00) 100%
      );
    pointer-events: none;
    opacity: 1;
}

.emq-bottom__title {
    font-family: var(--tuki-font-sans, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    min-height: calc(15px * 1.25 * 2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

.emq-bottom__eyebrow {
    display: inline-flex;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.70);
}

@keyframes eventsMarqueeLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-33.333% - 4px)); }
}

@media (prefers-reduced-motion: reduce) {
    .events-marquee-inner {
        animation: none;
    }
}


/* ================================================
   HOME PAGE — Superficies y ritmo global
   ================================================ */

body.home-page {
    --home-surface-primary: #ffffff;
    --home-surface-secondary: #f8fafc;
    --home-section-space: 72px;
    --home-section-space-tight: 56px;
    --home-section-space-mobile: 48px;
}

body.home-page .events-marquee,
body.home-page .hs-search-wrap,
body.home-page .category-section,
body.home-page .testimonial-section,
body.home-page .client-logo-area {
    background: var(--home-surface-primary);
}

body.home-page .events-section,
body.home-page .about-section,
body.home-page .feature-section,
body.home-page .work-process {
    background: var(--home-surface-secondary);
}

body.home-page .hs-search-wrap {
    padding: 24px 0 var(--home-section-space-tight);
}

body.home-page .events-section,
body.home-page .category-section,
body.home-page .about-section,
body.home-page .feature-section,
body.home-page .testimonial-section,
body.home-page .client-logo-area {
    padding-top: var(--home-section-space);
    padding-bottom: var(--home-section-space);
}

body.home-page .events-section {
    padding-bottom: var(--home-section-space);
}

body.home-page .events-section .text-center.mt-4 {
    margin-top: 24px !important;
}

body.home-page .events-section + .feature-section {
    padding-top: 36px;
}

body.home-page .work-process {
    padding-top: 0;
    padding-bottom: var(--home-section-space);
}

body.home-page section + section::before,
body.home-page .testimonial-section hr {
    display: none;
}

body.home-page .section-title.mb-60,
body.home-page .section-title.mb-55,
body.home-page .section-title.mb-30 {
    margin-bottom: 36px !important;
}

body.home-page .feature-section {
    margin-bottom: 0;
}

body.home-page .feature-section > .container.pb-40 {
    padding-bottom: 0 !important;
}

body.home-page .work-process {
    margin-top: 0;
    transform: none;
}

body.home-page .work-process-inner {
    background: #ffffff;
    border: 1px solid rgba(30, 37, 50, 0.08);
    border-radius: 28px;
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
    padding: 44px 48px;
}

@media (max-width: 767px) {
    .events-marquee {
        padding-top: 18px;
        padding-bottom: 28px;
    }
    .events-marquee-track {
        padding: 0;
    }
    .events-marquee-track::before,
    .events-marquee-track::after {
        width: 36px;
    }
    .events-marquee-inner {
        gap: 10px;
        animation-duration: 20s;
    }
    .events-marquee-item {
        width: 278px;
        height: 184px;
    }
    .emq-badge {
        display: none;
    }
    .emq-bottom {
        padding: 26px 14px 13px;
    }
    .emq-bottom__title {
        font-size: 14px;
        min-height: calc(14px * 1.25 * 2);
    }

    body.home-page .hs-search-wrap,
    body.home-page .events-section,
    body.home-page .category-section,
    body.home-page .about-section,
    body.home-page .feature-section,
    body.home-page .testimonial-section,
    body.home-page .client-logo-area {
        padding-top: var(--home-section-space-mobile);
        padding-bottom: var(--home-section-space-mobile);
    }

    body.home-page .events-section {
        padding-bottom: var(--home-section-space-mobile);
    }

    body.home-page .hs-search-wrap {
        padding-top: 16px;
        padding-bottom: var(--home-section-space-mobile);
    }

    body.home-page .events-section .text-center.mt-4 {
        margin-top: 18px !important;
    }

    body.home-page .events-section + .feature-section {
        padding-top: 28px;
    }

    body.home-page .work-process {
        padding-bottom: var(--home-section-space-mobile);
    }

    body.home-page .work-process-inner {
        border-radius: 22px;
        padding: 28px 22px;
    }
}

@media (max-width: 991px) {
    .trust-partners__logos .client-logo-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 575px) {
    .trust-partners {
        margin-top: 4px;
        padding-top: 18px;
    }

    .trust-partners__intro {
        margin-bottom: 14px;
    }

    .trust-partners__intro h3 {
        font-size: 20px;
    }

    .trust-partners__logos .client-logo-item {
        width: calc(100% - 20px);
        min-height: 68px;
        padding: 14px 16px;
    }

    .trust-partners__logos .client-logo-item img {
        max-height: 22px;
    }
}

/* ================================================
   HOME SEARCH — Modern SaaS UI
   ================================================ */
.hs-search-wrap {
  background: #fff;
  padding: 8px 0 44px;
  position: relative;
  z-index: 10;
}
.hs-search-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.hs-search-head__title {
  margin: 0;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #1e2532;
}
.hs-search-head__sub {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #6b7280;
}
.hs-search-form {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(30, 37, 50, 0.12);
  border-radius: 12px;
  box-shadow: none;
  overflow: hidden;
  transition: border-color 0.2s ease;
  margin-bottom: 16px;
}
.hs-search-form:focus-within {
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: none;
}
.hs-sf__field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  height: 56px;
  min-width: 0;
}
.hs-sf__field--grow {
  flex: 1 1 0%;
  min-width: 0;
  max-width: min(440px, 42%);
}
.hs-sf__field--location {
  flex: 0 1 170px;
  min-width: 0;
}
.hs-sf__field--select {
  flex: 1 1 200px;
  min-width: min(180px, 100%);
}
.hs-sf__field--type {
  flex: 0 1 160px;
  min-width: 0;
}
.hs-sf__icon {
  flex-shrink: 0;
  color: #9ca3af;
  transition: color 0.2s ease;
}
.hs-sf__field:focus-within .hs-sf__icon {
  color: var(--primary-text-color);
}
.hs-sf__input {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--tuki-font-sans, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
  font-size: 15px;
  font-weight: 500;
  color: #1e2532;
  width: 100%;
  min-width: 0;
  line-height: 1;
}
.hs-sf__input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}
.hs-sf__select {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--tuki-font-sans, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
  font-size: 14px;
  font-weight: 500;
  color: #1e2532;
  cursor: pointer;
  width: 100%;
  min-width: 0;
  -webkit-appearance: none;
  appearance: none;
}
.hs-sf__select option {
  color: #1e2532;
}
.hs-sf__divider {
  width: 1px;
  height: 30px;
  background: rgba(30,37,50,0.08);
  flex-shrink: 0;
}
.hs-sf__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  background: #f97316;
  color: #fff;
  font-family: var(--tuki-font-sans, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  border: none;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  flex: 0 0 clamp(128px, 11vw, 168px);
  min-width: 0;
}
.hs-sf__btn-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  pointer-events: none;
}
.hs-sf__btn svg {
  flex-shrink: 0;
}
.hs-sf__btn:hover {
  background: #ea580c;
}
.hs-search-chips {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.hs-search-chips__label {
  font-family: var(--tuki-font-sans, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-right: 2px;
  flex-shrink: 0;
}
.hs-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 8px;
  font-family: var(--tuki-font-sans, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
  font-size: 13px;
  font-weight: 500;
  color: #4b5563;
  background: #f8fafc;
  border: 1px solid rgba(30, 37, 50, 0.08);
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.hs-chip:hover,
.hs-chip--active {
  background: #fff7ed;
  color: var(--primary-text-color);
  border-color: rgba(249, 115, 22, 0.35);
}
.hs-chip--free {
  background: #f8fafc;
  color: #15803d;
}
.hs-chip--free:hover {
  background: #f0fdf4;
  border-color: rgba(22, 163, 74, 0.25);
  color: #15803d;
}
.hs-chip--category {
  background: #fff;
  border-color: rgba(30, 37, 50, 0.1);
}
/* Responsive buscador home */
@media (max-width: 991px) {
  .hs-search-head {
    margin-bottom: 14px;
  }
  .hs-search-head__title {
    font-size: 24px;
  }
  .hs-search-form {
    flex-wrap: wrap;
    border-radius: 12px;
  }
  .hs-sf__field--location,
  .hs-sf__field--select,
  .hs-sf__field--type {
    min-width: 0;
    flex: 1;
  }
  .hs-sf__btn {
    border-radius: 0 0 11px 11px;
    width: 100%;
    flex: 1 0 100%;
    justify-content: center;
    height: 52px;
    flex-basis: auto;
  }
  .hs-sf__divider:last-of-type {
    display: none;
  }
}
@media (max-width: 575px) {
  .hs-search-wrap {
    padding-bottom: 36px;
  }
  .hs-search-head__title {
    font-size: 21px;
  }
  .hs-search-head__sub {
    font-size: 13px;
  }
  .hs-sf__field {
    height: 52px;
    padding: 0 16px;
  }
  .hs-sf__field--location,
  .hs-sf__field--select {
    display: none;
  }
  .hs-sf__field--type {
    display: flex;
  }
  .hs-sf__divider {
    display: none;
  }
  .hs-sf__btn {
    height: 50px;
    width: 100%;
    flex: 1 0 100%;
    border-radius: 0 0 11px 11px;
    flex-basis: auto;
  }
  .hs-search-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .hs-search-chips::-webkit-scrollbar {
    display: none;
  }
}

/* C.2 — Filtros de precio en /events */
.price-filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.price-filter-btn {
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
    border: 1.5px solid #e0e0e0;
    background: #fff;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    font-family: var(--tuki-font-sans);
}

.price-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-text-color);
    text-decoration: none;
}

.price-filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* === Tarjetas de evento: altura uniforme y simetría === */

/* Columnas de la grilla como flex para forzar misma altura */
.event-page-section .col-sm-6,
.event-page-section .col-xl-4 {
    display: flex;
    margin-bottom: 30px;
}

/* ================================================
/* ================================================
   EVENT CARD — Tukipass (definitive)
   ================================================ */

.ev-card-col {
  display: flex;
  margin-bottom: 28px;
}

.ev-card {
  --ev-card-radius: 20px;
  --ev-ticket-height: 75px;
  --ev-ticket-ink: #323d4f;
  --ev-ticket-surface: #ffffff;
  --ev-ticket-surface-right: #ffffff;
  --ev-ticket-day-color: #1e2532;
  --ev-ticket-meta-color: rgba(50, 61, 79, 0.72);
  --ev-ticket-accent: #fb923c;
  --ev-card-border: rgba(30, 37, 50, 0.08);
  --ev-ticket-edge: #e5e7eb;
  --ev-section-gap: 14px;
  --ev-block-gap: 12px;
  --ev-body-gap: 20px;
  display: flex;
  flex-direction: column;
  gap: var(--ev-section-gap);
  height: 100%;
  width: 100%;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  position: relative;
}

.ev-card::before {
  display: none;
}

.ev-card:focus-visible {
  outline: 2px solid rgba(249, 115, 22, 0.82);
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(249,115,22,0.12);
}

.ev-card::after {
  display: none;
}

.ev-card:hover::after {
  display: none;
}

.ev-card:focus-within::after {
  display: none;
}

.ev-card:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.ev-card:focus-within {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.ev-card__visual,
.ev-card__datetime-bar,
.ev-card__body-panel {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              border-color 0.35s cubic-bezier(0.22,1,0.36,1),
              background 0.35s cubic-bezier(0.22,1,0.36,1);
}

.ev-card:hover .ev-card__visual,
.ev-card:focus-within .ev-card__visual {
  transform: translateY(-4px) translateZ(0);
  box-shadow: none;
}

.ev-card:hover .ev-card__datetime-bar,
.ev-card:focus-within .ev-card__datetime-bar {
  transform: translateY(-4px);
}

.ev-card:hover .ev-card__body-panel,
.ev-card:focus-within .ev-card__body-panel {
  transform: translateY(-2px);
  border-bottom-color: var(--ev-card-border);
}

/* Visual wrapper — bloque 1: solo imagen */
.ev-card__visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  isolation: isolate;
  transform: translateZ(0);
  border-radius: var(--ev-card-radius);
  overflow: hidden;
  box-shadow: none;
  border: none;
}

/* Image — cuadrada 1:1, jerarquía visual (objetivo 304×304) */
.ev-card__img {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  background: #111827;
  z-index: 1;
}

.ev-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.35s ease;
}

.ev-card:hover .ev-card__img img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02) brightness(1.01);
}

.ev-card:focus-within .ev-card__img img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02) brightness(1.01);
}

/* Price badge: solo para eventos GRATIS */
.ev-card__price-img {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--tuki-font-sans);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
  border: none;
  box-shadow: none;
}

.ev-card__price-img--free {
  background: #10b981;
}

/* Wishlist */
.ev-card__wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  pointer-events: auto;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  box-shadow: none;
  border: none;
  border-radius: 50%;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.ev-card__wishlist:hover,
.ev-card__wishlist--active {
  background: rgba(255,255,255,0.95);
  color: var(--primary-text-color, #C2410C);
  transform: scale(1.06);
}

/* Hover overlay — sobre la imagen (hermano de ev-card__img, sin overflow:hidden) */
.ev-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 5;
  background:
    radial-gradient(circle at top left, rgba(249,115,22,0.12) 0%, transparent 34%),
    linear-gradient(180deg, rgba(11,18,32,0.72) 0%, rgba(13,30,43,0.84) 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding: 20px 18px;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
  will-change: opacity;
}


.ev-card:hover .ev-card__overlay {
  opacity: 1;
}

.ev-card:focus-within .ev-card__overlay {
  opacity: 1;
}

.ev-card__overlay-date,
.ev-card__overlay-time {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.ev-card__overlay-divider {
  display: block;
  width: 1px;
  height: 70%;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.ev-card__overlay-day,
.ev-card__overlay-hhmm {
  display: block;
  font-family: var(--tuki-font-sans);
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.ev-card__overlay-month {
  display: block;
  font-family: var(--tuki-font-sans);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.ev-card__overlay-year,
.ev-card__overlay-hs {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.52);
  line-height: 1;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* Body */
@media (max-width: 767px) {
  .hero-collage-section,
  .hero-collage-section--premium {
    min-height: 440px !important;
  }

  .hero-trust {
    gap: 8px 14px;
    margin-top: 18px;
  }

  .hero-trust li {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .hero-content {
    max-width: 100%;
  }
  .hero-content-wrapper {
    padding-top: 78px;
    padding-bottom: 58px;
  }

  .hero-content h1 {
    font-size: clamp(1.9rem, 8.2vw, 2.8rem);
    max-width: 100%;
    white-space: normal;
    line-height: 1.02;
  }

  .hero-content--premium h1 {
    line-height: 1.08;
    font-size: clamp(1.95rem, 6.5vw + 0.6rem, 2.65rem);
  }

  .hero-content p {
    margin-top: 14px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero-content--premium .hero-lede {
    font-size: 0.92rem;
    line-height: 1.55;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }
  .hero-btn {
    width: auto;
    min-height: 46px;
    padding: 0 18px;
  }
  .ev-card__title {
    font-size: 18px;
    min-height: calc(18px * 1.3 * 2);
  }
  .ev-card-col {
    margin-bottom: 20px;
  }
}

/* Event Badges */
.ev-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--tuki-font-sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  flex-shrink: 0;
}

.ev-badge__icon {
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  position: relative;
  top: -0.5px;
}

.ev-badge--furor      { color: #ef4444; }
.ev-badge--agota      { color: #d97706; }
.ev-badge--trending   { color: #059669; }
.ev-badge--nuevo      { color: #2563eb; }
.ev-badge--ultimas    { color: #ea580c; }
.ev-badge--destacado  { color: #7c3aed; }
.ev-badge--imperdible { color: #e11d48; }

/* ============================================================
   EVENT CARD — v4 Poster
   ============================================================ */

/* Gradiente sobre imagen — desactivado (el overlay de hover lo reemplaza) */
.ev-card__gradient {
  display: none;
}

/* ── Fecha sobre gradiente (legacy) ── */
.ev-card__img-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 14px 16px 16px;
  pointer-events: none;
}

/* Contenedor: día (izq) + mes/año apilados (der) */
.ev-card__img-date-block {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
}

/* Número del día — grande, translúcido */
.ev-card__img-day {
  font-family: var(--tuki-font-sans);
  font-size: 28px;
  font-weight: 800;
  color: #16202e;
  line-height: 1;
  letter-spacing: -1px;
  transition: opacity 0.3s ease;
}

/* Mes + año apilados a la derecha */
.ev-card__img-date-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.ev-card__img-month-text {
  font-family: var(--tuki-font-sans);
  font-size: 12px;
  font-weight: 700;
  color: #16202e;
  line-height: 1.2;
  transition: opacity 0.3s ease;
}

.ev-card__img-year-text {
  font-family: var(--tuki-font-sans);
  font-size: 10px;
  font-weight: 500;
  color: rgba(30,37,50,0.5);
  line-height: 1.2;
  transition: opacity 0.3s ease;
}

/* ── Bloque 2: ticket blanco — relieve siguiendo forma SVG (sin líneas rectas) ── */
.ev-card__datetime-bar {
  position: relative;
  z-index: 6;
  display: block;
  width: 100%;
  height: var(--ev-ticket-height);
  min-height: var(--ev-ticket-height);
  max-height: var(--ev-ticket-height);
  margin: calc(var(--ev-block-gap) - var(--ev-section-gap)) 0 0;
  padding: 0;
  flex-shrink: 0;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
  filter: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ev-card:hover .ev-card__dtbar-left,
.ev-card:hover .ev-card__dtbar-right {
  opacity: 0;
  pointer-events: none;
}

.ev-card:focus-within .ev-card__dtbar-left,
.ev-card:focus-within .ev-card__dtbar-right {
  opacity: 0;
  pointer-events: none;
}

/* Mitad derecha del ticket — icono + etiqueta, sin contenedor extra */
.ev-card__dtbar-badge-icon {
  font-size: 22px;
  line-height: 1;
  color: var(--ev-ticket-ink);
  -webkit-font-smoothing: antialiased;
}

.ev-card__dtbar-right.ev-badge--furor .ev-card__dtbar-badge-icon { color: #ef4444; }
.ev-card__dtbar-right.ev-badge--agota .ev-card__dtbar-badge-icon { color: #d97706; }
.ev-card__dtbar-right.ev-badge--trending .ev-card__dtbar-badge-icon { color: #059669; }
.ev-card__dtbar-right.ev-badge--nuevo .ev-card__dtbar-badge-icon { color: #2563eb; }
.ev-card__dtbar-right.ev-badge--ultimas .ev-card__dtbar-badge-icon { color: #ea580c; }
.ev-card__dtbar-right.ev-badge--destacado .ev-card__dtbar-badge-icon { color: #7c3aed; }
.ev-card__dtbar-right.ev-badge--imperdible .ev-card__dtbar-badge-icon { color: #e11d48; }
.ev-card__dtbar-right.ev-badge--tipo .ev-card__dtbar-badge-icon { color: rgba(50, 61, 79, 0.82); }

/* CTA hover — texto 65% izq, flecha 35% der */
.ev-card__dtbar-cta {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.08s ease;
  color: var(--ev-ticket-ink);
}

.ev-card__dtbar-cta-label {
  width: 65%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-family: var(--tuki-font-sans, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.05;
}

.ev-card__dtbar-cta-arrow {
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.ev-card__dtbar-cta-arrow svg {
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 2.75;
  filter: none;
}

.ev-card:hover .ev-card__dtbar-cta {
  opacity: 1;
  color: #fff;
}

.ev-card:focus-within .ev-card__dtbar-cta {
  opacity: 1;
  color: #fff;
}

.ev-card__dtbar-block {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  transition: opacity 0.1s ease;
}

.ev-card__dtbar-sep {
  display: none;
}

.ev-card__dtbar-left > .ev-card__dtbar-sep {
  display: block;
  flex-shrink: 0;
  align-self: center;
  width: 1px;
  height: 36px;
  margin: 0 4px;
  background: rgba(50, 61, 79, 0.22);
}

.ev-card__dtbar-left,
.ev-card__dtbar-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.1s ease;
}

.ev-card__dtbar-left {
  width: 65%;
  gap: 14px;
}

.ev-card__dtbar-right {
  width: 35%;
  padding: 0 6px;
}

/* Fondo FreeTicket (SVGs absolutos — altura nativa, sin aplastar mordiscos) */
.ev-card__ticket-bg {
  position: absolute;
  top: 0;
  height: var(--ev-ticket-height);
  z-index: 0;
  pointer-events: none;
  filter:
    drop-shadow(0 1px 0 var(--ev-ticket-edge, #e5e7eb))
    drop-shadow(0 3px 6px rgba(15, 23, 42, 0.08));
  transition: filter 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ev-card:hover .ev-card__ticket-bg,
.ev-card:focus-within .ev-card__ticket-bg {
  filter: drop-shadow(0 4px 10px rgba(15, 23, 42, 0.12));
}

.ev-card__ticket-bg--left {
  left: 0;
  width: 65%;
}

.ev-card__ticket-bg--right {
  right: 0;
  width: 35%;
}

.ev-card__ticket-bg--left path {
  fill: var(--ev-ticket-surface);
  stroke: none;
  transition: fill 0.25s ease;
}

.ev-card__ticket-bg--right path {
  fill: var(--ev-ticket-surface-right);
  stroke: none;
  transition: fill 0.25s ease;
}

.ev-card:hover .ev-card__ticket-bg path,
.ev-card:focus-within .ev-card__ticket-bg path {
  fill: var(--primary-color, #F97316);
}

.ev-card__dtbar-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0;
}

/* Texto sobre ticket blanco */
.ev-card__datetime-bar .ev-card__img-day,
.ev-card__datetime-bar .ev-card__img-month-text,
.ev-card__datetime-bar .ev-card__img-year-text {
  color: var(--ev-ticket-ink);
}

.ev-card__datetime-bar .ev-card__img-day {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ev-ticket-day-color, #1e2532);
}

.ev-card__datetime-bar .ev-card__img-month-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--ev-ticket-accent, #fb923c);
}

.ev-card__datetime-bar .ev-card__img-year-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--ev-ticket-meta-color, rgba(50, 61, 79, 0.72));
}


/* ── Bloque 3: info — transparente, bordes izq/abajo ── */
.ev-card__body-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: calc(0px - var(--ev-section-gap));
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ev-card-border);
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.ev-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--ev-block-gap) 20px 18px 22px;
  gap: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.ev-card__body::before {
  display: none;
}

/* Ubicación — primer elemento del body */
.ev-card__loc-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}

.ev-card__loc-row svg {
  flex-shrink: 0;
  color: var(--primary-color, #F97316);
  opacity: 1;
}

.ev-card__loc-row span {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Título — Inter */
.ev-card__title {
  font-family: var(--tuki-font-sans);
  font-size: 20px;
  font-weight: 700;
  color: var(--ev-ticket-ink);
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.26;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(20px * 1.26 * 2);
}

/* Entradas */
.ev-card__ticket-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.ev-card__ticket-row svg {
  flex-shrink: 0;
  color: var(--primary-text-color, #C2410C);
  opacity: 0.8;
}

.ev-card__ticket-row span {
  font-size: 12.5px;
  color: #667085;
  font-weight: 500;
  line-height: 1.45;
}

.ev-card__ticket-row strong {
  font-weight: 700;
  color: #16202e;
}

/* Organizador — mismo formato que ticket-row */
.ev-card__org-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.ev-card__org-row svg {
  flex-shrink: 0;
  color: var(--primary-text-color, #C2410C);
  opacity: 0.8;
}

.ev-card__org-row span {
  font-size: 12.5px;
  color: #667085;
  font-weight: 500;
  line-height: 1.45;
}

.ev-card__org-row a {
  position: relative;
  z-index: 6;
  color: #374151;
  text-decoration: none;
  font-weight: 600;
}

.ev-card__org-row a:hover {
  color: var(--primary-text-color, #C2410C);
}

/* Footer: badge + CTA texto */
.ev-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: none;
}

/* CTA: texto naranja bold uppercase, sin botón */
.ev-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--tuki-font-sans, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
  font-size: 11.5px;
  font-weight: 800;
  color: var(--primary-text-color, #C2410C);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: gap 0.25s ease, color 0.2s ease;
  white-space: nowrap;
}

.ev-card__cta-arrow {
  transition: transform 0.25s ease;
}

.ev-card:hover .ev-card__cta {
  gap: 8px;
  color: #e05a00;
}

.ev-card:hover .ev-card__cta-arrow {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .ev-card__img-day {
    font-size: 28px;
  }
  .ev-card__img-month-text {
    font-size: 11px;
  }
  .ev-card__title {
    font-size: 18px;
    min-height: calc(18px * 1.3 * 2);
  }
}

/* ================================================
   HOME FINAL POLISH — Apple x Airbnb
   ================================================ */

body.home-page .hero-content {
  max-width: 760px;
}

body.home-page .hero-content.hero-content--premium {
  max-width: 920px;
}

body.home-page .hero-content p,
body.home-page .hero-content .hero-lede {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
}

body.home-page .hero-content .hero-lede {
  max-width: 38rem;
}

body.home-page .hero-actions {
  flex-wrap: wrap;
}

body.home-page .hero-btn {
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

body.home-page .hs-header {
  align-items: flex-end;
  gap: 18px;
}

body.home-page .hs-header__title,
body.home-page .hs-search-head__title,
body.home-page .section-title h2 {
  letter-spacing: -0.035em;
}

body.home-page .events-section .text-center.mt-4 img {
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.events-marquee-item {
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.09);
}

.events-marquee-item:hover {
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
}

.hs-search-form {
  border-radius: 26px;
}

.hs-search-chips {
  row-gap: 10px;
}

.ev-card {
  --ev-card-radius: 22px;
}

.ev-card__datetime-bar {
  height: var(--ev-ticket-height);
  min-height: var(--ev-ticket-height);
  max-height: var(--ev-ticket-height);
}

.ev-card__ticket-row,
.ev-card__org-row {
  min-width: 0;
}

.ev-card__ticket-row span,
.ev-card__org-row span {
  min-width: 0;
}

.feature-item,
.testimonial-item,
.total-client-reviews,
.trust-partners__logos .client-logo-item {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.trust-partners {
  border-top: 1px solid rgba(30, 37, 50, 0.08);
}

@media (max-width: 1199px) {
  body.home-page .hero-content {
    max-width: 700px;
  }

  .events-marquee-item {
    width: 304px;
    height: 196px;
  }

  .hs-search-form {
    border-radius: 24px;
  }

  .hs-sf__field {
    padding: 0 12px;
  }

  .hs-sf__field--grow {
    max-width: min(380px, 100%);
  }

  .hs-sf__field--location {
    flex: 0 1 140px;
  }

  .hs-sf__field--select {
    flex: 1 1 160px;
    min-width: 140px;
  }

  .hs-sf__field--type {
    flex: 0 1 130px;
  }

  .ev-card {
    --ev-section-gap: 12px;
  }

  .ev-card__dtbar-left {
    gap: 12px;
  }

  .ev-card__dtbar-block {
    gap: 6px;
  }

  .ev-card__body {
    padding: var(--ev-block-gap) 16px 16px 18px;
  }
}

@media (max-width: 991px) {
  body.home-page {
    --home-section-space: 60px;
    --home-section-space-tight: 48px;
  }

  body.home-page .hs-header {
    align-items: flex-start;
  }

  .events-marquee {
    padding-bottom: 30px;
  }

  .events-marquee-track::before,
  .events-marquee-track::after {
    width: 56px;
  }

  .events-marquee-item {
    width: 288px;
    height: 188px;
  }

  .hs-search-form {
    row-gap: 0;
  }

  .hs-sf__field--grow {
    flex: 1 0 100%;
    max-width: none;
  }

  .hs-sf__field--location,
  .hs-sf__field--select,
  .hs-sf__field--type {
    flex: 1 1 calc(33.333% - 1px);
  }

  .hs-sf__field,
  .hs-sf__btn {
    min-width: 0;
  }

  .ev-card-col {
    margin-bottom: 24px;
  }

  .ev-card {
    --ev-card-radius: 20px;
    border-radius: var(--ev-card-radius);
  }

  .ev-card {
    --ev-section-gap: 10px;
  }

  .ev-card__dtbar-left {
    gap: 12px;
  }

  .ev-card__img-day {
    font-size: 24px;
  }

  .ev-card__img-month-text {
    font-size: 11px;
  }

  .ev-card__img-year-text,
  .ev-card__ticket-row span,
  .ev-card__org-row span {
    font-size: 12px;
  }

  .ev-card__title {
    font-size: 19px;
    min-height: calc(19px * 1.26 * 2);
  }
}

@media (max-width: 767px) {
  body.home-page {
    --home-section-space-mobile: 48px;
  }

  body.home-page .hero-content-wrapper {
    padding-top: 56px;
    padding-bottom: 44px;
  }

  body.home-page .hero-content,
  body.home-page .hero-content p {
    max-width: 100%;
  }

  body.home-page .hero-actions {
    width: 100%;
    gap: 12px;
  }

  body.home-page .hero-btn {
    width: 100%;
    justify-content: center;
  }

  body.home-page .hs-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .events-marquee-item {
    width: 270px;
    height: 178px;
    border-radius: 16px;
  }

  .hs-search-form {
    border-radius: 22px;
    margin-bottom: 16px;
  }

  .hs-search-head {
    margin-bottom: 12px;
  }

  .ev-card-col {
    margin-bottom: 18px;
  }

  .ev-card {
    --ev-card-radius: 18px;
    border-radius: var(--ev-card-radius);
  }

  .ev-card__wishlist {
    width: 36px;
    height: 36px;
    top: 9px;
    right: 9px;
  }

  .ev-card__price-img {
    top: 10px;
    left: 10px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .ev-card {
    --ev-section-gap: 10px;
  }

  .ev-card__dtbar-left {
    gap: 10px;
  }

  .ev-card__img-day {
    font-size: 22px;
  }

  .ev-card__img-month-text {
    font-size: 10.5px;
  }

  .ev-card__img-year-text {
    font-size: 9px;
  }

  .ev-card__dtbar-badge-icon {
    font-size: 20px;
  }

  .ev-card__body {
    padding: var(--ev-block-gap) 16px 16px 18px;
  }

  .ev-card__loc-row {
    margin-bottom: 4px;
  }

  .ev-card__loc-row span,
  .ev-card__ticket-row span,
  .ev-card__org-row span {
    font-size: 12px;
  }

  .ev-card__title {
    font-size: 18px;
    margin-bottom: 10px;
    min-height: calc(18px * 1.28 * 2);
  }

  .feature-item,
  .testimonial-item {
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  }
}

@media (max-width: 575px) {
  body.home-page .section-title.mb-60,
  body.home-page .section-title.mb-55,
  body.home-page .section-title.mb-30 {
    margin-bottom: 26px !important;
  }

  .events-marquee-track::before,
  .events-marquee-track::after {
    width: 28px;
  }

  .events-marquee-item {
    width: 250px;
    height: 170px;
  }

  .hs-search-wrap {
    padding-top: 2px;
  }

  .hs-sf__field--grow,
  .hs-sf__field--type,
  .hs-sf__btn {
    flex: 1 0 100%;
    max-width: none;
  }

  .hs-sf__field--type {
    border-top: 1px solid rgba(30, 37, 50, 0.06);
  }

  .ev-card__dtbar-left {
    gap: 9px;
  }

  .ev-card__dtbar-block {
    gap: 5px;
  }

  .ev-card__body {
    padding: var(--ev-block-gap) 16px 16px 18px;
  }

  .ev-card__ticket-row,
  .ev-card__org-row {
    align-items: flex-start;
  }

  .ev-card__ticket-row svg,
  .ev-card__org-row svg {
    margin-top: 2px;
  }
}

@media (max-width: 420px) {
  .events-marquee-item {
    width: 234px;
    height: 162px;
  }

  .hs-search-head__title {
    font-size: 20px;
  }

  .hs-sf__btn {
    font-size: 13px;
  }

  .hs-sf__btn-inner {
    gap: 8px;
  }

  .ev-card__dtbar-left {
    gap: 8px;
  }

  .ev-card__img-day {
    font-size: 20px;
  }

  .ev-card__title {
    font-size: 20px;
    min-height: calc(20px * 1.26 * 2);
  }
}

/* ── Grid listing: más presencia (3 cols desktop, 2 tablet, 1 mobile) ── */
@media (min-width: 1200px) {
  .events-section .container,
  .ev-listing__inner {
    max-width: 1360px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .ev-card__title {
    font-size: 22px;
    min-height: calc(22px * 1.26 * 2);
  }
}

@media (min-width: 992px) {
  .events-section .row:has(> .ev-card-col),
  .ev-listing__inner > .row:has(> .ev-card-col) {
    margin-left: -12px;
    margin-right: -12px;
  }

  .events-section .ev-card-col,
  .ev-listing__inner .ev-card-col {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 22px;
  }

  .ev-card__visual {
    box-shadow: none;
  }
}

/* /organizadores — features + testimonios (movidos desde home) */
body.organizers-page {
    --home-surface-primary: #ffffff;
    --home-surface-secondary: #f8fafc;
    --home-section-space: 72px;
    --home-section-space-mobile: 48px;
}

body.organizers-page .feature-section {
    background: var(--home-surface-secondary);
    margin-bottom: 0;
    padding-top: var(--home-section-space);
    padding-bottom: 48px;
}

body.organizers-page .testimonial-section {
    background: var(--home-surface-primary);
    padding-top: 48px;
    padding-bottom: var(--home-section-space);
}

body.organizers-page .feature-section + .testimonial-section {
    padding-top: 40px;
}

body.organizers-page .testimonial-section hr {
    display: none;
}

body.organizers-page .section-title.mb-55,
body.organizers-page .section-title.mb-30 {
    margin-bottom: 36px !important;
}

@media (max-width: 767px) {
    body.organizers-page .feature-section,
    body.organizers-page .testimonial-section {
        padding-top: var(--home-section-space-mobile);
        padding-bottom: var(--home-section-space-mobile);
    }
}

/* ============================================================
