/* ============================================================
   Event Platform — Design System
   ============================================================ */

/* --- Tokens ------------------------------------------------- */
:root {
  /* Surfaces */
  --e-bg:         #EEF2FF;
  --e-surface:    #ffffff;
  --e-bg-card:    #ffffff;

  /* Public primary — violet-shifted indigo */
  --e-primary:    #6252E8;
  --e-primary-dk: #5040D4;
  --e-primary-rgb: 98,82,232;
  --e-primary-faint: rgba(98,82,232,.08);
  --e-primary-grad: linear-gradient(180deg, #7A69EE 0%, #6252E8 55%, #5040D4 100%);

  /* Brand accent — orange, secondary use only */
  --e-accent:     #FF6A00;

  /* Typography */
  --e-text:       #0F172A;
  --e-muted:      #475569;

  /* Structure */
  --e-border:     #E2E8F0;
  --e-shadow-sm:  0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --e-shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --e-shadow-lg:  0 8px 32px rgba(0,0,0,.14);
  --e-radius:     12px;
  --e-radius-sm:  8px;
  --e-font-display: 'Bricolage Grotesque', system-ui, sans-serif;
}

/* --- Base --------------------------------------------------- */
html {
  overflow-x: hidden;
}
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--e-text);
  overflow-x: hidden;
  max-width: 100%;
}

/* --- Public body -------------------------------------------- */
@keyframes pub-bg-breathe {
  0%,100% { background-position: 50% 0%; }
  50%     { background-position: 50% 100%; }
}
@keyframes pub-orb-a {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(120px, 80px) scale(1.15); }
  66%     { transform: translate(-60px, 160px) scale(.9); }
}
@keyframes pub-orb-b {
  0%,100% { transform: translate(0,0) scale(1); }
  40%     { transform: translate(-100px, -60px) scale(1.1); }
  75%     { transform: translate(80px, 100px) scale(.95); }
}
@keyframes pub-orb-c {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(60px, -120px) scale(1.12); }
}
.pub-body {
  background: linear-gradient(170deg, #DDD6FE 0%, #EDE9FE 18%, #FFFFFF 48%, #F5F3FF 72%, #DDD6FE 100%);
  background-size: 100% 220%;
  animation: pub-bg-breathe 16s ease-in-out infinite;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
}
.pub-body::before,
.pub-body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(90px);
}
.pub-body::before {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(139,92,246,.13) 0%, transparent 70%);
  top: -180px; left: -180px;
  animation: pub-orb-a 22s ease-in-out infinite;
}
.pub-body::after {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(56,189,248,.09) 0%, transparent 70%);
  bottom: 10%; right: -140px;
  animation: pub-orb-b 18s ease-in-out infinite;
}
.pub-body-orb-c {
  position: fixed;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,72,153,.07) 0%, transparent 70%);
  bottom: 30%; left: 40%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  animation: pub-orb-c 26s ease-in-out infinite;
}

/* --- Navbar ------------------------------------------------- */
.pub-navbar {
  background: var(--e-surface) !important;
  border-bottom: 1px solid var(--e-border);
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
  padding: 0 !important;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.pub-navbar .container {
  height: 64px;
  align-items: center;
}

.pub-navbar .navbar-brand {
  padding: 0;
  display: flex;
  align-items: stretch;
  margin-right: 1.5rem;
  overflow: hidden;
}

.pub-navbar .nav-link {
  color: var(--e-text) !important;
  font-size: .875rem;
  font-weight: 500;
  padding: .375rem .75rem !important;
  border-radius: var(--e-radius-sm);
  transition: background .15s, color .15s;
}
.pub-navbar .nav-link:hover {
  background: var(--e-bg);
}

.pub-navbar .btn-nav-primary {
  background: var(--e-primary-grad);
  color: #fff !important;
  border: none;
  border-radius: var(--e-radius-sm);
  font-size: .85rem;
  font-weight: 600;
  padding: .5rem 1.1rem;
  text-decoration: none;
  transition: opacity .15s;
  white-space: nowrap;
}
.pub-navbar .btn-nav-primary:hover {
  background: var(--e-primary-grad);
  opacity: .88;
  color: #fff !important;
}

.pub-navbar .btn-nav-ghost {
  background: transparent;
  color: var(--e-text) !important;
  border: 1px solid var(--e-border);
  border-radius: var(--e-radius-sm);
  font-size: .85rem;
  font-weight: 500;
  padding: .45rem .9rem;
  text-decoration: none;
  transition: border-color .15s, background .15s;
  white-space: nowrap;
}
.pub-navbar .btn-nav-ghost:hover {
  border-color: #9ca3af;
  background: var(--e-bg);
}

.pub-navbar .nav-user-name {
  font-size: .875rem;
  font-weight: 500;
  color: var(--e-text) !important;
}

.pub-navbar .dropdown-menu {
  border: 1px solid var(--e-border);
  border-radius: var(--e-radius-sm);
  box-shadow: var(--e-shadow-md);
  padding: .4rem;
}

.pub-navbar .dropdown-item {
  border-radius: 6px;
  font-size: .875rem;
  padding: .45rem .75rem;
}

.pub-navbar .navbar-toggler {
  border-color: var(--e-border);
  padding: .4rem .6rem;
}
.pub-navbar .navbar-toggler:focus { box-shadow: none; }
.pub-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23111827' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.pub-navbar .navbar-collapse {
  background: var(--e-surface);
}

@media (max-width: 991.98px) {
  .pub-navbar {
    height: auto;
    min-height: 64px;
  }
  .pub-navbar .container {
    height: auto;
    flex-wrap: wrap;
    padding-top: 0;
    padding-bottom: 0;
  }
  .pub-navbar .navbar-brand {
    height: 64px;
  }
  .pub-navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1029;
    padding: .75rem 1rem 1rem;
    border-top: 1px solid var(--e-border);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    gap: .25rem;
  }
  .pub-navbar .nav-link {
    padding: .5rem .75rem !important;
  }
  .pub-navbar .navbar-nav.ms-auto {
    flex-direction: row;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .5rem;
  }
}

/* --- Hero --------------------------------------------------- */
.pub-hero {
  background: linear-gradient(135deg, #0f0830 0%, #190d72 40%, #4032A8 70%, #190d72 100%);
  padding: 72px 0 60px;
}

.pub-hero-inner {
  display: flex;
  align-items: stretch;
  gap: 3rem;
  min-height: 100%;
}
.pub-hero-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pub-hero-right {
  width: 420px;
  flex-shrink: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.45);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
@media (max-width: 991px) {
  .pub-hero-right { display: none; }
}

.hero-track {
  display: flex;
  align-items: stretch;
  gap: 8px;
  height: 100%;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.hero-slide {
  flex: 0 0 72%;
  height: 100%;
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  opacity: .55;
  transform: scale(.95);
  transition: opacity .5s, transform .5s;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-slide-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, transparent 100%);
}
.hero-slide-date {
  font-size: .7rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .3rem;
}
.hero-slide-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-slide-dots {
  position: absolute;
  bottom: .65rem;
  left: 50%; transform: translateX(-50%);
  display: flex;
  gap: .4rem;
  z-index: 2;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.hero-dot.active { background: #fff; transform: scale(1.35); }

.pub-hero h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  color: #ffffff;
  letter-spacing: -.025em;
  margin-bottom: .75rem;
}

.pub-hero .hero-sub {
  color: rgba(255,255,255,.6);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.pub-search-wrap {
  max-width: 600px;
}

.pub-search-bar {
  display: flex;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0,0,0,.3);
}

.pub-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: .9rem 1.35rem;
  font-size: .95rem;
  font-family: inherit;
  color: var(--e-text);
  background: transparent;
  min-width: 0;
}
.pub-search-bar input::placeholder { color: #9ca3af; }

.pub-search-bar button {
  background: var(--e-primary-grad);
  color: #fff;
  border: none;
  padding: .9rem 1.6rem;
  font-size: .9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: opacity .15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.pub-search-bar button:hover { opacity: .88; }

@media (max-width: 576px) {
  .pub-search-bar {
    border-radius: 12px;
    flex-direction: column;
  }
  .pub-search-bar input {
    border-bottom: 1px solid var(--e-border);
    border-radius: 12px 12px 0 0;
  }
  .pub-search-bar button {
    border-radius: 0 0 12px 12px;
    text-align: center;
  }
}

/* --- Main content area ------------------------------------- */
.pub-main {
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

/* --- Section header ---------------------------------------- */
.section-hd {
  margin-bottom: 1.25rem;
}
.section-hd h2 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: 0;
}
.section-hd p {
  font-size: .875rem;
  color: var(--e-muted);
  margin-top: .2rem;
  margin-bottom: 0;
}

/* --- Event cards -------------------------------------------- */
.event-card {
  background: var(--e-surface);
  border-radius: var(--e-radius);
  border: 1px solid var(--e-border);
  box-shadow: var(--e-shadow-sm);
  overflow: hidden;
  transition: box-shadow .22s ease, transform .22s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: inherit !important;
  position: relative;
}

.event-card:hover {
  box-shadow: var(--e-shadow-lg), 0 0 28px rgba(139,92,246,.18);
  transform: translateY(-5px);
  border-color: rgba(167,139,250,.3);
}

.event-card-soldout {
  opacity: .7;
  pointer-events: none;
}

.event-card-scarcity {
  position: absolute;
  top: .6rem;
  left: .6rem;
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #FDE68A;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .65rem;
  display: flex;
  align-items: center;
  gap: .3rem;
  z-index: 2;
}

.event-card-soldout-badge {
  position: absolute;
  top: .6rem;
  left: .6rem;
  background: #1e1b4b;
  color: #fff;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .65rem;
  z-index: 2;
}

.event-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: var(--e-border);
}

.event-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(140deg, #e9ecf0 0%, #d6dbe3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

.event-card-body {
  padding: 1rem 1.1rem .75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.event-card-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--e-text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-card-date {
  font-size: .78rem;
  font-weight: 600;
  color: var(--e-primary);
}

.event-card-location {
  font-size: .78rem;
  color: var(--e-muted);
  display: flex;
  align-items: flex-start;
  gap: .25rem;
  line-height: 1.4;
}

.event-card-footer {
  padding: .7rem 1.1rem;
  border-top: 1px solid var(--e-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--e-bg);
}

.event-card-price {
  font-size: .8rem;
  font-weight: 600;
  color: var(--e-muted);
}

.event-card-arrow {
  font-size: .8rem;
  font-weight: 700;
  color: var(--e-primary);
  white-space: nowrap;
}

/* --- Empty state ------------------------------------------- */
.empty-state {
  text-align: center;
  padding: 72px 24px 80px;
}
.empty-state-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: .2;
}
.empty-state h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--e-text);
  margin-bottom: .35rem;
}
.empty-state p {
  color: var(--e-muted);
  font-size: .9rem;
}

/* --- Event detail ------------------------------------------- */
.event-detail-img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: var(--e-radius);
  display: block;
  margin-bottom: 1rem;
}

