/* ===================================================================
   Visage Tickets — Estilos globais
   =================================================================== */

@import url('tokens.css');

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* Focus visible — acessibilidade WCAG 2.4.7 */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--accent-1);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
button:focus-visible,
a:focus-visible,
.btn:focus-visible {
  outline-offset: 3px;
}
.input:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 0 4px rgba(196, 18, 47, 0.15);
}

/* Base */
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--text-primary);
  background: var(--bg-base);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Background atmosférico — sutilíssima vinheta para tema claro */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(196, 18, 47, 0.025), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ===================================================================
   Layout
   =================================================================== */

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  position: relative;
  z-index: 1;
}

main { position: relative; z-index: 1; }

/* ===================================================================
   Header
   =================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 800;
  font-size: var(--text-xl);
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.brand__logo {
  width: clamp(96px, 14vw, 124px);
  height: auto;
  flex-shrink: 0;
  /* Força a cor do logo via filtro — funciona com qualquer PNG colorido */
  filter: brightness(0);
}
@media (max-width: 480px) {
  .brand__logo { width: 92px; }
}
/* Footer/dark contexts — força branco */
.footer .brand__logo,
.ticket__brand img {
  filter: brightness(0) invert(1);
}

.brand__divider {
  width: 1px;
  height: 28px;
  background: var(--border-strong);
  flex-shrink: 0;
}

.brand__sub {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Antigo "V" Visage — mantido só pra footer */
.brand__mark {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--accent-grad);
  display: grid;
  place-items: center;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.nav__link:hover { color: var(--text-primary); }

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

@media (max-width: 768px) {
  .nav { display: none; }
  .brand__sub { display: none; }
}

/* ===================================================================
   Botões
   =================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 10px 18px;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  white-space: nowrap;
  user-select: none;
}

.btn--primary {
  background: var(--accent-grad);
  color: #FFFFFF;
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(196, 18, 47, 0.32);
}

.btn--ghost {
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}
.btn--ghost:hover {
  background: var(--bg-elevated);
  border-color: var(--border-strong);
}

.btn--lg { padding: 14px 28px; font-size: var(--text-base); }
.btn--block { width: 100%; }

/* ===================================================================
   Search
   =================================================================== */

.search {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  min-width: 0;
  flex: 0 1 260px;
  max-width: 280px;
  height: 36px;
  transition: all var(--transition-base);
}
.search:focus-within {
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px rgba(38, 74, 63, 0.12);
  background: var(--bg-base);
}
.search > svg {
  flex-shrink: 0;
  display: block;
  color: var(--text-muted);
}
.search input {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  font-size: 13px;
  line-height: 1;
  color: var(--text-primary);
}
.search input::placeholder { color: var(--text-subtle); }

@media (max-width: 900px) {
  .search { min-width: auto; flex: 1; max-width: 260px; }
}

/* ===================================================================
   Hero
   =================================================================== */

/* ===================================================================
   User menu (logged-in state — demo)
   =================================================================== */

.user-menu {
  position: relative;
}
.user-menu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 4px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.user-menu__trigger:hover { border-color: var(--border-strong); background: var(--bg-elevated); }
.user-menu__trigger[aria-expanded="true"] { border-color: var(--accent-1); }

.user-menu__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #E8CB8E;
  font-weight: 700;
  font-size: 13px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: var(--font-sans);
}
.user-menu__avatar--lg { width: 44px; height: 44px; font-size: 18px; }

.user-menu__name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}
.user-menu__chevron {
  color: var(--text-muted);
  transition: transform var(--transition-fast);
}
.user-menu__trigger[aria-expanded="true"] .user-menu__chevron { transform: rotate(180deg); }

.user-menu__panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 280px;
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  padding: var(--space-3);
  z-index: 100;
  animation: dropdownIn 0.18s ease;
}
@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.user-menu__panel[hidden] { display: none; }

.user-menu__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
}
.user-menu__fullname {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--text-primary);
}
.user-menu__email {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 2px;
}
.user-menu__demo-tag {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(232, 203, 142, 0.18);
  border: 1px solid rgba(232, 203, 142, 0.4);
  color: var(--accent-1);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
  margin-top: 4px;
}

.user-menu__divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 6px 0;
}

