:root {
  /* Sistema "Marquee" — claro, vibrante, inspirado em luzes de teatro/palco */
  --paper: #f6f2fb;
  --panel: #ffffff;
  --panel-2: #eee6f7;
  --line: #e2d6ee;
  --ink: #16101f;
  --muted: #6f6480;
  --lime: #d4ff3d;
  --lime-dim: #5c7a00;   /* verde mais escuro, para texto legível sobre fundo claro */
  --magenta: #5e3aa8;   /* mantido o nome — agora é o violeta secundário */
  --gold: #f5a623;
  --shadow-sm: 0 2px 10px rgba(58, 30, 90, 0.08);
  --shadow-md: 0 16px 40px rgba(58, 30, 90, 0.16);
  --shadow-lime: 0 10px 26px rgba(180, 214, 30, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

html { scroll-behavior: smooth; }

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
  border-radius: 4px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(94,58,168,0.10) 0%, transparent 45%),
    radial-gradient(circle at 100% 10%, rgba(245,166,35,0.10) 0%, transparent 40%),
    var(--paper);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, .font-display {
  font-family: "Unbounded", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

.mono { font-family: "IBM Plex Mono", monospace; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  background: var(--panel);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
}
.logo span { color: var(--lime-dim); }
.tagline { color: var(--muted); font-size: 0.875rem; font-family: "IBM Plex Mono", monospace; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 64px;
  padding: 32px 0;
  color: var(--muted);
  font-size: 0.875rem;
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

main.page { padding: 40px 0 60px; }
main.page > .container > section { margin-top: 64px; margin-bottom: 64px; }
main.page > .container > section:first-of-type { margin-top: 0; }
main.page > .container > section:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------------- *
 * Elemento assinatura: o "canhoto de ingresso"
 * ---------------------------------------------------------------------- */
.ticket-stub {
  position: relative;
  background: linear-gradient(165deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.ticket-stub:hover { box-shadow: var(--shadow-md); border-color: rgba(180, 214, 30, 0.3); }
.ticket-stub::before,
.ticket-stub::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.ticket-stub::before { left: -11px; }
.ticket-stub::after { right: -11px; }
.stub-divider { border-left: 2px dashed var(--line); }
.stub-divider-h { border-top: 2px dashed var(--line); margin: 16px 0; }

/* Hero (evento em destaque) */
.hero {
  margin-bottom: 48px;
  flex-direction: column;
}
@media (min-width: 768px) { .hero { flex-direction: row; } }
.hero-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--panel-2);
  flex-shrink: 0;
}
@media (min-width: 768px) { .hero-image { width: 50%; aspect-ratio: auto; } }
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-body {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  color: var(--magenta);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-body h1 { font-size: 2rem; line-height: 1.15; }
.hero-meta { color: rgba(22,16,31,0.72); font-size: 0.9rem; }
.hero-meta p { margin: 2px 0; }
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.price-label { font-size: 0.75rem; color: var(--muted); display: block; }
.price { font-family: "IBM Plex Mono", monospace; color: var(--lime-dim); font-weight: 700; }
.price.lg { font-size: 1.25rem; }

.btn {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: var(--shadow-lime);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(180, 214, 30, 0.38); filter: brightness(1.04); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-block { width: 100%; text-align: center; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-secondary { background: transparent; border: 1px solid var(--line); color: var(--ink); box-shadow: none; }
.btn-secondary:hover { border-color: var(--lime); color: var(--lime-dim); filter: none; box-shadow: var(--shadow-sm); }

/* Grade de eventos */
.event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .event-grid { grid-template-columns: 1fr 1fr; } }

.event-card { align-items: stretch; }
.event-card:hover { border-color: rgba(180, 214, 30, 0.35); }
.event-card-image {
  position: relative;
  width: 140px;
  flex-shrink: 0;
  background: var(--panel-2);
}
.event-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.date-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px 8px;
  text-align: center;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}
.date-badge .day { font-family: "Unbounded", sans-serif; font-weight: 700; color: var(--lime-dim); font-size: 1.1rem; }
.date-badge .month { font-family: "IBM Plex Mono", monospace; color: var(--muted); font-size: 0.6rem; }
.event-card-body {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.event-card-body h3 { font-size: 1.05rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.event-card-body .venue { color: var(--muted); font-size: 0.875rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 2px 0 0; }
.event-card-price { display: flex; justify-content: space-between; align-items: baseline; margin-top: 12px; }
.event-card-price span:first-child { font-size: 0.7rem; color: var(--muted); }

/* Página de evento */
.event-page { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .event-page { grid-template-columns: 1.4fr 1fr; } }
.event-cover {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: var(--panel-2);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.event-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.event-description { margin-top: 24px; line-height: 1.7; color: rgba(22,16,31,0.85); white-space: pre-line; }

/* Seleção de ingresso / formulários */
.panel {
  background: linear-gradient(165deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.panel h2 { font-size: 1.15rem; margin-bottom: 16px; }

.ticket-option {
  display: block;
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  margin-bottom: 10px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.ticket-option:hover { border-color: var(--muted); }
.ticket-option.selected { border-color: var(--lime); background: #f8ffe4; box-shadow: 0 0 0 1px rgba(180,214,30,0.25), var(--shadow-sm); }
.ticket-option .row { display: flex; justify-content: space-between; align-items: baseline; }
.ticket-option .desc { color: var(--muted); font-size: 0.875rem; margin-top: 4px; }
.low-stock { color: var(--lime-dim); font-size: 0.75rem; font-weight: 700; }
.ticket-option .low-stock { margin-top: 4px; }
.sold-out-badge {
  display: inline-block;
  background: var(--magenta);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.ticket-option input { display: none; }

.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 4px;
}
.qty-controls { display: flex; align-items: center; gap: 12px; }
.qty-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
}
.qty-btn:hover { border-color: var(--muted); }

.total-row { display: flex; justify-content: space-between; align-items: baseline; margin: 16px 0; }
.total-row .price { font-size: 1.2rem; }

form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.875rem;
  margin-bottom: 14px;
  color: var(--ink);
}
form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="date"],
form input[type="tel"],
form input[type="number"] {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="password"]:focus,
form input[type="date"]:focus,
form input[type="tel"]:focus,
form input[type="number"]:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(180, 214, 30, 0.15);
}
form input:focus { outline: 2px solid var(--lime); }
.help-text { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 10px; }
.error-text { color: var(--lime-dim); font-size: 0.875rem; margin-bottom: 12px; }

/* Checkout */
.checkout-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .checkout-grid { grid-template-columns: 1fr 1fr; } }
.summary-row { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 4px; }
.summary-total {
  display: flex; justify-content: space-between; font-weight: 700;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line);
}

/* Pedido / status */
.status-label { font-family: "IBM Plex Mono", monospace; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.status-paid { color: var(--lime-dim); }
.status-pending { color: var(--muted); }
.status-cancelled { color: var(--magenta); }

.ticket-issued { margin-bottom: 24px; }
.ticket-issued-info { flex: 1; padding: 24px; }
.ticket-issued-info .eyebrow { color: var(--muted); }
.ticket-issued-info .code { font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; color: var(--muted); margin-top: 16px; word-break: break-all; }
.ticket-qr { width: 160px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; padding: 16px; background: var(--panel-2); }
.ticket-qr img { width: 100%; display: block; }

.empty-state { color: var(--muted); padding: 40px 0; text-align: center; }

/* ---------------------------------------------------------------------- *
 * Cabeçalho completo: busca + categorias (estilo "portal de ingressos")
 * ---------------------------------------------------------------------- */
.site-header--full { padding: 0; position: sticky; top: 0; z-index: 100; background: rgba(246, 242, 251, 0.85); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); border-bottom: 1px solid var(--line); }
.nav-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-row--top { gap: 24px; }
.nav-search {
  flex: 1;
  max-width: 420px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  color: var(--muted);
}
.nav-search input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.875rem;
  width: 100%;
}
.nav-links { display: flex; align-items: center; gap: 18px; font-size: 0.875rem; margin-left: auto; }
.nav-links a { color: var(--muted); }
.nav-links a.nav-cta,
.nav-links button.nav-cta {
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 999px;
  border: none;
  font-family: inherit;
  font-size: 0.875rem;
  cursor: pointer;
  box-shadow: var(--shadow-lime);
}
.nav-city {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.8rem;
  padding: 8px 14px;
}

/* Seletor de localização (Estado > Cidade) */
.location-picker { position: relative; }
.location-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.8rem;
  padding: 8px 14px;
  cursor: pointer;
  white-space: nowrap;
}
.location-trigger svg:first-child { color: var(--lime-dim); }
.location-panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 20;
  width: 280px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow-md);
  animation: panelIn 0.2s var(--ease) both;
}
@keyframes panelIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.location-picker.open .location-panel { display: block; }
.location-panel-title { font-size: 0.85rem; color: var(--muted); margin-bottom: 12px; }
.location-panel-title strong { color: var(--ink); }
.location-gps {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: var(--lime-dim);
  font-family: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
  margin-bottom: 6px;
}
.location-gps-status { font-size: 0.75rem; color: var(--muted); margin: 0 0 12px; min-height: 1em; }

.account-picker { position: relative; }
.account-picker .location-panel { left: auto; right: 0; width: 260px; }
.account-panel-link {
  display: block;
  color: var(--ink);
  font-size: 0.85rem;
  padding: 8px 0;
}
.account-panel-link:hover { color: var(--lime-dim); }
.account-panel-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 6px;
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
}
.account-panel-divider::before,
.account-panel-divider::after { content: ""; flex: 1; border-top: 1px solid var(--line); }
.account-panel-link--producer {
  margin-top: 10px;
  padding-top: 14px;
  border-top: 3px solid var(--lime);
  color: var(--ink);
  font-weight: 400;
  text-align: center;
}
.account-panel-link--producer:hover { color: var(--lime-dim); }

