/**
 * VendaEventos — Design System & Custom CSS
 * Webflow Studio Style Reference (Light Theme, Black Ink, One Blue Mark)
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Colors */
  --color-webflow-blue: #146ef5;
  --color-indigo-ink: #1366e2;
  --color-mercury-tint: #6ca7ff;
  --color-mint-pulse: #60ed76;
  --color-apricot-glow: #ffa666;
  --color-obsidian: #080808;
  --color-pure-white: #ffffff;
  --color-slate: #5a5a5a;
  --color-ash-border: #d8d8d8;
  --color-smoke: #bdbdbd;
  --color-graphite: #222222;
  --color-onyx: #171717;
  --color-mist: #f0f0f0;
  --color-charcoal: #292929;

  /* Typography — Fonts */
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Typography — Scale */
  --text-caption: 10px;
  --text-body-sm: 13px;
  --text-body: 14px;
  --text-body-lg: 16px;
  --text-subheading: 20px;
  --text-heading-sm: 24px;
  --text-heading: 32px;
  --text-heading-lg: 40px;
  --text-display: 56px;
  --text-display-xl: 72px;

  /* Typography — Weights */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;

  /* Spacing */
  --spacing-4: 4px;
  --spacing-8: 8px;
  --spacing-12: 12px;
  --spacing-16: 16px;
  --spacing-24: 24px;
  --spacing-32: 32px;
  --spacing-40: 40px;
  --spacing-48: 48px;
  --spacing-80: 80px;

  /* Layout */
  --page-max-width: 1200px;
  --section-gap: 80px;
  --card-padding: 24px;

  /* Border Radius */
  --radius-tags: 4px;
  --radius-cards: 8px;
  --radius-images: 8px;
  --radius-inputs: 4px;
  --radius-buttons: 4px;

  /* Elevation / Shadows */
  --shadow-hover: rgba(0, 0, 0, 0.01) 0px 54px 22px 0px, rgba(0, 0, 0, 0.04) 0px 30px 18px 0px, rgba(0, 0, 0, 0.08) 0px 13px 13px 0px, rgba(0, 0, 0, 0.09) 0px 3px 7px 0px;
  --shadow-mockup: rgba(0, 0, 0, 0.02) 0px 67px 27px 0px, rgba(0, 0, 0, 0.06) 0px 38px 23px 0px, rgba(0, 0, 0, 0.1) 0px 17px 17px 0px, rgba(0, 0, 0, 0.12) 0px 4px 9px 0px;
  --shadow-sticky: rgba(0, 0, 0, 0.01) 0px 148px 42px 0px, rgba(0, 0, 0, 0.04) 0px 95px 38px 0px, rgba(0, 0, 0, 0.15) 0px 53px 32px 0px, rgba(0, 0, 0, 0.26) 0px 24px 24px 0px;
}