.user-menu__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-primary);
  transition: background var(--transition-fast);
  cursor: pointer;
}
.user-menu__item:hover { background: var(--bg-elevated); }
.user-menu__item svg { width: 16px; height: 16px; color: var(--text-muted); flex-shrink: 0; }
.user-menu__item--danger { color: var(--danger); }
.user-menu__item--danger svg { color: var(--danger); }

@media (max-width: 640px) {
  .user-menu__name { display: none; }
  .user-menu__panel { right: -8px; min-width: calc(100vw - 32px); max-width: 320px; }
}

/* ===================================================================
   Mega menu (Categorias)
   =================================================================== */

.megamenu-trigger {
  position: relative;
}
.megamenu-trigger > .nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.megamenu-trigger > .nav__link svg {
  transition: transform var(--transition-fast);
}
.megamenu-trigger[aria-expanded="true"] > .nav__link svg { transform: rotate(180deg); }

.megamenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(96vw, 1100px);
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  padding: var(--space-5);
  z-index: 100;
  margin-top: 8px;
  animation: dropdownIn 0.20s ease;
}
.megamenu[hidden] { display: none; }

.megamenu__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.megamenu__col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.megamenu__category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border-subtle);
}
.megamenu__thumb {
  width: 56px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.megamenu__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(38,74,63,0.20), transparent);
}
.megamenu__cat-label {
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--text-primary);
  line-height: 1.1;
}
.megamenu__cat-count {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
}
.megamenu__shows {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: var(--space-3);
  flex: 1;
}
.megamenu__shows a {
  display: block;
  padding: 8px 10px;
  margin: 0 -10px;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-primary);
  transition: background var(--transition-fast);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.megamenu__shows a:hover { background: var(--bg-elevated); color: var(--accent-1); }
.megamenu__see-all {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--accent-1);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  margin: 0 -10px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition-fast);
}
.megamenu__see-all:hover { gap: 8px; color: var(--accent-2); }

@media (max-width: 980px) {
  .megamenu__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .megamenu { display: none !important; } /* mobile usa drawer */
}

/* Eyebrow utility — pill pequeno usado em page-hero (evento), CTAs, etc */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  background: rgba(232, 203, 142, 0.15);
  border: 1px solid rgba(232, 203, 142, 0.35);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: #E8CB8E;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: fit-content;
}

/* Noise overlay (film grain) — black micro-dots em qualquer bg image */
.hero-slide__bg::before,
.event-card__media::before,
.featured-promo__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.65 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
  opacity: 0.42;
  mix-blend-mode: multiply;
  z-index: 1;
}

.hero {
  position: relative;
  min-height: min(82vh, 720px);
  overflow: hidden;
  isolation: isolate;
  background: #0A0A0F;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: var(--space-9) 0 var(--space-8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}
.hero-slide[aria-current="true"] {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1);
  transition: transform 8s ease;
}
.hero-slide[aria-current="true"] .hero-slide__bg {
  transform: scale(1.06);
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(232,203,142,0.10) 0%, transparent 45%),
    linear-gradient(180deg, rgba(10,10,15,0.30) 0%, rgba(10,10,15,0.55) 40%, rgba(10,10,15,0.95) 100%);
}

.hero-slide .container {
  position: relative;
  z-index: 1;
}
.hero-slide__content {
  max-width: 640px;
  padding-bottom: var(--space-7);
  text-align: left;
}

.hero-slide__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  background: rgba(232, 203, 142,0.18);
  border: 1px solid rgba(232, 203, 142,0.4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: #E8CB8E;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-slide__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-1);
  box-shadow: 0 0 0 0 rgba(232, 203, 142,0.7);
  animation: heroPulse 2s infinite;
}
@keyframes heroPulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,203,142,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(232,203,142,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,203,142,0); }
}

.hero-slide__title {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
  color: #fff;
  text-shadow: 0 2px 32px rgba(0,0,0,0.55);
}
.hero-slide__title-sub {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.95);
  text-stroke: 1.5px rgba(255, 255, 255, 0.95);
  font-size: 0.78em;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-slide__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  color: rgba(255,255,255,0.85);
  font-size: var(--text-sm);
  font-weight: 500;
}
.hero-slide__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero-slide__meta svg {
  opacity: 0.7;
  flex-shrink: 0;
}