@media (max-width: 480px) {
  .account-picker .location-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    width: 88vw;
    max-width: 320px;
    max-height: 80vh;
    overflow-y: auto;
  }
}
.location-field { display: flex; flex-direction: column; gap: 4px; font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; }
.location-field select {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 10px;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.9rem;
}
.location-reset { display: block; text-align: center; color: var(--lime-dim); font-size: 0.8rem; margin-top: 10px; }
@media (max-width: 860px) {
  .location-panel { left: auto; right: 0; }
}
@media (max-width: 860px) {
  .nav-row--top { flex-wrap: wrap; }
  .nav-search { order: 3; max-width: 100%; }
}
.nav-row--categories {
  border-top: 1px solid var(--line);
  gap: 8px;
  padding-top: 10px;
  padding-bottom: 10px;
  overflow: visible;
  flex-wrap: nowrap;
}
.category-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  min-width: 0;
  flex: 1;
  flex-wrap: nowrap;
}
.category-scroll::-webkit-scrollbar { display: none; }
.category-chip {
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  white-space: nowrap;
  background: #fff;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}
.category-chip.active { color: var(--lime-dim); border-color: var(--lime); font-weight: 700; background: #f5ffd9; }
.category-chip:hover:not(.active) { border-color: var(--lime); color: var(--lime-dim); }
.category-chip.chip-todos.active { background: var(--lime); color: var(--ink); border-color: var(--lime); }

.category-more-picker { position: relative; flex-shrink: 0; }
.category-more-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
}
.category-more-panel { left: auto; right: 0; width: 240px; padding: 12px; }
.category-search-input {
  width: 100%;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.category-search-list { max-height: 240px; overflow-y: auto; }
.category-search-item { display: block; padding: 6px 4px; font-size: 0.85rem; color: var(--ink); border-radius: 6px; }
.category-search-item:hover { color: var(--lime-dim); background: var(--panel-2); }

/* ---------------------------------------------------------------------- *
 * Carrossel de destaque
 * ---------------------------------------------------------------------- */
.hero-carousel {
  position: relative;
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.hero-slides { display: flex; transition: transform 0.6s var(--ease); }
.hero-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16/7;
  background: var(--panel-2);
  display: flex;
  align-items: flex-end;
}
.hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: heroZoom 12s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,16,31,0.1) 0%, transparent 35%, rgba(22,16,31,0.78) 75%, rgba(22,16,31,0.97) 100%);
}
.hero-slide::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 0% 100%, rgba(180,214,30,0.22), transparent 70%);
  z-index: 1;
}
.hero-slide-content { position: relative; z-index: 2; padding: 40px; max-width: 620px; animation: heroRise 0.7s var(--ease) both; }
@keyframes heroRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.hero-slide .eyebrow {
  background: var(--lime);
  color: var(--ink);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(180,214,30,0.4);
}
.hero-slide h1 { font-size: 2.35rem; margin-top: 12px; line-height: 1.12; letter-spacing: -0.015em; color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.45); }
.hero-slide .hero-meta { color: rgba(255,255,255,0.88); font-size: 0.95rem; margin-top: 8px; }
.hero-slide .hero-cta { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.hero-slide .price { color: #fff; }
.hero-dots { position: absolute; bottom: 20px; right: 28px; z-index: 3; display: flex; gap: 7px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; padding: 0; transition: all 0.3s var(--ease); }
.hero-dot:hover { background: rgba(255,255,255,0.7); }
.hero-dot.active { background: var(--lime); width: 24px; border-radius: 4px; box-shadow: 0 0 12px rgba(180,214,30,0.7); }

/* Assinatura visual: alcance global — reforça "grandes eventos no mundo todo" */
.global-reach {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.global-reach-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime-dim);
  flex-shrink: 0;
}
.global-reach-cities {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.global-reach-cities .dot { color: var(--line); }

/* ---------------------------------------------------------------------- *
 * Fileira de cards estilo pôster ("Em alta")
 * ---------------------------------------------------------------------- */
.section-heading { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.section-heading h2 { font-size: 1.35rem; letter-spacing: -0.01em; position: relative; padding-left: 16px; border-left: 3px solid var(--lime); }
.card-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximate;
}
.poster-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 200px;
  text-decoration: none;
  display: block;
  transition: transform 0.35s var(--ease);
}
.poster-card:hover { transform: translateY(-6px); }
.poster-card-image {
  position: relative;
  width: 200px;
  aspect-ratio: 2/3;
  border-radius: 12px;
  overflow: hidden;
  background: var(--panel-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.poster-card:hover .poster-card-image { box-shadow: var(--shadow-md); border-color: rgba(180, 214, 30, 0.35); }
.poster-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.poster-card:hover .poster-card-image img { transform: scale(1.06); }
.poster-card-tag {
  position: absolute; top: 8px; left: 8px;
  background: rgba(22,16,31,0.85);
  color: var(--lime);
  font-size: 0.65rem;
  font-family: "IBM Plex Mono", monospace;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
}
.poster-card-title { font-family: "Unbounded", sans-serif; font-weight: 700; font-size: 0.9rem; margin-top: 10px; color: var(--ink); }
.poster-card-meta { color: var(--muted); font-size: 0.75rem; margin-top: 2px; }
.poster-card-price { color: var(--lime-dim); font-family: "IBM Plex Mono", monospace; font-size: 0.8rem; margin-top: 6px; font-weight: 700; }

/* Grade estática (sem scroll horizontal) usada nas seções com curadoria fixa */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

/* "Destaques da semana" — 3 caixas maiores */
.featured-box-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.featured-box {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.featured-box:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(180, 214, 30, 0.35); }
.featured-box-image { width: 100%; aspect-ratio: 16/9; background: var(--panel-2); overflow: hidden; }
.featured-box-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.featured-box:hover .featured-box-image img { transform: scale(1.06); }
.featured-box-body { padding: 14px; }
.featured-box-body h3 { font-family: "Unbounded", sans-serif; font-weight: 700; font-size: 1rem; color: var(--ink); }
.featured-box-body p { color: var(--muted); font-size: 0.8rem; margin: 4px 0 8px; }
.featured-box-body .price { color: var(--lime-dim); font-family: "IBM Plex Mono", monospace; font-weight: 700; font-size: 0.9rem; }
@media (max-width: 720px) {
  .featured-box-row { grid-template-columns: 1fr; }
}

/* Faixa de prova social — só aparece com dados reais e relevantes */
.social-proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  text-align: center;
  color: var(--lime-dim);
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 32px;
  padding: 12px 16px;
  background: #f5ffd9;
  border: 1px solid rgba(180,214,30,0.25);
  border-radius: 999px;
}
.social-proof-dot { color: var(--muted); font-weight: 400; }

/* ---------------------------------------------------------------------- *
 * Rodapé institucional
 * ---------------------------------------------------------------------- */
.site-footer--full { border-top: 1px solid var(--line); margin-top: 64px; padding: 0; background: var(--panel); }
.footer-columns {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr 1.3fr;
  gap: 32px;
}
.footer-columns-wrapper {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease);
}
.footer-columns-wrapper.open { max-height: 2000px; opacity: 1; }
.footer-toggle-row { max-width: 1200px; margin: 0 auto; padding: 0 24px; border-top: 1px solid var(--line); }
.footer-toggle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  background: none;
  border: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  padding: 16px 0;
}
.footer-toggle-btn:hover { color: var(--lime-dim); }
.footer-toggle-btn svg { transition: transform 0.3s var(--ease); }
@media (max-width: 1000px) {
  .footer-columns { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 720px) {
  .footer-columns { grid-template-columns: 1fr 1fr; }
}
.footer-heading { font-family: "Unbounded", sans-serif; font-weight: 700; font-size: 0.85rem; margin-bottom: 10px; color: var(--ink); }
.footer-muted { color: var(--muted); font-size: 0.8rem; line-height: 1.6; margin: 0 0 4px; }
.footer-muted a { color: var(--muted); }
.footer-muted a:hover { color: var(--lime-dim); }
.footer-bottom { border-top: 1px solid var(--line); padding: 16px 0; background: var(--panel); }
.footer-bottom .container { color: var(--muted); font-size: 0.75rem; }

.footer-help { border-bottom: 1px solid var(--line); background: var(--panel-2); }
.footer-help-inner { max-width: 1200px; margin: 0 auto; padding: 20px 24px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-help-title { font-family: "Unbounded", sans-serif; font-weight: 700; font-size: 1.1rem; margin: 0; color: var(--lime-dim); }
.footer-help-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.help-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.8rem;
  color: var(--ink);
  background: #fff;
  white-space: nowrap;
}
.help-pill:hover { border-color: var(--lime); color: var(--lime-dim); }

.footer-sell-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.footer-payments { border-top: 1px solid var(--line); background: var(--panel); }
.footer-payments-inner { max-width: 1200px; margin: 0 auto; padding: 20px 24px; }
.payment-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.75rem;
  color: #4a4458;
  background: #fff;
  font-family: "IBM Plex Mono", monospace;
}
.payment-badge svg { color: #4a4458; flex-shrink: 0; }

.footer-institutional { border-top: 1px solid var(--line); padding: 20px 0; background: var(--panel); }
.footer-institutional .footer-muted { margin: 2px 0; }
.footer-institutional-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
}
.footer-institutional-links a { color: var(--ink); font-weight: 600; }
.footer-institutional-links a:hover { color: var(--lime-dim); }
.footer-institutional-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-institutional-row .footer-muted a { color: var(--ink); }
.footer-institutional-row .footer-muted a:hover { color: var(--lime-dim); }
.footer-social-icons { display: flex; gap: 10px; flex-shrink: 0; }
.footer-social-icons a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #a49bb5;
  color: #fff;
  border-radius: 9px;
  transition: background 0.2s var(--ease);
}
.footer-social-icons a:hover { background: var(--lime-dim); }