.event-cover-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}
.event-cover-wrap .event-detail-img {
  margin-bottom: 0;
}
.btn-share-float {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .9rem;
  background: #fff;
  border: 1px solid var(--e-border);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,.14);
  color: var(--e-text);
  font-family: inherit;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: box-shadow .15s;
}
.btn-share-float:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}

/* ── Image format selector (organizer form) ── */
.img-fmt-card {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  border: 2px solid var(--e-border);
  border-radius: var(--e-radius);
  padding: .85rem;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  background: var(--e-surface);
  user-select: none;
}
.img-fmt-card:hover { border-color: rgba(var(--e-primary-rgb),.4); }
.img-fmt-card-active {
  border-color: var(--e-primary);
  background: var(--e-primary-faint);
}
.img-fmt-preview {
  border-radius: 6px;
  background: var(--e-border);
  width: 100%;
}
.img-fmt-info { display: flex; flex-direction: column; gap: .15rem; }
.img-fmt-info strong { font-size: .85rem; font-weight: 700; color: var(--e-text); }
.img-fmt-info span { font-size: .75rem; color: var(--e-muted); }
.img-fmt-info small { font-size: .72rem; color: var(--e-primary); font-weight: 500; }

/* ── Event public page hero grid (image | details) ── */
.ev-hero-grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 1.25rem;
  align-items: start;
}
.ev-hero-grid-square {
  grid-template-columns: 42% 1fr;
}
.ev-hero-grid-story {
  grid-template-columns: 52% 1fr;
}
.ev-hero-grid-banner-only {
  display: block;
}
.ev-title-below-banner {
  margin-top: .875rem;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .ev-hero-grid { grid-template-columns: 1fr; }
}
.ev-hero-details-col { padding-top: .25rem; }
.ev-hero-details-col .event-detail-title { font-size: 1.25rem; margin-bottom: 0; }
.ev-hero-details-col .ev-meta-section { border-top: none; margin-top: .5rem; }

/* Event detail info card (left col) */
.ev-info-img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: var(--e-radius);
  display: block;
  height: auto;
}
.ev-info-img-square {
  aspect-ratio: 1 / 1;
}
.ev-info-img-story {
  aspect-ratio: 9 / 16;
}
@media (max-width: 991.98px) {
  .ev-info-img { aspect-ratio: 16 / 9; }
  .ev-info-img-square { aspect-ratio: 1 / 1; }
  .ev-info-img-story { aspect-ratio: 9 / 16; max-width: 55%; margin: 0 auto; }
  .ev-meta-below-banner { border-top: none; }
}

/* Meta rows (date / location) */
.ev-meta-section {
  border-top: 1px solid var(--e-border);
  margin: 1.25rem 0;
}
.ev-meta-row {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: .875rem 0;
  border-bottom: 1px solid var(--e-border);
}
.ev-meta-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--e-radius-sm);
  background: var(--e-primary-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--e-primary);
}
.ev-meta-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--e-muted);
  line-height: 1;
  margin-bottom: .3rem;
}
.ev-meta-value {
  font-size: .9rem;
  font-weight: 600;
  color: var(--e-text);
  line-height: 1.3;
}
.ev-meta-sub {
  font-size: .82rem;
  color: var(--e-muted);
  margin-top: .15rem;
}

/* Collapsible description (mobile) */
@media (max-width: 991.98px) {
  .ev-desc-wrap {
    max-height: 4.8em;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    transition: max-height .35s ease, mask-image 0s .35s, -webkit-mask-image 0s .35s;
  }
  .ev-desc-wrap.expanded {
    max-height: 200em;
    -webkit-mask-image: none;
    mask-image: none;
    transition: max-height .35s ease;
  }
}
.ev-desc-toggle {
  background: none;
  border: none;
  padding: 0;
  font-size: .8rem;
  font-weight: 600;
  color: var(--e-primary);
  cursor: pointer;
  font-family: inherit;
  margin-top: .4rem;
  display: none;
}
@media (max-width: 991.98px) {
  .ev-desc-toggle { display: inline-block; }
}

/* Section titles */
.ev-desc-section {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--e-border);
}
.ev-section-title {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--e-muted);
  margin-bottom: .75rem;
}

/* Unified purchase card */
.ev-purchase-card {
  background: var(--e-surface);
  border: 1px solid var(--e-border);
  border-radius: var(--e-radius);
  box-shadow: var(--e-shadow-sm);
  overflow: hidden;
}
.ev-card-section {
  padding: 1.25rem;
  border-top: 1px solid var(--e-border);
}
.ev-purchase-card .buyer-form-card {
  background: transparent;
  border: none;
  border-top: 1px solid var(--e-border);
  border-radius: 0;
  box-shadow: none;
  padding: 1.25rem;
}
.ev-coupon-toggle {
  display: flex;
  align-items: center;
  gap: .5rem;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: .85rem;
  font-weight: 600;
  color: var(--e-primary);
  cursor: pointer;
  text-align: left;
}
.ev-coupon-toggle:hover { opacity: .8; }

.event-detail-title {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: .4rem;
}

.event-detail-desc {
  font-size: .82rem;
  line-height: 1.55;
  color: #374151;
}

.event-right-sticky {
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.info-sidebar {
  background: var(--e-surface);
  border: 1px solid var(--e-border);
  border-radius: var(--e-radius);
  box-shadow: var(--e-shadow-sm);
  overflow: hidden;
}

.info-sidebar-section {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--e-border);
}
.info-sidebar-section:last-child { border-bottom: none; }

.info-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--e-muted);
  margin-bottom: .4rem;
}

.info-value {
  font-size: .9rem;
  font-weight: 600;
  color: var(--e-text);
  line-height: 1.45;
}

.info-value-sub {
  font-size: .8rem;
  color: var(--e-muted);
  margin-top: .15rem;
  line-height: 1.4;
}

/* --- Tickets section --------------------------------------- */
.tickets-heading {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: .1rem;
}

.tickets-card {
  background: var(--e-surface);
  border: 1px solid var(--e-border);
  border-radius: var(--e-radius);
  box-shadow: var(--e-shadow-sm);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.ticket-row {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--e-border);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ticket-row:last-child { border-bottom: none; }
.ticket-row-unavailable { opacity: .65; }

.ticket-row-info { flex: 1; min-width: 0; }

.ticket-row-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--e-text);
  line-height: 1.3;
}

.ticket-row-desc {
  font-size: .78rem;
  color: var(--e-muted);
  margin-top: .2rem;
  line-height: 1.4;
}

.ticket-row-avail {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  color: var(--e-muted);
  background: var(--e-bg);
  border: 1px solid var(--e-border);
  border-radius: 20px;
  padding: .1rem .55rem;
  margin-top: .35rem;
}

.ticket-row-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--e-primary);
  white-space: nowrap;
}

.ticket-row-qty {
  display: flex;
  align-items: center;
}
.ticket-row-qty input {
  width: 68px;
  text-align: center;
  border-radius: var(--e-radius-sm);
  border: 1px solid var(--e-border);
  font-size: .875rem;
  font-family: inherit;
  padding: .4rem .5rem;
  outline: none;
  background: var(--e-surface);
  color: var(--e-text);
  transition: border-color .15s, box-shadow .15s;
}
.ticket-row-qty input:focus {
  border-color: var(--e-primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,.12);
}

/* --- Buyer form -------------------------------------------- */
.buyer-form-card {
  background: var(--e-surface);
  border: 1px solid var(--e-border);
  border-radius: var(--e-radius);
  box-shadow: var(--e-shadow-sm);
  padding: 1.5rem;
}