.hero-slide__cta-row {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  flex-wrap: wrap;
}
.hero-slide__details {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(255,255,255,0.4);
  transition: text-decoration-color var(--transition-fast);
}
.hero-slide__details:hover { text-decoration-color: rgba(255,255,255,1); }

/* Pagination dots */
.hero__controls {
  position: absolute;
  bottom: var(--space-5);
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}
.hero__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background var(--transition-fast);
}
.hero-dot:hover { background: rgba(255,255,255,0.45); }
.hero-dot[aria-selected="true"] {
  background: rgba(255,255,255,0.25);
  width: 56px;
}
.hero-dot__progress {
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--accent-grad);
  border-radius: 2px;
}
.hero-dot[aria-selected="true"] .hero-dot__progress {
  animation: heroDotProgress 6.5s linear forwards;
}
@keyframes heroDotProgress {
  from { width: 0; }
  to   { width: 100%; }
}

@media (max-width: 640px) {
  .hero { min-height: min(85vh, 600px); }
  .hero-slide { padding: var(--space-7) 0 var(--space-9); }
  .hero-slide__content { padding-bottom: var(--space-8); }
  .hero-slide__cta-row { flex-direction: column; align-items: stretch; }
  .hero-slide__cta-row .btn { width: 100%; justify-content: center; }
  .hero-slide__details { text-align: center; padding-top: 4px; }
  .hero__controls { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide__bg, .hero-slide { transition: none; }
  .hero-dot__progress { animation: none; width: 0; }
}

/* ===================================================================
   Categories
   =================================================================== */

.categories {
  padding: var(--space-5) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.categories__list {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  scrollbar-width: none;
}
.categories__list::-webkit-scrollbar { display: none; }

.category {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-base);
  cursor: pointer;
}
.category:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
}
.category--active {
  background: var(--accent-grad);
  color: #FFFFFF;
  border-color: transparent;
  font-weight: 600;
}

/* ===================================================================
   Section
   =================================================================== */

.section {
  padding: var(--space-7) 0;
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}

.section__title {
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section__sub {
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin-top: 4px;
}

.section__more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--accent-1);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: gap var(--transition-base);
}
.section__more:hover { gap: var(--space-3); }

/* ===================================================================
   Event grid
   =================================================================== */

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-5);
}

.event-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
}
.event-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

.event-card__media {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: var(--bg-elevated);
}
.event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.event-card:hover .event-card__media img { transform: scale(1.04); }

.event-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.event-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  z-index: 2;
}
.event-card__badge--hot {
  background: var(--accent-grad);
  color: #FFFFFF;
}

.event-card__date {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 56px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 8px;
  text-align: center;
  z-index: 2;
  color: var(--text-primary);
}
.event-card__date strong {
  display: block;
  font-size: var(--text-xl);
  font-weight: 800;
  line-height: 1;
}
.event-card__date span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.event-card__body {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.event-card__category {
  font-size: var(--text-xs);
  color: var(--accent-1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.event-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 6px;
  margin-bottom: var(--space-3);
  /* clamp 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}
.event-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.event-card__price {
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-2);
}
.event-card__price small {
  font-size: var(--text-xs);
  color: var(--text-muted);
}
.event-card__price strong {
  font-size: var(--text-base);
  font-weight: 700;
}

/* ===================================================================
   Featured Show Promo (banner full-width de evento em destaque)
   =================================================================== */

.featured-promo {
  position: relative;
  width: 100%;
  min-height: 460px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding: var(--space-7) 0;
}
.featured-promo__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.featured-promo__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(10,10,15,0.78) 0%, rgba(10,10,15,0.55) 45%, rgba(10,10,15,0.20) 100%),
    radial-gradient(circle at 75% 30%, rgba(232,203,142,0.18), transparent 60%);
}
.featured-promo .container { position: relative; z-index: 1; }
.featured-promo__content { max-width: 620px; text-align: left; }
.featured-promo__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  background: rgba(232, 203, 142, 0.18);
  border: 1px solid rgba(232, 203, 142, 0.4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  color: #E8CB8E;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.featured-promo__title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-3);
  color: #fff;
  text-shadow: 0 2px 28px rgba(0,0,0,0.55);
}
.featured-promo__title-sub {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.95);
  text-stroke: 1.5px rgba(255, 255, 255, 0.95);
  font-size: 0.78em;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.featured-promo__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  color: rgba(255,255,255,0.85);
  font-size: var(--text-sm);
  font-weight: 500;
}
.featured-promo__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.featured-promo__meta svg { opacity: 0.7; flex-shrink: 0; }
.featured-promo__actions {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  flex-wrap: wrap;
}
.featured-promo__details {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(255,255,255,0.4);
  transition: text-decoration-color var(--transition-fast);
}
.featured-promo__details:hover { text-decoration-color: rgba(255,255,255,1); }