/* ---------------------------------------------------------------------- *
 * Espaços de anúncio (AdSense ou banner manual)
 * ---------------------------------------------------------------------- */
.ad-slot { margin: 0 auto 32px; text-align: center; }
.ad-slot-label {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.ad-slot-frame {
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  background: var(--panel);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-box-row .ad-slot { margin: 0; }
.featured-box-row .ad-slot-frame { max-width: 100% !important; width: 100%; }

/* Pop-up do site */
.site-popup-overlay {
  position: fixed; inset: 0; background: rgba(22,16,31,0.55);
  display: flex; align-items: center; justify-content: center;
  z-index: 200; opacity: 0; visibility: hidden; transition: opacity 0.25s ease;
  padding: 20px;
}
.site-popup-overlay.open { opacity: 1; visibility: visible; }
.site-popup-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px;
  max-width: 380px; width: 100%; padding: 28px 24px; text-align: center; position: relative;
  box-shadow: var(--shadow-md);
}
.site-popup-close {
  position: absolute; top: 10px; right: 14px; background: none; border: none;
  color: var(--muted); font-size: 1.4rem; cursor: pointer; line-height: 1;
}
.site-popup-image { width: 100%; border-radius: 10px; margin-bottom: 16px; }
.site-popup-title { font-family: "Unbounded", sans-serif; font-size: 1.15rem; color: var(--ink); margin-bottom: 8px; }
.site-popup-message { color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; line-height: 1.5; }
.site-popup-btn { display: inline-block; }

/* Chatbot de atendimento */
.chatbot-launcher {
  position: fixed; bottom: 24px; right: 24px; z-index: 190;
  background: var(--lime); color: var(--ink); border: none; border-radius: 999px;
  padding: 12px 20px; font-weight: 700; font-size: 0.85rem; cursor: pointer;
  box-shadow: var(--shadow-lime); display: flex; align-items: center; gap: 8px;
  font-family: inherit;
}
.chatbot-panel {
  position: fixed; bottom: 90px; right: 24px; z-index: 191;
  width: 340px; max-width: calc(100vw - 32px); height: 460px; max-height: 70vh;
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px;
  display: none; flex-direction: column; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.chatbot-panel.open { display: flex; }
.chatbot-header {
  background: var(--ink); padding: 14px 16px; display: flex; justify-content: space-between; align-items: center;
}
.chatbot-header span { color: #fff; font-weight: 700; font-family: "Unbounded", sans-serif; font-size: 0.95rem; }
.chatbot-header button { background: none; border: none; color: rgba(255,255,255,0.6); font-size: 1.2rem; cursor: pointer; }
.chatbot-messages { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; background: var(--paper); }
.chatbot-msg { max-width: 85%; padding: 8px 12px; border-radius: 12px; font-size: 0.85rem; line-height: 1.4; }
.chatbot-msg.bot { background: #fff; color: var(--ink); align-self: flex-start; border: 1px solid var(--line); }
.chatbot-msg.user { background: var(--lime); color: var(--ink); align-self: flex-end; }
.chatbot-suggestions { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 14px 10px; background: var(--paper); }
.chatbot-suggestion {
  background: #fff; border: 1px solid var(--line); color: var(--ink);
  border-radius: 999px; padding: 5px 10px; font-size: 0.75rem; cursor: pointer; font-family: inherit;
}
.chatbot-input-row { display: flex; border-top: 1px solid var(--line); background: var(--panel); }
.chatbot-input-row input {
  flex: 1; border: none; background: transparent; color: var(--ink); padding: 12px 14px; font-family: inherit; font-size: 0.85rem;
}
.chatbot-input-row input:focus { outline: none; }
.chatbot-input-row button {
  background: var(--lime); border: none; color: var(--ink); font-weight: 700; padding: 0 18px; cursor: pointer; font-family: inherit;
}

/* Aviso de cookies */
.cookie-consent {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 195;
  width: 340px;
  max-width: calc(100vw - 32px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 20px 18px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.cookie-consent.open { opacity: 1; visibility: visible; transform: translateY(0); }
.cookie-consent-close {
  position: absolute; top: 10px; right: 12px; background: none; border: none;
  color: var(--muted); font-size: 1.2rem; cursor: pointer; line-height: 1; padding: 4px;
}
.cookie-consent-icon { color: var(--lime); margin-bottom: 8px; }
.cookie-consent-text { font-size: 0.85rem; color: var(--ink); line-height: 1.5; margin: 0 0 14px; }
.cookie-consent-text a { color: var(--lime-dim); font-weight: 600; text-decoration: underline; }
.cookie-consent-actions { display: flex; gap: 10px; }
.cookie-consent-actions .btn,
.cookie-consent-actions .btn-secondary { flex: 1; text-align: center; }
@media (max-width: 480px) {
  .cookie-consent { left: 16px; bottom: 16px; }
}