.buyer-form-card .section-label {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 1.1rem;
}

.buyer-form-card .form-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--e-text);
  margin-bottom: .35rem;
}

.buyer-form-card .form-control {
  border-radius: var(--e-radius-sm);
  border-color: var(--e-border);
  font-size: .9rem;
  font-family: inherit;
  padding: .55rem .85rem;
  color: var(--e-text);
  transition: border-color .15s, box-shadow .15s;
}
.buyer-form-card .form-control:focus {
  border-color: var(--e-primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,.12);
}

/* --- Submit button ----------------------------------------- */
.btn-submit-pub {
  background: var(--e-primary-grad);
  color: #fff;
  border: none;
  border-radius: var(--e-radius-sm);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  padding: .875rem 2.5rem;
  cursor: pointer;
  transition: opacity .15s;
  width: 100%;
  display: block;
}
.btn-submit-pub:hover { opacity: .88; color: #fff; }

/* --- Auth pages -------------------------------------------- */
.auth-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 4rem 0 3rem;
}

.auth-card {
  background: var(--e-surface);
  border: 1px solid var(--e-border);
  border-radius: var(--e-radius);
  box-shadow: var(--e-shadow-sm);
  padding: 2rem 2.25rem;
}

.auth-card .form-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--e-text);
  margin-bottom: .35rem;
}

.auth-card .form-control {
  border-radius: var(--e-radius-sm);
  border-color: var(--e-border);
  font-size: .9rem;
  font-family: inherit;
  padding: .6rem .85rem;
  color: var(--e-text);
  transition: border-color .15s, box-shadow .15s;
}
.auth-card .form-control:focus {
  border-color: var(--e-primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,.12);
}

/* --- Confirmation page ------------------------------------- */
.confirm-icon-wrap {
  width: 72px;
  height: 72px;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.confirm-ticket-card {
  background: var(--e-surface);
  border: 1px solid var(--e-border);
  border-radius: var(--e-radius);
  box-shadow: var(--e-shadow-sm);
  overflow: hidden;
  margin-bottom: 1rem;
}

.confirm-ticket-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--e-border);
  background: var(--e-bg);
}

.confirm-ticket-body {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.ticket-code-badge {
  display: inline-block;
  background: #111827;
  color: #fff;
  font-family: 'Courier New', monospace;
  font-size: .85rem;
  padding: .3rem .75rem;
  border-radius: 6px;
  letter-spacing: .05em;
  margin-top: .4rem;
}

/* --- Organizer area ---------------------------------------- */
:root {
  /* Organizer primary — violet-shifted, darker and more sober than public */
  --org-primary:    #4535A8;
  --org-primary-dk: #3A2A92;
  --org-bg:         #F1F5F9;
  --org-primary-rgb: 69,53,168;
  --org-primary-grad: linear-gradient(180deg, #5A47BC 0%, #4535A8 55%, #3A2A92 100%);
}

.org-body {
  background: linear-gradient(180deg, #EDE9FE 0%, #F8FAFC 35%, #FFFFFF 100%);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.org-body .org-main { flex: 1; }

.org-navbar {
  background: var(--e-surface) !important;
  border-bottom: 1px solid var(--e-border);
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
  padding: 0 !important;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.org-navbar .container {
  height: 64px;
  align-items: center;
}

.org-navbar .navbar-brand {
  padding: 0;
  display: flex;
  align-items: stretch;
  margin-right: 1.5rem;
  overflow: hidden;
}

.org-navbar .nav-link {
  color: var(--e-text) !important;
  font-size: .875rem;
  font-weight: 500;
  padding: .375rem .75rem !important;
  border-radius: var(--e-radius-sm);
  transition: background .15s, color .15s;
}
.org-navbar .nav-link:hover { background: var(--org-bg); }
.org-navbar .nav-link.active { color: var(--org-primary) !important; }

.org-navbar .btn-nav-org {
  background: var(--org-primary-grad);
  color: #fff !important;
  border: none;
  border-radius: var(--e-radius-sm);
  font-size: .85rem;
  font-weight: 600;
  padding: .5rem 1.1rem;
  text-decoration: none;
  transition: opacity .15s;
  white-space: nowrap;
}
.org-navbar .btn-nav-org:hover { opacity: .88; color: #fff !important; }

.org-navbar .btn-nav-ghost {
  background: transparent;
  color: var(--e-text) !important;
  border: 1px solid var(--e-border);
  border-radius: var(--e-radius-sm);
  font-size: .85rem;
  font-weight: 500;
  padding: .45rem .9rem;
  text-decoration: none;
  transition: border-color .15s, background .15s;
}
.org-navbar .btn-nav-ghost:hover { border-color: #9ca3af; background: var(--org-bg); }

.org-navbar .dropdown-menu {
  border: 1px solid var(--e-border);
  border-radius: var(--e-radius-sm);
  box-shadow: var(--e-shadow-md);
  padding: .4rem;
}
.org-navbar .dropdown-item {
  border-radius: 6px;
  font-size: .875rem;
  padding: .45rem .75rem;
}
.org-navbar .navbar-toggler {
  border-color: var(--e-border);
  padding: .4rem .6rem;
}
.org-navbar .navbar-toggler:focus { box-shadow: none; }
.org-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23111827' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
  .org-navbar {
    height: auto;
    min-height: 64px;
  }
  .org-navbar .container { height: auto; flex-wrap: wrap; }
  .org-navbar .navbar-brand { height: 64px; }
  .org-navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1029;
    background: var(--e-surface);
    padding: .75rem 1rem 1rem;
    border-top: 1px solid var(--e-border);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
  }
  .org-navbar .nav-link { padding: .5rem .75rem !important; }
}

/* Org main content */
.org-main {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

/* Event page header */
.org-event-hd { margin-bottom: 1.25rem; }

.org-event-hd-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .65rem;
}
.org-event-hd-nav .org-back { margin-bottom: 0; }

.org-event-hd-title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--e-text);
  margin: 0 0 .5rem;
}
.org-event-hd-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .2rem .5rem;
  font-size: .8rem;
  color: var(--e-muted);
}
.org-event-hd-meta-item {
  display: inline-flex;
  align-items: center;
  gap: .22rem;
}
.org-event-hd-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--e-border);
  flex-shrink: 0;
}
.org-hd-actions {
  display: flex;
  gap: .4rem;
  align-items: center;
  flex-shrink: 0;
}

.org-footer {
  border-top: 1px solid var(--e-border);
  background: var(--e-surface);
  padding: 1rem 0;
  margin-top: auto;
}
.org-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
  color: var(--e-muted);
}
.org-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .1rem .75rem;
}
.org-footer-links a {
  color: var(--e-muted);
  text-decoration: none;
  font-size: .78rem;
}
.org-footer-links a:hover { color: var(--e-text); }

/* Org page header */
.org-page-hd {
  margin-bottom: 1.75rem;
}
.org-page-hd h1 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: .15rem;
}
.org-page-hd p {
  font-size: .875rem;
  color: var(--e-muted);
  margin: 0;
}