.featured-promo__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.65 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
  opacity: 0.35;
  mix-blend-mode: multiply;
}

@media (max-width: 640px) {
  .featured-promo { min-height: 420px; padding: var(--space-6) 0; }
  .featured-promo__actions { flex-direction: column; align-items: stretch; }
  .featured-promo__actions .btn { width: 100%; justify-content: center; }
  .featured-promo__details { text-align: center; padding-top: 4px; }
}

/* ===================================================================
   Footer
   =================================================================== */

.footer {
  margin-top: 0;
  padding: var(--space-8) 0 var(--space-6);
  border-top: 1px solid var(--border-subtle);
  background: #0A0A0F;
  color: #E5E7EB;
  position: relative;
  z-index: 1;
}
.footer .brand { color: #FFFFFF; }
.footer .brand__divider { background: rgba(255, 255, 255, 0.18); }
.footer .brand__sub { color: rgba(255, 255, 255, 0.6); }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

.footer__col h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FFFFFF;
}
.footer__col p {
  color: rgba(255, 255, 255, 0.55);
}
.footer__col ul li { margin-bottom: 8px; }
.footer__col a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
}
.footer__col a:hover { color: #FFFFFF; }

.footer__bottom {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ===================================================================
   Page header (interior pages)
   =================================================================== */

.page-hero {
  position: relative;
  height: clamp(280px, 50vh, 480px);
  overflow: hidden;
  margin-bottom: var(--space-6);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(110%);
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.4) 0%, rgba(10, 10, 15, 0.95) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: var(--space-6);
}
.page-hero__breadcrumb {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}
.page-hero__breadcrumb a { color: inherit; }
.page-hero__breadcrumb a:hover { color: var(--accent-1); }
.page-hero__title {
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 24ch;
  color: #FFFFFF;  /* Sobre overlay escuro do hero */
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}
.page-hero__breadcrumb {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: var(--space-3);
}
.page-hero__breadcrumb a { color: inherit; }
.page-hero__breadcrumb a:hover { color: #FFFFFF; }

/* ===================================================================
   Detail layout (event/seat/checkout)
   =================================================================== */

.detail {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-6);
  align-items: start;
  padding-bottom: var(--space-9);
}
@media (max-width: 980px) {
  .detail { grid-template-columns: 1fr; }
}

.detail__main { min-width: 0; }

.detail__aside {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
@media (max-width: 980px) {
  .detail__aside { position: static; }
}

.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.card--accent {
  border-color: rgba(232, 203, 142,0.3);
  background: linear-gradient(180deg, var(--bg-surface), rgba(232, 203, 142,0.04));
}

.card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

/* Producer block — used in evento.html "Produção" card */
.producer {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.producer__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #fff;
  font-weight: 800;
  font-size: 26px;
  font-style: italic;
  letter-spacing: -0.04em;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px -8px rgba(232, 203, 142,0.55);
}
.producer__info {
  flex: 1;
  min-width: 0;
}
.producer__name {
  font-weight: 700;
  font-size: var(--text-base);
  line-height: 1.2;
}
.producer__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin-top: 4px;
}
.producer__follow {
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .producer { flex-wrap: wrap; }
  .producer__follow { width: 100%; }
}

.divider {
  height: 1px;
  background: var(--border-subtle);
  margin: var(--space-4) 0;
}

.meta-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
}
.meta-row + .meta-row {
  border-top: 1px solid var(--border-subtle);
}
.meta-row__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--accent-1);
}
.meta-row__label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.meta-row__value {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 2px;
}