/* Base Body and Typography */
body {
  font-family: var(--font-sans);
  background-color: var(--color-pure-white);
  color: var(--color-obsidian);
  font-size: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings with tight negative tracking */
h1, .display-1, .display-2, .display-3 {
  color: var(--color-obsidian);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.04;
}

h2, .h2 {
  color: var(--color-obsidian);
  font-size: var(--text-heading-lg);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

h3, .h3 {
  color: var(--color-obsidian);
  font-size: var(--text-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

h4, .h4 {
  color: var(--color-obsidian);
  font-size: var(--text-heading-sm);
  font-weight: 600;
  line-height: 1.3;
}

h5, .h5 {
  color: var(--color-obsidian);
  font-size: var(--text-subheading);
  font-weight: 600;
  line-height: 1.3;
}

p.lead {
  color: var(--color-slate);
  font-size: var(--text-subheading);
  font-weight: 400;
  line-height: 1.5;
}

.text-slate {
  color: var(--color-slate) !important;
}

.text-obsidian {
  color: var(--color-obsidian) !important;
}

.bg-mist {
  background-color: var(--color-mist) !important;
}

.bg-pure-white {
  background-color: var(--color-pure-white) !important;
}

.bg-onyx {
  background-color: var(--color-onyx) !important;
}

.font-mono {
  font-family: var(--font-mono) !important;
}

/* Eyebrow Label */
.eyebrow {
  font-size: var(--text-body-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-slate);
  margin-bottom: var(--spacing-16);
  display: inline-block;
}

/* Buttons — Sharp 4px radius */
.btn-primary, .btn-wf-primary {
  background-color: var(--color-webflow-blue) !important;
  border-color: var(--color-webflow-blue) !important;
  color: var(--color-pure-white) !important;
  font-size: var(--text-body);
  font-weight: 500;
  padding: 10px 18px;
  border-radius: var(--radius-buttons) !important;
  border: none;
  box-shadow: none !important;
  transition: background-color 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-primary:hover, .btn-wf-primary:hover {
  background-color: var(--color-indigo-ink) !important;
  color: var(--color-pure-white) !important;
}

.btn-secondary, .btn-wf-secondary {
  background-color: transparent !important;
  border: 1px solid var(--color-ash-border) !important;
  color: var(--color-obsidian) !important;
  font-size: var(--text-body);
  font-weight: 500;
  padding: 10px 18px;
  border-radius: var(--radius-buttons) !important;
  box-shadow: none !important;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-secondary:hover, .btn-wf-secondary:hover {
  background-color: var(--color-mist) !important;
  border-color: var(--color-smoke) !important;
  color: var(--color-obsidian) !important;
}

.btn-ghost {
  background: transparent !important;
  border: none !important;
  color: var(--color-obsidian) !important;
  font-size: var(--text-body);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-buttons) !important;
  text-decoration: none;
  transition: color 0.15s ease;
}

.btn-ghost:hover {
  color: var(--color-webflow-blue) !important;
  text-decoration: underline;
}

/* Forms & Inputs — 4px Radius, 1px Hairline Border */
.form-control, .form-select {
  border: 1px solid var(--color-ash-border) !important;
  border-radius: var(--radius-inputs) !important;
  padding: 10px 14px;
  font-size: var(--text-body);
  color: var(--color-obsidian);
  background-color: var(--color-pure-white);
  box-shadow: none !important;
  transition: border-color 0.15s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--color-webflow-blue) !important;
  outline: none;
}

.input-group-text {
  background-color: var(--color-mist);
  border: 1px solid var(--color-ash-border);
  border-radius: var(--radius-inputs);
  color: var(--color-slate);
}

/* Announcement Banner */
.wf-announcement-banner {
  background-color: var(--color-webflow-blue);
  color: var(--color-pure-white);
  font-size: var(--text-body-sm);
  font-weight: 500;
  padding: 8px 16px;
  text-align: center;
}

.wf-announcement-banner a {
  color: var(--color-pure-white);
  text-decoration: underline;
  font-weight: 600;
}

/* Top Navbar — 56px, Clean White Studio */
.wf-navbar {
  background-color: var(--color-pure-white);
  height: 64px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  z-index: 1030;
}

.wf-navbar.scrolled {
  border-bottom-color: var(--color-ash-border);
}

.wf-brand-mark {
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--color-obsidian);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wf-brand-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-webflow-blue);
  border-radius: 2px;
  display: inline-block;
}

.wf-nav-link {
  color: var(--color-obsidian);
  font-size: var(--text-body);
  font-weight: 400;
  padding: 8px 14px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.wf-nav-link:hover, .wf-nav-link.active {
  color: var(--color-webflow-blue);
}

/* Studio Cards — 8px radius, 1px hairline border, no shadow at rest */
.wf-card {
  background-color: var(--color-pure-white);
  border: 1px solid var(--color-ash-border);
  border-radius: var(--radius-cards);
  padding: var(--card-padding);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.wf-card-hover:hover {
  border-color: var(--color-smoke);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

/* Event Card — Architectural Clean */
.wf-event-card {
  background-color: var(--color-pure-white);
  border: 1px solid var(--color-ash-border);
  border-radius: var(--radius-cards);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.wf-event-card:hover {
  border-color: var(--color-obsidian);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  color: inherit;
}

.wf-event-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: var(--color-mist);
  overflow: hidden;
  border-bottom: 1px solid var(--color-ash-border);
}

.wf-event-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.wf-event-card:hover .wf-event-img-wrap img {
  transform: scale(1.03);
}

.wf-tag-badge {
  background-color: var(--color-obsidian);
  color: var(--color-pure-white);
  font-size: var(--text-caption);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: var(--radius-tags);
  display: inline-flex;
  align-items: center;
}

.wf-tag-badge.blue {
  background-color: var(--color-webflow-blue);
}

.wf-tag-badge.mint {
  background-color: var(--color-mint-pulse);
  color: var(--color-obsidian);
}

.wf-tag-badge.apricot {
  background-color: var(--color-apricot-glow);
  color: var(--color-obsidian);
}

/* Browser-Frame Mockup */
.wf-browser-mockup {
  border: 1px solid var(--color-ash-border);
  border-radius: var(--radius-cards);
  box-shadow: var(--shadow-mockup);
  overflow: hidden;
  background-color: var(--color-pure-white);
}

.wf-browser-bar {
  height: 36px;
  background-color: var(--color-mist);
  border-bottom: 1px solid var(--color-ash-border);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}

.wf-traffic-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.wf-dot-red { background-color: #ff5f56; }
.wf-dot-yellow { background-color: #ffbd2e; }
.wf-dot-green { background-color: #27c93f; }

.wf-browser-url {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-slate);
  background-color: var(--color-pure-white);
  border: 1px solid var(--color-ash-border);
  border-radius: 3px;
  padding: 2px 16px;
  margin: 0 auto;
  max-width: 320px;
  width: 100%;
  text-align: center;
}

/* Logo Strip (Monochrome Grayscale) */
.wf-logo-strip {
  filter: grayscale(100%);
  opacity: 0.65;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.wf-logo-strip:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Feature List Item with Arrow */
.wf-feature-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-ash-border);
  text-decoration: none;
  color: var(--color-obsidian);
  font-size: var(--text-body-lg);
  font-weight: 500;
  transition: color 0.15s ease;
}

.wf-feature-item i {
  color: var(--color-slate);
  transition: transform 0.2s ease, color 0.15s ease;
}

.wf-feature-item:hover {
  color: var(--color-webflow-blue);
}

.wf-feature-item:hover i {
  color: var(--color-webflow-blue);
  transform: translateX(6px);
}

/* Responsive Container */
.wf-container {
  max-width: var(--page-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Section Spacing */
.wf-section {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.wf-section-sm {
  padding-top: 48px;
  padding-bottom: 48px;
}

/* Ticket Lot Selector */
.wf-lot-card {
  border: 1px solid var(--color-ash-border);
  border-radius: var(--radius-cards);
  padding: 16px 20px;
  background-color: var(--color-pure-white);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.wf-lot-card.active, .wf-lot-card:hover {
  border-color: var(--color-obsidian);
}

/* Stepper Counter */
.wf-stepper-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-ash-border);
  background: var(--color-pure-white);
  border-radius: var(--radius-buttons);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-obsidian);
  cursor: pointer;
  transition: all 0.15s ease;
}

.wf-stepper-btn:hover:not(:disabled) {
  background-color: var(--color-mist);
  border-color: var(--color-obsidian);
}

.wf-stepper-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Footer Inverted / Minimalist Studio */
.wf-footer {
  background-color: var(--color-onyx);
  color: var(--color-pure-white);
  border-top: 1px solid var(--color-graphite);
  padding-top: 64px;
  padding-bottom: 32px;
}

.wf-footer a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: var(--text-body);
  transition: color 0.15s ease;
}

.wf-footer a:hover {
  color: var(--color-pure-white);
  text-decoration: underline;
}

/* Media Queries */
@media (max-width: 768px) {
  :root {
    --section-gap: 48px;
    --text-display: 38px;
    --text-display-xl: 44px;
  }
}