/* --- Urgency badges ----------------------------------------- */
.org-urgency-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  padding: .15rem .5rem;
  border-radius: 20px;
  vertical-align: middle;
  line-height: 1.4;
}
.org-urgency-hoje  { background: #dc2626; color: #fff; }
.org-urgency-amanha { background: #d97706; color: #fff; }
.org-urgency-semana { background: #ede9fe; color: #5b21b6; }
.org-urgency-normal { background: var(--e-bg); color: var(--e-muted); }

/* --- Next event hero card ----------------------------------- */
.org-next-event-card {
  background: var(--e-surface);
  border: 1px solid var(--e-border);
  border-left: 4px solid #6d28d9;
  border-radius: var(--e-radius);
  box-shadow: var(--e-shadow-sm);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: box-shadow .15s;
}
.org-next-event-card:hover { box-shadow: var(--e-shadow-md); }
@media (max-width: 767px) {
  .org-next-event-card { flex-direction: column; gap: .75rem; }
  .org-next-event-stats { align-items: flex-start; width: 100%; flex-direction: row; flex-wrap: wrap; gap: .5rem; }
  .org-next-event-bar { width: 120px; }
  .org-next-event-progress { flex: 1; }
}
.org-next-event-badge { flex-shrink: 0; padding-top: .2rem; }
.org-next-event-info { flex: 1; min-width: 0; }
.org-next-event-title { font-weight: 700; font-size: .95rem; color: var(--e-text); word-break: break-word; }
.org-next-event-date  { font-size: .78rem; color: var(--e-muted); margin-top: .2rem; }
.org-next-event-stats { display: flex; flex-direction: column; align-items: flex-end; gap: .25rem; flex-shrink: 0; }
.org-next-event-stat  { display: flex; align-items: baseline; gap: .3rem; }
.org-next-event-stat-value { font-size: 1.3rem; font-weight: 800; line-height: 1; }
.org-next-event-stat-label { font-size: .72rem; color: var(--e-muted); }
.org-next-event-progress { display: flex; align-items: center; gap: .4rem; }
.org-next-event-bar { width: 80px; height: 5px; background: var(--e-border); border-radius: 3px; overflow: hidden; }
.org-next-event-bar-fill { height: 100%; background: linear-gradient(90deg, #a78bfa, #5b21b6); border-radius: 3px; }
.org-next-event-pct { font-size: .72rem; color: var(--e-muted); white-space: nowrap; }

/* --- Quick actions strip ------------------------------------ */
.org-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.org-quick-action {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .85rem;
  font-size: .8rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--e-text);
  background: var(--e-surface);
  border: 1px solid var(--e-border);
  border-radius: var(--e-radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background .12s, box-shadow .12s;
}
.org-quick-action:hover {
  background: var(--e-bg);
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  color: var(--e-text);
}

/* Org stat card */
.org-stat-card {
  background: var(--e-surface);
  border: 1px solid var(--e-border);
  border-radius: var(--e-radius);
  box-shadow: var(--e-shadow-sm);
  padding: 1.25rem 1.5rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.org-stat-card .stat-value {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.org-stat-card .stat-label {
  font-size: .78rem;
  color: var(--e-muted);
  margin-top: .25rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Org content card */
.org-card {
  background: var(--e-surface);
  border: 1px solid var(--e-border);
  border-radius: var(--e-radius);
  box-shadow: var(--e-shadow-sm);
  overflow: hidden;
}
.org-card-hd {
  padding: .9rem 1.25rem;
  border-bottom: 1px solid var(--e-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--org-bg);
}
.org-card-hd-title {
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: -.005em;
}
.org-card-hd-info {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.org-card-hd-sub {
  font-size: .78rem;
  font-weight: 400;
  color: var(--e-muted);
}
@media (max-width: 576px) {
  .org-card-hd-info {
    flex-direction: column;
    align-items: flex-start;
    gap: .1rem;
  }
}

/* Org form card */
.org-form-card {
  background: var(--e-surface);
  border: 1px solid var(--e-border);
  border-radius: var(--e-radius);
  box-shadow: var(--e-shadow-sm);
  padding: 1.75rem;
}
.org-form-card .form-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--e-text);
  margin-bottom: .35rem;
}
.org-form-card .form-control,
.org-form-card .form-select {
  border-radius: var(--e-radius-sm);
  border-color: var(--e-border);
  font-size: .9rem;
  font-family: inherit;
  padding: .55rem .85rem;
  color: var(--e-text);
  transition: border-color .15s, box-shadow .15s;
}
.org-form-card .form-control:focus,
.org-form-card .form-select:focus {
  border-color: var(--org-primary);
  box-shadow: 0 0 0 3px rgba(55,48,163,.12);
}
.org-form-card .input-group-text {
  border-color: var(--e-border);
  background: var(--org-bg);
  font-size: .875rem;
  color: var(--e-muted);
}
.org-form-card .form-text {
  font-size: .75rem;
  color: var(--e-muted);
}

/* Org table */
.org-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
.org-table th {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--e-muted);
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--e-border);
  background: #fafbfc;
  white-space: nowrap;
}
.org-table td {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--e-border);
  vertical-align: middle;
  color: var(--e-text);
}
.org-table tbody tr:last-child td { border-bottom: none; }
.org-table tbody tr:hover { background: #fafbfc; }
.org-table tfoot td {
  padding: .65rem 1rem;
  border-top: 2px solid var(--e-border);
  background: #fafbfc;
  font-weight: 600;
}

/* Org list group (events list) */
.org-list-item {
  background: var(--e-surface);
  border: none;
  border-bottom: 1px solid var(--e-border);
  padding: .9rem 1.1rem;
  cursor: pointer;
  transition: background .12s;
  display: block;
}
.org-list-item:last-child { border-bottom: none; }
.org-list-item:hover { background: #fafbfc; }

/* Responsive grid layout inside each list item */
.oli {
  display: grid;
  grid-template-areas: "title badge" "meta btn";
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: .1rem .5rem;
}
.oli-title { grid-area: title; font-size:.9rem; font-weight:700; color:var(--e-text); min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.oli-badge { grid-area: badge; align-self:center; }
.oli-meta  { grid-area: meta;  font-size:.78rem; color:var(--e-muted); margin-top:.1rem; min-width:0; }
.oli-btn   { grid-area: btn;   align-self:center; display:flex; align-items:center; justify-content:flex-end; }
@media (min-width: 768px) {
  .oli {
    grid-template-areas: "title badge btn" "meta  badge btn";
    grid-template-columns: 1fr auto auto;
    column-gap: .75rem;
    row-gap: 0;
  }
  .oli-title { align-self: end; white-space: normal; }
  .oli-meta  { align-self: start; margin-top:.15rem; }
  .oli-badge { align-self: center; }
  .oli-btn   { align-self: center; }
}

.org-list-item-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--e-text);
}
.org-list-item-meta {
  font-size: .78rem;
  color: var(--e-muted);
  margin-top: .15rem;
}

/* Org buttons */
.btn-org {
  background: var(--org-primary-grad);
  color: #fff;
  border: none;
  border-radius: var(--e-radius-sm);
  font-family: inherit;
  font-size: .9rem;
  font-weight: 700;
  padding: .6rem 1.4rem;
  cursor: pointer;
  transition: opacity .15s;
  display: inline-block;
  text-decoration: none;
}
.btn-org:hover { opacity: .88; color: #fff; }

.btn-org-outline {
  background: transparent;
  color: var(--org-primary);
  border: 1px solid var(--org-primary);
  border-radius: var(--e-radius-sm);
  font-family: inherit;
  font-size: .875rem;
  font-weight: 600;
  padding: .5rem 1.1rem;
  cursor: pointer;
  transition: background .15s, color .15s;
  display: inline-block;
  text-decoration: none;
}
.btn-org-outline:hover {
  background: var(--org-primary);
  color: #fff;
}

.btn-org-ghost {
  background: transparent;
  color: var(--e-text);
  border: 1px solid var(--e-border);
  border-radius: var(--e-radius-sm);
  font-family: inherit;
  font-size: .875rem;
  font-weight: 500;
  padding: .5rem 1.1rem;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  display: inline-block;
  text-decoration: none;
}
.btn-org-ghost:hover { background: var(--org-bg); border-color: #9ca3af; color: var(--e-text); }

.btn-org-icon {
  width: 36px;
  height: 36px;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
[data-tooltip] {
  position: relative;
}
[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #1f2937;
  color: #fff;
  font-size: .72rem;
  font-weight: 500;
  white-space: nowrap;
  padding: .25rem .55rem;
  border-radius: 5px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .12s;
  z-index: 9999;
}
[data-tooltip]:hover::after {
  opacity: 1;
}

.btn-org-sm {
  font-size: .78rem;
  padding: .35rem .75rem;
}

.org-chart-filter-bar {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--e-border);
  border-radius: var(--e-radius-sm);
  background: var(--e-bg);
  overflow: hidden;
}
.org-chart-select {
  font-size: .8rem;
  font-weight: 500;
  padding: .3rem .55rem;
  border: none;
  border-right: 1px solid var(--e-border);
  border-radius: 0;
  background: transparent;
  color: var(--e-text);
  cursor: pointer;
  font-family: inherit;
  line-height: 1.4;
}
.org-chart-select:last-child { border-right: none; }
.org-chart-select:focus {
  outline: none;
  background: color-mix(in srgb, var(--e-primary) 6%, transparent);
}
input.org-chart-select { color: var(--e-text); }
.org-chart-filter-sep {
  font-size: .72rem;
  color: var(--e-muted);
  padding: 0 .35rem;
  border-right: 1px solid var(--e-border);
  display: flex;
  align-items: center;
  white-space: nowrap;
  background: transparent;
}
.org-chart-filter-btn {
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .7rem;
  border: none;
  background: transparent;
  color: var(--e-muted);
  cursor: pointer;
  font-family: inherit;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.org-chart-filter-btn:hover,
.org-chart-filter-btn.active {
  background: color-mix(in srgb, var(--e-primary) 10%, transparent);
  color: var(--e-primary);
}
/* Date picker dropdown */
.org-date-drop {
  display: none;
  position: fixed;
  z-index: 1050;
  background: var(--e-surface);
  border: 1px solid var(--e-border);
  border-radius: var(--e-radius-sm);
  box-shadow: var(--e-shadow-md, 0 4px 16px rgba(0,0,0,.12));
  padding: .6rem .75rem;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
}
.org-date-drop.open { display: flex; }
.org-date-drop-input {
  font-size: .8rem;
  padding: .3rem .5rem;
  border: 1px solid var(--e-border);
  border-radius: var(--e-radius-sm);
  background: var(--e-bg);
  color: var(--e-text);
  font-family: inherit;
}
.org-date-drop-btn {
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border: 1px solid var(--e-primary);
  border-radius: var(--e-radius-sm);
  background: var(--e-primary);
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .15s;
}
.org-date-drop-btn:hover { opacity: .88; }

/* Funnel chart */
.org-funnel { display: flex; flex-direction: column; gap: .9rem; }
.org-funnel-step { display: grid; grid-template-columns: 100px 1fr 56px; align-items: start; gap: .5rem; }
.org-funnel-label { font-size: .78rem; font-weight: 600; color: var(--e-text); text-align: right; white-space: nowrap; height: 12px; display: flex; align-items: center; justify-content: flex-end; }
.org-funnel-bar-wrap { height: 12px; background: var(--e-border); border-radius: 4px; overflow: hidden; }
.org-funnel-bar { height: 100%; background: linear-gradient(90deg, #a78bfa, #5b21b6); border-radius: 4px; transition: width .5s ease; min-width: 3px; }
.org-funnel-count { font-size: .82rem; font-weight: 700; color: var(--e-text); height: 12px; display: flex; align-items: center; }
.org-funnel-pct { display: block; font-size: .68rem; font-weight: 400; color: var(--e-muted); margin-top: .08rem; }
.org-funnel-bar-col { display: flex; flex-direction: column; gap: .2rem; }
.org-funnel-desc { font-size: .68rem; color: var(--e-muted); }


/* Org breadcrumb / back link */
.org-back {
  font-size: .82rem;
  color: var(--e-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  margin-bottom: 1.25rem;
  transition: color .15s;
}
.org-back:hover { color: var(--e-text); }

/* Org submit */
.btn-org-submit {
  background: var(--org-primary-grad);
  color: #fff;
  border: none;
  border-radius: var(--e-radius-sm);
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  padding: .75rem 2rem;
  cursor: pointer;
  transition: opacity .15s;
}
.btn-org-submit:hover { opacity: .88; color: #fff; }

/* Org status badges */
.org-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 20px;
  letter-spacing: .02em;
}
.org-badge-published {
  background: #dcfce7;
  color: #15803d;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.org-badge-published::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}
.org-badge-draft     { background: #f3f4f6; color: #6b7280; }
.org-badge-cancelled { background: #fee2e2; color: #dc2626; }
.org-badge-finished  { background: #1f2937; color: #f9fafb; }
.org-badge-active    { background: #ede9fe; color: #5b21b6; }
.org-badge-inactive  { background: #f3f4f6; color: #6b7280; }
.org-badge-warning   { background: #fef3c7; color: #d97706; }
.org-badge-checkedin { background: #ede9fe; color: #5b21b6; }
.org-badge-pending   { background: #fef3c7; color: #d97706; }

/* --- Footer ------------------------------------------------ */
.pub-footer {
  background: #0a0e1a;
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}
.pub-footer a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
}
.pub-footer a:hover { color: #fff; }
.pub-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pub-footer-brand p { color: rgba(255,255,255,.4); font-size: .82rem; margin: .75rem 0 0; line-height: 1.5; max-width: 220px; }
.pub-footer-col h6 {
  color: rgba(255,255,255,.9);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .75rem;
}
.pub-footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .4rem;
}
.pub-footer-col ul li a {
  font-size: .83rem;
  color: rgba(255,255,255,.5);
}
.pub-footer-col ul li a:hover { color: #fff; }
.pub-footer-bottom {
  padding-top: 1.25rem;
  text-align: center;
}
.pub-footer-bottom p {
  color: rgba(255,255,255,.25);
  font-size: .75rem;
  margin: 0;
}
@media (max-width: 768px) {
  .pub-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pub-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .pub-footer-grid { grid-template-columns: 1fr; }
}

/* --- Info pages -------------------------------------------- */
.info-section {
  margin-bottom: 2.5rem;
}
.info-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .75rem;
}
.info-list {
  padding-left: 1.25rem;
  margin: .5rem 0;
  line-height: 1.9;
}
.info-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1rem 0;
}
.info-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-step-num {
  min-width: 32px;
  height: 32px;
  background: var(--e-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .1rem;
}
.info-step p { margin: .2rem 0 0; font-size: .9rem; color: var(--e-muted); }
.info-step strong { font-size: .95rem; }
.info-contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--e-surface);
  border: 1px solid var(--e-border);
  border-radius: 10px;
  margin: 1rem 0;
}
.info-contact-item p { margin: .2rem 0 0; font-size: .9rem; }
.info-contact-item strong { font-size: .9rem; }
.btn-info-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: .65rem 1.4rem;
  background: var(--e-primary-grad);
  color: #fff;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
}
.btn-info-cta:hover { opacity: .88; color: #fff; }
.faq-item {
  border: 1px solid var(--e-border);
  border-radius: 10px;
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-question {
  padding: 1rem 1.1rem;
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  user-select: none;
}
.faq-question:hover { background: var(--e-surface); }
.faq-chevron { flex-shrink: 0; transition: transform .2s; }
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.1rem 1rem;
  font-size: .9rem;
  color: var(--e-muted);
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* --- Collapsible org cards --------------------------------- */
.org-card-collapsible .org-card-hd {
  cursor: pointer;
  user-select: none;
}
.org-card-collapsible .org-card-hd:hover {
  background: #e8eaf0;
}
.collapse-chevron {
  transition: transform .28s ease;
  color: var(--e-muted);
  flex-shrink: 0;
}
.org-card-collapsible.is-open .collapse-chevron {
  transform: rotate(180deg);
}
.card-body-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}
.org-card-collapsible.is-open .card-body-collapse {
  max-height: 3000px;
}

/* --- KPI strip --------------------------------------------- */
.org-kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.org-kpi-card {
  background: var(--e-surface);
  border: 1px solid var(--e-border);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  text-decoration: none;
  display: block;
}
.org-kpi-card--link {
  transition: box-shadow .15s, transform .15s;
}
.org-kpi-card--link:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  transform: translateY(-1px);
}
.org-kpi-value {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: .2rem;
}
.org-kpi-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--e-text);
  margin-bottom: .15rem;
}
.org-kpi-sub {
  font-size: .72rem;
  color: var(--e-muted);
}

/* --- Tab nav ----------------------------------------------- */
.org-tab-nav {
  display: flex;
  gap: .25rem;
  border-bottom: 2px solid var(--e-border);
  margin-bottom: 1.5rem;
}
.org-tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  padding: .6rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--e-muted);
  cursor: pointer;
  border-radius: 6px 6px 0 0;
  transition: color .15s, border-color .15s, background .15s;
}
.org-tab-btn:hover {
  color: var(--e-text);
  background: var(--e-border);
}
.org-tab-btn.active {
  color: var(--e-primary);
  border-bottom-color: var(--e-primary);
  background: none;
}
.org-tab-panel {
  display: none;
}
.org-tab-panel.active {
  display: block;
  min-height: 100vh;
}

/* --- Flash alerts ------------------------------------------ */
.flash-success { border-left: 3px solid #16a34a; }
.flash-danger  { border-left: 3px solid #dc2626; }
.flash-info    { border-left: 3px solid var(--e-primary); }

/* --- WhatsApp support button ------------------------------- */
@keyframes wa-pulse {
  0%   { box-shadow: 0 4px 16px rgba(37,211,102,.35), 0 0 0 0 rgba(37,211,102,.45); }
  70%  { box-shadow: 0 4px 16px rgba(37,211,102,.35), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 16px rgba(37,211,102,.35), 0 0 0 0 rgba(37,211,102,0); }
}
.wa-support-btn {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 1040;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  width: 46px;
  height: 46px;
  padding: 0;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  font-size: .78rem;
  font-weight: 600;
  animation: wa-pulse 2.2s ease-out infinite;
  cursor: pointer;
  border: none;
}
.wa-support-btn:hover {
  box-shadow: 0 6px 24px rgba(37,211,102,.55);
  transform: translateY(-2px);
  animation: none;
}

/* ============================================================
   Mobile improvements — targeted small-screen fixes
   Desktop styles above are preserved unchanged.
   ============================================================ */

/* --- Navbar collapses (≤ 991.98px) ------------------------- */
@media (max-width: 991.98px) {
  /* Organizer navbar: match pub-navbar collapse treatment */
  .org-navbar .navbar-nav.ms-auto {
    flex-direction: row;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .5rem;
  }

  /* Public & org navbars: make action buttons full-width block so the
     entire row is tappable, not just the inline text area */
  .pub-navbar .btn-nav-primary,
  .pub-navbar .btn-nav-ghost,
  .org-navbar .btn-nav-org,
  .org-navbar .btn-nav-ghost {
    display: block;
    text-align: center;
  }
}

/* --- Mobile table: sticky first col + scroll gradient (< 768px) --- */
@media (max-width: 767.98px) {
  .org-table .org-sticky-col {
    position: sticky;
    left: 0;
    z-index: 2;
    background: var(--e-surface);
  }
  .org-table thead .org-sticky-col {
    background: var(--org-bg, var(--e-surface));
    z-index: 3;
  }
  .org-table tbody tr:hover .org-sticky-col { background: #fafbfc; }

  /* Scroll-right indicator: inset box-shadow stays fixed on the element box, doesn't scroll */
  .table-responsive.has-overflow {
    box-shadow: inset -32px 0 20px -12px var(--e-surface);
  }
}

/* --- Small screen fixes (≤ 576px) -------------------------- */
@media (max-width: 576px) {

  /* Content areas: reduce vertical padding to reclaim screen space */
  .pub-main { padding-top: 1.5rem; padding-bottom: 2.5rem; }
  .org-main { padding-top: 1.25rem; padding-bottom: 2.5rem; }

  /* Hero section: reduce vertical padding */
  .pub-hero { padding: 48px 0 40px; }

  /* Public navbar: stack auth action buttons vertically */
  .pub-navbar .navbar-nav.ms-auto {
    flex-direction: column;
    align-items: stretch;
    gap: .375rem;
    margin-top: .375rem;
  }
  .pub-navbar .btn-nav-primary,
  .pub-navbar .btn-nav-ghost {
    display: block;
    text-align: center;
    padding: .7rem 1rem;
  }

  /* Organizer navbar: stack action buttons vertically */
  .org-navbar .navbar-nav.ms-auto {
    flex-direction: column;
    align-items: stretch;
    gap: .375rem;
    margin-top: .375rem;
  }
  .org-navbar .btn-nav-org,
  .org-navbar .btn-nav-ghost {
    display: block;
    text-align: center;
    padding: .7rem 1rem;
  }

  .org-event-hd-title { font-size: 1.3rem; letter-spacing: -.02em; }
  .org-event-hd-meta  { font-size: .75rem; }
  .org-event-hd-nav   { margin-bottom: .5rem; }

  .org-funnel-step { grid-template-columns: 76px 1fr 48px; gap: .35rem; }
  .org-funnel-label { font-size: .72rem; }

  /* Right column sticky wrapper: disable on mobile (sticky is meaningless stacked) */
  .event-right-sticky { position: static; max-height: none; overflow-y: visible; }

  /* Ticket rows: wrap ticket name/desc to its own line above price+qty */
  .ticket-row { flex-wrap: wrap; gap: .6rem .75rem; }
  .ticket-row-info { width: 100%; flex: none; }
  .ticket-row-price { flex: 1; }

  /* Ticket qty +/− buttons: meet 44px touch-target recommendation */
  .ticket-qty-btn {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.2rem !important;
  }

  /* Stat cards: reduce value font so monetary strings fit 3-col layout */
  .org-stat-card { padding: 1rem; }
  .org-stat-card .stat-value { font-size: 1.4rem; }

  /* KPI strip: 2 columns on mobile, tighter */
  .org-kpi-strip { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
  .org-kpi-value { font-size: 1.3rem; }
  .org-kpi-card { padding: .9rem 1rem; }
  .org-kpi-label { font-size: .75rem; }
  .org-kpi-sub { font-size: .68rem; }

  /* Tíquete Médio split: stack vertically on mobile */
  .org-kpi-split { flex-direction: column !important; gap: 0 !important; }
  .org-kpi-split > div:last-child {
    border-left: none !important;
    padding-left: 0 !important;
    border-top: 1px solid var(--e-border);
    padding-top: .4rem;
    margin-top: .35rem;
  }

  /* Tab select (mobile replacement for tab nav) */
  .org-tab-select {
    width: 100%;
    font-size: .9rem;
    font-weight: 600;
    padding: .6rem .9rem;
    border: 1px solid var(--e-border);
    border-radius: var(--e-radius-sm);
    background: var(--e-surface);
    color: var(--e-text);
    appearance: auto;
    cursor: pointer;
  }

  /* Header action buttons: smaller, wrap cleanly */
  .org-hd-actions { gap: .4rem; }
  .org-hd-actions .btn-org,
  .org-hd-actions .btn-org-ghost,
  .org-hd-actions .btn-org-outline,
  .org-hd-actions button.btn-org-ghost {
    font-size: .8rem !important;
    padding: .4rem .65rem !important;
  }
  .org-hd-actions form.d-inline { display: contents !important; }

  /* Chart card header: stack title above controls on mobile */
  .org-card-hd--chart {
    flex-direction: column;
    align-items: flex-start;
    gap: .6rem;
  }

  /* Chart filter bar: full width on mobile */
  .org-chart-filter-bar.org-chart-controls { width: 100%; }
  /* Date picker dropdown: full width on mobile */
  .org-date-drop { left: 0; right: 0; flex-wrap: wrap; }
  .org-date-drop-input { flex: 1; min-width: 120px; }

  /* Organizer card headers: align button group to top-right, subtitle falls below title */
  .org-card-hd { align-items: flex-start; }

  /* Auth card: reduce horizontal padding on narrow screens */
  .auth-card { padding: 1.5rem 1.25rem; }

  /* Auth wrap: less top padding on mobile */
  .auth-wrap { padding-top: 2rem; padding-bottom: 2rem; }
}

/* ─── Announcement Banner ─── */
.pub-announce {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  background: var(--e-primary);
  color: #fff;
  font-size: .82rem;
  font-weight: 500;
  padding: .55rem 1rem;
  position: relative;
  text-align: center;
}
.pub-announce strong { font-weight: 700; }
.pub-announce-close {
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,.8);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  padding: .2rem .4rem;
}
.pub-announce-close:hover { color: #fff; }

/* ─── Footer social ─── */
.pub-footer-social {
  display: flex;
  gap: .75rem;
  margin-top: .25rem;
}
.pub-footer-social-link {
  color: var(--e-muted);
  transition: color .15s;
}
.pub-footer-social-link:hover { color: var(--e-primary); }

/* ─── Event card progress bar ─── */
.event-card-progress-wrap {
  margin-top: .6rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.event-card-progress-bar {
  height: 5px;
  background: var(--e-border);
  border-radius: 99px;
  overflow: hidden;
}
.event-card-progress-fill {
  height: 100%;
  background: var(--e-primary);
  border-radius: 99px;
  transition: width .3s ease;
}
.event-card-progress-full { background: #dc2626; }
.event-card-progress-label {
  font-size: .7rem;
  color: var(--e-muted);
  font-weight: 500;
}

/* ─── Organizer landing — stats bar ─── */
.org-lp-stats-bar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 2rem 0;
}
@media (prefers-color-scheme: dark) {
  .org-lp-stats-bar { background: var(--e-bg-card); }
}
.org-lp-stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.org-lp-stat {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: .5rem 1.5rem;
}
.org-lp-stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--e-primary);
  line-height: 1;
}
.org-lp-stat-label {
  font-size: .8rem;
  color: var(--e-muted);
  margin-top: .25rem;
  font-weight: 500;
}
.org-lp-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--e-border);
  flex-shrink: 0;
}

/* ─── Organizer landing — comparison table ─── */
.org-lp-compare-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--e-border);
}
.org-lp-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.org-lp-compare-table thead tr {
  background: var(--e-primary);
  color: #fff;
}
.org-lp-compare-table th {
  padding: .875rem 1.25rem;
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  text-align: left;
}
.org-lp-compare-table td {
  padding: .75rem 1.25rem;
  border-bottom: 1px solid var(--e-border);
}
.org-lp-compare-table tbody tr:last-child td { border-bottom: none; }
.org-lp-compare-table tbody tr:nth-child(even) { background: var(--e-surface); }
.org-lp-col-us { width: 28%; }
.org-lp-col-them { width: 28%; color: var(--e-text); }
.org-lp-check { color: #16a34a; font-weight: 700; margin-right: .3rem; }
.org-lp-cross { color: #dc2626; font-weight: 700; margin-right: .3rem; }

/* ─── Home Page ─── */

.home-hero {
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(135deg, #4a0a2e 0%, #2d0a6e 50%, #1a0a4a 100%);
  position: relative;
  overflow: hidden;
}
.vv-aurora { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.vv-blob { position: absolute; border-radius: 50%; filter: blur(110px); opacity: .25; will-change: transform; }
.vv-blob-1 { width:650px;height:550px;background:radial-gradient(circle,#9333ea,#4a0a6e);top:-15%;left:-8%;animation:blob1 18s ease-in-out infinite; }
.vv-blob-2 { width:550px;height:460px;background:radial-gradient(circle,#a855f7,#6b21a8);top:10%;right:-10%;animation:blob2 22s ease-in-out infinite;opacity:.2; }
.vv-blob-3 { width:480px;height:420px;background:radial-gradient(circle,#c084fc,#7e22ce);bottom:-20%;left:15%;animation:blob3 16s ease-in-out infinite;opacity:.15; }
.vv-blob-4 { width:420px;height:360px;background:radial-gradient(circle,#d946ef,#581c87);top:30%;left:38%;animation:blob4 24s ease-in-out infinite;opacity:.15; }
.vv-blob-5 { width:340px;height:300px;background:radial-gradient(circle,#e879f9,#3b0764);top:-8%;right:22%;animation:blob5 20s ease-in-out infinite;opacity:.2; }
.vv-blob-6 {
  width: 500px; height: 400px;
  background: radial-gradient(circle, #06b6d4, #0c4a6e);
  bottom: -10%; right: 15%;
  animation: blob1 20s ease-in-out infinite reverse;
  opacity: .22;
}
.vv-blob-7 {
  width: 380px; height: 340px;
  background: radial-gradient(circle, #f97316, #7c2d12);
  top: 50%; left: -5%;
  animation: blob3 17s ease-in-out infinite reverse;
  opacity: .18;
}
.vv-blob-8 {
  width: 300px; height: 280px;
  background: radial-gradient(circle, #ec4899, #831843);
  top: 5%; left: 45%;
  animation: blob5 23s ease-in-out infinite;
  opacity: .2;
}
.home-hero-layout {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.home-hero-logo-col {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.home-hero-logo-img {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 4px 32px rgba(167,139,250,.5));
  position: relative;
  z-index: 1;
}
.home-hero-inner {
  position: relative;
  z-index: 1;
  text-align: left;
  flex: 1;
}
@media (max-width: 767px) {
  .home-hero-layout { flex-direction: column; align-items: stretch; gap: 1.5rem; }
  .home-hero-logo-img { width: 140px; }
  .home-hero-logo-col { justify-content: center; }
  .home-hero-inner { text-align: center; width: 100%; }
  .home-search-form { display: flex; justify-content: center; }
}
.home-hero-title {
  font-family: var(--e-font-display);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1rem;
}
@keyframes home-accent-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.home-hero-accent {
  background: linear-gradient(100deg, #a78bfa, #38bdf8, #f472b6, #fb923c, #a78bfa);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: home-accent-shift 5s ease-in-out infinite;
}
.home-hero-sub {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}
.home-search-form { margin-bottom: 1.5rem; }
.home-search-bar {
  display: flex;
  align-items: center;
  gap: .625rem;
  background: #fff;
  border-radius: 12px;
  padding: .5rem .5rem .5rem 1rem;
  max-width: 560px;
  margin: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.home-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: .95rem;
  background: transparent;
  color: var(--e-text);
}
.home-search-bar input::placeholder { color: var(--e-muted); }
.home-search-bar button {
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .55rem 1.25rem;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: filter .15s, transform .12s;
  box-shadow: 0 2px 10px rgba(124,58,237,.35);
}
.home-search-bar button:hover { filter: brightness(1.12); transform: translateY(-1px); }

.home-cats {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: flex-start;
}
.home-cat {
  display: inline-block;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: .4rem .9rem;
  font-size: .82rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.home-cat:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.home-cat-active {
  background: rgba(167,139,250,.35);
  border-color: #a78bfa;
  color: #fff;
}
@media (max-width: 767px) {
  .home-cats { display: block; text-align: center; }
  .home-cat  { display: inline-block; margin-bottom: .6rem; }
}

.home-see-all-btn {
  display: inline-block;
  border: 2px solid var(--e-primary);
  color: var(--e-primary);
  border-radius: 10px;
  padding: .65rem 1.75rem;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.home-see-all-btn:hover { background: var(--e-primary); color: #fff; }

.home-org-strip {
  background: linear-gradient(135deg, #0f0527 0%, #1a0545 50%, #0c1a3d 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.home-org-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(167,139,250,.1) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.home-org-strip::after {
  content: '';
  position: absolute;
  left: 30%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(139,92,246,.2) 0%, transparent 70%);
  pointer-events: none;
}
.home-org-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.home-org-strip-title {
  font-family: var(--e-font-display);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 .25rem;
  letter-spacing: -.02em;
}
.home-org-strip-sub {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  margin: 0;
}
.home-org-strip-btn {
  display: inline-block;
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
  color: #fff;
  border-radius: 12px;
  padding: .8rem 1.75rem;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: filter .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(124,58,237,.4);
  animation: org-lp-cta-pulse 2.8s ease-in-out infinite;
}
.home-org-strip-btn:hover { filter: brightness(1.12); color: #fff; transform: translateY(-2px); animation: none; }

/* ─── Organizer Landing Page ─── */

.org-lp-hero {
  background: linear-gradient(135deg, #4a0a2e 0%, #2d0a6e 50%, #1a0a4a 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.org-lp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.org-lp-vp-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}
.org-lp-vp-bar span {
  color: #a78bfa;
  font-size: .82rem;
  font-weight: 600;
}
.org-lp-title {
  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.25rem;
}
.org-lp-accent {
  background: linear-gradient(100deg, #a78bfa 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.org-lp-sub {
  color: rgba(255,255,255,.72);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.org-lp-cta-primary {
  display: inline-block;
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
  color: #fff;
  border-radius: 12px;
  padding: .8rem 2rem;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  transition: filter .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(124,58,237,.4);
}
.org-lp-cta-primary:hover { filter: brightness(1.12); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,.55); }
.org-lp-cta-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 10px;
  padding: .8rem 2rem;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.org-lp-cta-ghost:hover { border-color: rgba(255,255,255,.6); color: #fff; }

.org-lp-section-title {
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: -.03em;
  text-align: center;
  margin-bottom: 2.5rem;
  background: linear-gradient(120deg, #c4b5fd 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.org-lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.org-lp-feature-card {
  background: var(--e-bg-card);
  border: 1px solid var(--e-border);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  transition: transform .15s, box-shadow .15s;
}
.org-lp-feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(98,82,232,.12); }
.org-lp-feature-icon { font-size: 2rem; margin-bottom: .75rem; }
.org-lp-feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.org-lp-feature-card p { font-size: .875rem; color: var(--e-muted); line-height: 1.55; margin: 0; }

.org-lp-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.org-lp-step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
}
.org-lp-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--e-primary);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .875rem;
}
.org-lp-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.org-lp-step p { font-size: .875rem; color: var(--e-muted); line-height: 1.55; margin: 0; }
.org-lp-step-arrow {
  color: var(--e-muted);
  font-size: 1.5rem;
  margin-top: 1rem;
  align-self: center;
}

.org-lp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.org-lp-testimonial {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.org-lp-testimonial:hover {
  border-color: rgba(167,139,250,.45);
  box-shadow: 0 8px 40px rgba(139,92,246,.18);
  transform: translateY(-3px);
}
.org-lp-testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: .05em;
  margin-bottom: .75rem;
}
.org-lp-testimonial p { font-size: .9rem; line-height: 1.65; color: var(--e-text); margin-bottom: 1.25rem; }
.org-lp-testimonial-author { display: flex; align-items: center; gap: .75rem; }
.org-lp-testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; color: #fff; flex-shrink: 0;
  letter-spacing: .03em;
}
.org-lp-testimonial-author strong { display: block; font-size: .875rem; font-weight: 700; }
.org-lp-testimonial-author span { font-size: .78rem; color: var(--e-muted); }

.org-lp-final-cta {
  padding: 5rem 0;
  background: var(--e-bg-card);
  border-top: 1px solid var(--e-border);
}

@media (max-width: 768px) {
  .home-hero-title { font-size: 2rem; }
  .home-org-strip-inner { flex-direction: column; text-align: center; }
  .org-lp-title { font-size: 2.1rem; }
  .org-lp-features-grid { grid-template-columns: 1fr 1fr; }
  .org-lp-testimonials { grid-template-columns: 1fr; }
  .org-lp-step-arrow { display: none; }
  .org-lp-steps { gap: 1.5rem; }
}
@media (max-width: 480px) {
  .org-lp-features-grid { grid-template-columns: 1fr; }
}

/* ── Landing page — novos componentes ── */
.org-lp-tagline-stack { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 1.75rem; }
.org-lp-tagline-stack span { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,.45); letter-spacing: -.01em; }
.org-lp-tagline-stack span:last-child { color: #a78bfa; }

.org-lp-pain { padding: 4.5rem 0; background: #0d0821; }
.org-lp-pain-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.org-lp-pain-title { font-size: 1.8rem; font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1.2; margin-bottom: 1.5rem; }
.org-lp-pain-lines p { font-size: 1rem; color: rgba(255,255,255,.6); line-height: 1.7; margin: 0 0 .25rem; }
.org-lp-pain-lines p strong { color: #fff; }
.org-lp-pain-punch { color: #a78bfa !important; font-weight: 600 !important; margin-top: .75rem !important; }

.org-lp-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.org-lp-benefit-card { background: rgba(255,255,255,.05); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 1.75rem; transition: border-color .25s, box-shadow .25s, transform .25s; }
.org-lp-benefit-card:hover { border-color: rgba(167,139,250,.5); box-shadow: 0 8px 40px rgba(139,92,246,.22); transform: translateY(-4px); }
.org-lp-benefit-num { font-size: 2rem; font-weight: 800; color: #a78bfa; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .75rem; line-height: 1; }
.org-lp-benefit-title { font-size: 1rem; font-weight: 800; color: var(--e-text); line-height: 1.3; margin-bottom: .65rem; letter-spacing: -.02em; }
.org-lp-benefit-desc { font-size: .875rem; color: var(--e-muted); line-height: 1.6; margin: 0; }

.org-lp-mock-wrap { max-width: 660px; margin: 2.5rem auto 0; }
.org-lp-mock { background: var(--e-bg-card); border: 1px solid var(--e-border); border-radius: 14px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.18); }
.org-lp-mock-bar { background: var(--e-surface); padding: .55rem 1rem; display: flex; align-items: center; gap: .4rem; border-bottom: 1px solid var(--e-border); }
.org-lp-mock-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.org-lp-mock-label { font-size: .72rem; color: var(--e-muted); margin-left: .5rem; font-weight: 500; }
.org-lp-mock-body { padding: 1.25rem; }
.org-lp-mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; margin-bottom: 1.25rem; }
.org-lp-mock-stat { background: var(--e-surface); border-radius: 8px; padding: .7rem .9rem; }
.org-lp-mock-stat-val { font-size: 1.2rem; font-weight: 800; color: var(--e-text); }
.org-lp-mock-stat-lbl { font-size: .65rem; color: var(--e-muted); margin-top: .1rem; }
.org-lp-mock-section-lbl { font-size: .65rem; font-weight: 700; color: var(--e-muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .65rem; }
.org-lp-mock-funnel { display: flex; flex-direction: column; gap: .45rem; }
.org-lp-mock-funnel-row { display: grid; grid-template-columns: 80px 1fr 32px; align-items: center; gap: .4rem; }
.org-lp-mock-funnel-lbl { font-size: .65rem; font-weight: 600; color: var(--e-text); text-align: right; white-space: nowrap; }
.org-lp-mock-funnel-wrap { height: 7px; background: var(--e-border); border-radius: 3px; overflow: hidden; }
.org-lp-mock-funnel-bar { height: 100%; background: linear-gradient(90deg, #a78bfa, #5b21b6); border-radius: 3px; width: 0; transition: width .9s cubic-bezier(.22,1,.36,1); }
.org-lp-mock-wrap.revealed .org-lp-mock-funnel-bar { width: var(--w); }
.org-lp-mock-funnel-num { font-size: .65rem; font-weight: 700; color: var(--e-text); }

@media (max-width: 768px) {
  .org-lp-benefit-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .org-lp-tagline-stack { gap: 1rem; }
  .org-lp-tagline-stack span { font-size: .875rem; }
  .org-lp-pain-title { font-size: 1.4rem; }
  .org-lp-mock-stats { grid-template-columns: repeat(3, 1fr) !important; gap: .35rem !important; }
  .org-lp-mock-stat { padding: .5rem .55rem !important; }
  .org-lp-mock-stat-val { font-size: .9rem !important; }
  .org-lp-mock-stat-lbl { font-size: .58rem !important; }
  .org-lp-mock-funnel-row { grid-template-columns: 70px 1fr 28px; }
}

/* ── Scroll reveal ── */
[data-reveal] { transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
[data-reveal]:not(.revealed) { opacity: 0; }
[data-reveal="up"]:not(.revealed)    { transform: translateY(44px) scale(.97); }
[data-reveal="left"]:not(.revealed)  { transform: translateX(-44px) scale(.97); }
[data-reveal="right"]:not(.revealed) { transform: translateX(44px) scale(.97); }
[data-reveal="fade"]:not(.revealed)  { }
[data-reveal].revealed { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ── Hero gradient animado ── */
@keyframes org-lp-hero-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.org-lp-hero {
  background: #0a0118;
}

/* ── CTA pulse ── */
@keyframes org-lp-cta-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(124,58,237,.4); }
  50%       { box-shadow: 0 4px 36px rgba(124,58,237,.75), 0 0 60px rgba(99,102,241,.25); }
}
.org-lp-cta-primary { animation: org-lp-cta-pulse 2.8s ease-in-out infinite; }
.org-lp-cta-primary:hover { animation: none; }

/* ── Marquee ── */
.org-lp-marquee-wrap { overflow: hidden; white-space: nowrap; padding: .85rem 0; background: rgba(167,139,250,.07); border-top: 1px solid rgba(167,139,250,.12); border-bottom: 1px solid rgba(167,139,250,.12); }
.org-lp-marquee-track { display: inline-flex; gap: 3rem; animation: org-lp-marquee 28s linear infinite; }
.org-lp-marquee-track:hover { animation-play-state: paused; }
.org-lp-marquee-item { font-size: .8rem; font-weight: 700; color: rgba(167,139,250,.6); letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
@keyframes org-lp-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Partícula flutuante ── */
.vv-particle { position: absolute; border-radius: 50%; pointer-events: none; }
@keyframes vv-particle-float {
  0%   { transform: translateY(0px) translateX(0px); opacity: .6; }
  33%  { transform: translateY(-18px) translateX(8px); opacity: .3; }
  66%  { transform: translateY(-8px) translateX(-6px); opacity: .5; }
  100% { transform: translateY(0px) translateX(0px); opacity: .6; }
}

/* ── Blob keyframes (home + organizers shared) ── */
@keyframes blob1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(40px,-30px) scale(1.07); }
  66%     { transform: translate(-25px,20px) scale(.95); }
}
@keyframes blob2 {
  0%,100% { transform: translate(0,0) scale(1); }
  40%     { transform: translate(-35px,25px) scale(1.05); }
  70%     { transform: translate(20px,-15px) scale(.97); }
}
@keyframes blob3 {
  0%,100% { transform: translate(0,0) scale(1); }
  30%     { transform: translate(30px,40px) scale(.94); }
  65%     { transform: translate(-20px,-30px) scale(1.06); }
}
@keyframes blob4 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-40px,30px) scale(1.08); }
}
@keyframes blob5 {
  0%,100% { transform: translate(0,0) scale(1); }
  35%     { transform: translate(25px,-40px) scale(1.04); }
  70%     { transform: translate(-30px,15px) scale(.96); }
}

/* ── Hero intro animation ── */
@keyframes home-hero-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.home-hero-title  { animation: home-hero-in .75s cubic-bezier(.22,1,.36,1) both; }
.home-hero-sub    { animation: home-hero-in .75s cubic-bezier(.22,1,.36,1) .15s both; }
.home-search-form { animation: home-hero-in .75s cubic-bezier(.22,1,.36,1) .28s both; }
.home-cats        { animation: home-hero-in .75s cubic-bezier(.22,1,.36,1) .42s both; }

/* ── Scroll reveal (home) ── */
.sr {
  opacity: 0;
  transform: translateY(36px) scale(.98);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.sr.sr-visible { opacity: 1; transform: none; }
.sr-d1 { transition-delay: .08s; }
.sr-d2 { transition-delay: .16s; }
.sr-d3 { transition-delay: .24s; }

/* ── Events carousel ── */
.home-carousel-wrap { position: relative; }
.home-carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: .5rem .25rem 1.5rem;
  cursor: grab;
}
.home-carousel-track::-webkit-scrollbar { display: none; }
.home-carousel-track.is-dragging { cursor: grabbing; scroll-behavior: auto; user-select: none; }
.home-carousel-item {
  flex: 0 0 calc(33.333% - .85rem);
  scroll-snap-align: start;
  min-width: 260px;
}
.home-carousel-btn {
  position: absolute;
  top: calc(50% - 1.25rem);
  transform: translateY(-50%);
  z-index: 10;
  background: #fff;
  border: 1.5px solid var(--e-border);
  border-radius: 50%;
  width: 46px; height: 46px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.14);
  transition: background .15s, border-color .15s, opacity .2s, transform .2s;
  color: var(--e-text);
}
.home-carousel-btn:hover { background: var(--e-primary); border-color: var(--e-primary); color: #fff; transform: translateY(-50%) scale(1.1); }
.home-carousel-btn.is-disabled { opacity: .3; pointer-events: none; }
.home-carousel-prev { left: -23px; }
.home-carousel-next { right: -23px; }
@media (max-width: 767px) {
  .home-carousel-btn { display: none; }
  .home-carousel-item { flex: 0 0 calc(82% - .5rem); }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home-carousel-item { flex: 0 0 calc(50% - .65rem); }
}

/* ── Card 3-D tilt (set via JS, transition handles smoothing) ── */
.event-card { transform-style: preserve-3d; }

/* ── Events section ── */
#home-events-section {
  padding: 3.5rem 0 5rem;
}
#events-heading-wrap h2 {
  font-family: var(--e-font-display);
}

/* ── paraOrganizadores hero – mobile overrides ── */
@media (max-width: 900px) {
  #org-lp-hero-section { overflow: visible !important; }
  .vv-hero-glow { display: none !important; }
  .vv-hero-grid { display: flex !important; flex-direction: column !important; gap: .25rem !important; }
  .vv-area-text  { order: 1 !important; }
  .vv-area-cards { order: 2 !important; margin-top: 1.5rem !important; }
  .vv-area-bottom { order: 3 !important; }
  .vv-hero-cards { gap: .4rem !important; animation: none !important; opacity: 1 !important; transform: none !important; }
  .vv-card { padding: .55rem .75rem !important; }
  .vv-card-offset { margin-left: 0 !important; }
  .vv-clabel { font-size: .62rem !important; }
  .vv-cquote { font-size: .68rem !important; padding: .5rem .7rem !important; }
  .vv-cmuted { font-size: .6rem !important; }
  .vv-chart  { height: 28px !important; }
  .vv-cbig   { font-size: 1.4rem !important; }
  .vv-cstrike { font-size: .65rem !important; }
  .vv-clist  { font-size: .65rem !important; }
  .vv-pills  { flex-wrap: wrap !important; overflow-x: visible !important; justify-content: center !important; }
  .vv-pill   { flex-shrink: 0 !important; font-size: .74rem !important; padding: .28rem .7rem !important; }
  .vv-pills::after { content: ''; flex-basis: 100%; height: 0; order: 3; }
  .vv-pills .vv-pill:nth-child(3) { order: 4; }
  .vv-cta-row { flex-direction: column !important; }
  .vv-cta-row .org-lp-cta-primary,
  .vv-cta-row .org-lp-cta-ghost { display: block !important; width: 100% !important; text-align: center !important; box-sizing: border-box !important; }
  .vv-hero-info { white-space: normal !important; max-width: 100% !important; }
  .org-lp-hero .org-lp-title { font-size: 1.75rem !important; }
  .org-lp-hero .org-lp-sub   { font-size: .95rem !important; margin-bottom: 0 !important; }
  .org-lp-tagline-stack { justify-content: center !important; flex-wrap: nowrap !important; gap: .6rem !important; }
  .org-lp-tagline-stack span { font-size: .78rem !important; }
  .org-lp-compare-table { font-size: .78rem !important; }
  .org-lp-compare-table th,
  .org-lp-compare-table td { padding: .55rem .65rem !important; }
  .org-lp-col-us, .org-lp-col-them { width: auto !important; }
}