/* ===================================================================
   Ticket type selector
   =================================================================== */

.ticket-type {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  transition: all var(--transition-base);
}
.ticket-type:hover { border-color: var(--border-strong); }

.ticket-type__name {
  font-size: var(--text-sm);
  font-weight: 600;
}
.ticket-type__desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 2px;
}
.ticket-type__price {
  font-size: var(--text-lg);
  font-weight: 700;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 4px;
}
.qty button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 700;
  display: grid;
  place-items: center;
  transition: all var(--transition-fast);
}
.qty button:hover {
  background: var(--accent-grad);
  color: #FFFFFF;
}
.qty button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.qty button:disabled:hover { background: transparent; color: var(--text-secondary); }
.qty span {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
}

/* ===================================================================
   Tabs
   =================================================================== */

.tabs {
  display: flex;
  gap: 2px;
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 4px;
  margin-bottom: var(--space-4);
}
.tab {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  transition: all var(--transition-base);
}
.tab--active {
  background: var(--accent-grad);
  color: #FFFFFF;
}

/* ===================================================================
   Form inputs
   =================================================================== */

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-4);
}
.field label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.input {
  width: 100%;
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: var(--text-sm);
  color: var(--text-primary);
  outline: none;
  transition: all var(--transition-base);
}
.input:focus {
  border-color: var(--accent-1);
  box-shadow: 0 0 0 4px rgba(232, 203, 142,0.12);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

/* ===================================================================
   Notice banner
   =================================================================== */

.notice {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  align-items: flex-start;
}
.notice--info {
  background: var(--info-soft);
  border: 1px solid rgba(29, 78, 216, 0.22);
  color: #1E3A8A;
}
.notice--warning {
  background: var(--warning-soft);
  border: 1px solid rgba(180, 83, 9, 0.22);
  color: #78350F;
}
.notice--success {
  background: var(--success-soft);
  border: 1px solid rgba(4, 120, 87, 0.22);
  color: #064E3B;
}
.notice--success svg, .notice--info svg, .notice--warning svg { flex-shrink: 0; margin-top: 2px; }

/* ===================================================================
   Timer / countdown
   =================================================================== */

.timer {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
}
.timer__bar {
  flex: 1;
  height: 4px;
  background: var(--bg-base);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.timer__fill {
  height: 100%;
  width: 75%;
  background: var(--accent-grad);
  border-radius: var(--radius-full);
  transition: width 1s linear;
}
.timer__time {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--accent-1);
  min-width: 50px;
}

/* ===================================================================
   Total summary
   =================================================================== */

.total-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}
.total-row--final {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border-subtle);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
}

/* ===================================================================
   Toast / floating
   =================================================================== */

.toast {
  position: fixed;
  bottom: var(--space-5);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-elevated);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  font-size: var(--text-sm);
  font-weight: 600;
  z-index: 100;
  box-shadow: var(--shadow-elevated);
  animation: toast-in 0.3s ease;
}
@keyframes toast-in {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ===================================================================
   Mobile menu (drawer)
   =================================================================== */

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}
.menu-toggle:active { background: var(--bg-elevated); }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}
.drawer.open { display: block; }
.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fade 0.2s ease;
}
.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 360px);
  background: var(--bg-surface);
  border-left: 1px solid var(--border-subtle);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  animation: slide-in 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.drawer__close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  color: var(--text-muted);
}
.drawer__nav a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 14px 12px;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}
.drawer__nav a:active { background: var(--bg-elevated); }
.drawer__nav a + a { margin-top: 2px; }

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes slide-in { from { transform: translateX(100%); } to { transform: translateX(0); } }

/* ===================================================================
   Mobile bottom navigation
   =================================================================== */

.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(20px);
  -webkit-backdrop-filter: saturate(140%) blur(20px);
  border-top: 1px solid var(--border-subtle);
  padding: 8px max(env(safe-area-inset-left), 8px) calc(8px + env(safe-area-inset-bottom)) max(env(safe-area-inset-right), 8px);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.04);
}
.bottom-nav__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 540px;
  margin: 0 auto;
}
.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px;
  min-height: 56px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast);
}
.bottom-nav__item svg { width: 22px; height: 22px; }
.bottom-nav__item.active {
  color: var(--accent-1);
}

/* ===================================================================
   Sticky bottom CTA bar (mobile, em páginas de detalhe)
   =================================================================== */

.bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(140%) blur(20px);
  -webkit-backdrop-filter: saturate(140%) blur(20px);
  border-top: 1px solid var(--border-subtle);
  padding: 12px var(--container-pad) calc(12px + env(safe-area-inset-bottom));
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
}
.bottom-bar__price strong {
  display: block;
  font-size: var(--text-lg);
  font-weight: 800;
}
.bottom-bar__price small {
  font-size: var(--text-xs);
  color: var(--text-muted);
}
.bottom-bar .btn {
  min-height: 48px;
  padding-inline: 24px;
}

/* ===================================================================
   Mobile-first responsive overrides
   =================================================================== */

/* Tablet (768px and below) */
@media (max-width: 900px) {
  :root {
    --header-h: 64px;
  }

  .header__inner {
    gap: var(--space-3);
  }

  .search {
    min-width: auto;
    flex: 1;
    max-width: 100%;
    padding: 8px 14px;
    min-height: 44px;
  }

  .hero {
    padding: var(--space-6) 0 var(--space-5);
  }
  .hero__title {
    line-height: 1.08;
  }
  .hero__cta { gap: var(--space-2); }
  .hero__cta .btn { flex: 1; min-width: 0; }

  .section { padding: var(--space-6) 0; }
  .section__head { margin-bottom: var(--space-4); }
  .section__title { font-size: var(--text-2xl); }

  /* Tablet 2-col grid */
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }
  .event-card__media { aspect-ratio: 3 / 4; }
  .event-card__body { padding: var(--space-3); }
  .event-card__title { font-size: var(--text-base); }

  .detail {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    padding-bottom: 120px; /* espaço para bottom-bar */
  }
}

/* Mobile (640px and below) */
@media (max-width: 640px) {
  .menu-toggle { display: inline-flex; }
  .nav { display: none; }
  .header__actions .btn { display: none; }
  .brand__sub { display: none; }

  body { padding-bottom: 72px; /* espaço para bottom nav */ }
  .footer { margin-bottom: 64px; }

  .bottom-nav { display: block; }

  .hero {
    padding: var(--space-5) 0 var(--space-4);
  }
  .hero__cta .btn { width: 100%; min-height: 48px; }

  .events-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .event-card__media { aspect-ratio: 16 / 10; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .field-grid { grid-template-columns: 1fr; }

  .detail {
    padding-bottom: 140px;
  }

  /* esconde menus desktop, mostra mobile bottom CTA quando page-detail tem */
  .page-detail .bottom-bar { display: flex; }
  .page-detail .detail__aside .btn--checkout { display: none; }
}

/* Mobile pequeno (380px e abaixo) */
@media (max-width: 380px) {
  :root {
    --container-pad: 14px;
  }
  .hero__title { font-size: clamp(2rem, 9vw, 2.8rem); }
  .section__title { font-size: var(--text-xl); }
  .event-card__title { font-size: var(--text-sm); }
  .bottom-nav__item { font-size: 10px; }
  .bottom-nav__item svg { width: 20px; height: 20px; }
}

/* Touch-friendly tap targets em qualquer largura */
@media (hover: none) and (pointer: coarse) {
  .btn { min-height: 44px; }
  .nav__link { padding: 12px 8px; }
  .category { min-height: 40px; padding: 8px 14px; }
  .qty button { width: 36px; height: 36px; font-size: 18px; }
}

/* ===================================================================
   Helpers
   =================================================================== */

.text-accent {
  background: var(--accent-grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.muted { color: var(--text-muted); }
.subtle { color: var(--text-subtle); }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.mt-4 { margin-top: var(--space-4); }
.mb-4 { margin-bottom: var(--space-4); }
.text-center { text-align: center; }
.w-full { width: 100%; }
.hidden { display: none; }

/* desktop only / mobile only */
.show-mobile { display: none; }
.hide-mobile { display: initial; }
@media (max-width: 640px) {
  .show-mobile { display: initial; }
  .hide-mobile { display: none; }
}
