/* ============================================================
   Loja Verdade nº 1451 — Design System (azul royal + dourado)
   Identidade maçônica · Poppins · institucional
   Tokens: assets/css/tokens.css · Brasão: identidade/
   ============================================================ */

:root {
  --my-primary: var(--me-brand, #1A3A6B);
  --my-primary-dark: var(--me-brand-dark, #122A4F);
  --my-secondary: var(--me-gold, #C9A227);
  --my-accent: var(--me-accent-blue, #2C5AA0);
  --my-bg: var(--me-bg, #F7F8FA);
  --my-white: var(--me-surface, #FFFFFF);
  --my-text: var(--me-text, #16213A);
  --my-muted: var(--me-text-muted, #6B7488);
  --my-border: var(--me-border, #E2E5EB);
  --my-success: var(--me-success, #16A34A);
  --my-warning: var(--me-warning, #D97706);
  --my-danger: var(--me-danger, #DC2626);
  --my-gradient: var(--me-gradient, linear-gradient(90deg, #1A3A6B 0%, #2C5AA0 100%));
  --my-gradient-diagonal: var(--me-gradient-diagonal, linear-gradient(135deg, #1A3A6B 0%, #2C5AA0 100%));

  --lv-navy: var(--me-sidebar-bg, #122A4F);
  --lv-navy-2: #16335c;
  --lv-navy-3: #0f2444;
  /* "gold" = dourado real da Loja (era magenta no MyPharm) */
  --lv-gold: var(--me-gold, #C9A227);
  --lv-gold-ink: #8A6710;
  --lv-gold-light: var(--me-gold-light, #E2C868);
  --lv-gold-glow: rgba(201, 162, 39, 0.35);
  --lv-white: var(--my-white);
  --lv-bg: var(--my-bg);
  --lv-bg-soft: #eef3fb;
  --lv-text: var(--my-text);
  --lv-muted: var(--my-muted);
  --lv-border: rgba(15, 23, 42, 0.08);
  --lv-border-gold: rgba(201, 162, 39, 0.4);
  --lv-success: var(--my-success);
  --lv-warning: var(--my-warning);
  --lv-danger: var(--my-danger);
  --lv-info: var(--me-info, #2563EB);
  --lv-radius: 16px;
  --lv-radius-lg: 20px;
  --lv-radius-pill: 999px;
  --lv-shadow: var(--me-shadow, 0 4px 14px rgba(15, 23, 42, 0.08));
  --lv-shadow-lg: var(--me-shadow-lg, 0 12px 40px rgba(15, 23, 42, 0.12));
  --lv-shadow-gold: var(--me-shadow-brand, 0 8px 28px rgba(26, 58, 107, 0.28));
  --lv-font: var(--me-font, 'Poppins', system-ui, sans-serif);
  --lv-font-display: var(--me-font, 'Poppins', system-ui, sans-serif);
  --lv-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --lv-transition: 0.35s var(--lv-ease);
  --lv-sidebar: var(--me-sidebar, 252px);
  --lv-topbar: 68px;
}

.brand-title, h1, h2, h3 { font-family: var(--lv-font-display); font-weight: 700; }

.btn-primary-my, .btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--my-gradient-diagonal);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: var(--lv-radius-pill);
  padding: 14px 28px;
  box-shadow: var(--lv-shadow-gold);
  transition: transform var(--lv-transition), box-shadow var(--lv-transition), filter var(--lv-transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.my-card, .lv-form-card, .event-card, .lv-step, .lv-table-card, .kpi-card {
  background: var(--my-white);
  border: 1px solid var(--my-border);
  border-radius: var(--lv-radius-lg);
  box-shadow: var(--lv-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.my-card:hover, .event-card:hover, .lv-step:hover, .kpi-card:hover {
  transform: translateY(-3px);
  border-color: rgba(26, 58, 107, 0.35);
  box-shadow: 0 6px 8px rgba(26, 58, 107, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--lv-font);
  color: var(--lv-text);
  background: var(--lv-bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--lv-gold-light);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: .5rem;
  left: .5rem;
  z-index: 2000;
  padding: .75rem 1rem;
  background: #fff;
  color: var(--lv-navy);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.lv-display { font-family: var(--lv-font-display); letter-spacing: 0.02em; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { transform: translateX(-28px); }
.reveal-left.active { transform: translateX(0); }
.reveal-right { transform: translateX(28px); }
.reveal-right.active { transform: translateX(0); }
.reveal-zoom { transform: scale(0.96); }
.reveal-zoom.active { transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── Buttons ── */
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}
.btn-primary-my:hover, .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(26, 58, 107, 0.28);
  color: #fff;
}
.btn-gold:hover::after { transform: translateX(120%); }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 13px 26px;
  border-radius: var(--lv-radius-pill);
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  font-weight: 600;
  background: transparent;
  transition: all var(--lv-transition);
}
.btn-outline-gold:hover {
  border-color: var(--lv-gold);
  background: rgba(26, 58, 107, 0.12);
  color: var(--lv-gold-light);
}

.btn-navy {
  background: var(--lv-navy);
  color: #fff;
  border: none;
  border-radius: var(--lv-radius-pill);
  padding: 12px 24px;
  font-weight: 600;
  transition: all var(--lv-transition);
}
.btn-navy:hover { background: var(--lv-navy-2); color: #fff; transform: translateY(-1px); }

/* ── Public header ── */
.lv-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.85rem 0;
  padding-top: calc(0.85rem + env(safe-area-inset-top, 0px));
  transition: background-color .22s ease, box-shadow .22s ease, border-color .22s ease;
  border-bottom: 1px solid transparent;
}
.lv-header--overlay {
  background: #0f2444;
  border-bottom-color: rgba(226, 200, 104, 0.16);
}
.lv-header.scrolled {
  background: rgba(15, 36, 68, 0.98);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(226, 200, 104, 0.2);
  box-shadow: 0 4px 12px rgba(7, 26, 47, 0.18);
}
.lv-header--solid {
  background: #0f2444;
}
.lv-header > .container {
  min-height: 52px;
}
.lv-header .lv-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--lv-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  text-decoration: none;
  min-width: 0;
  flex: 0 1 auto;
}
/* Lockup logo: símbolo (brasão) + wordmark institucional da Loja */
.lv-logo-mark { display: block; flex: none; width: 46px; height: 46px; object-fit: contain; }
.lv-logo-text { color: #fff; min-width: 0; }
.lv-logo-stack { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.lv-logo-stack strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700; font-size: 1.35rem; letter-spacing: 0.02em; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lv-logo-stack small {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--lv-gold-light);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lv-nav { display: flex; align-items: center; gap: clamp(.8rem, 1.35vw, 1.5rem); margin-left: auto; }
.lv-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}
.lv-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--lv-gold);
  transition: transform .22s ease;
  transform: scaleX(0);
  transform-origin: left;
}
.lv-nav a:hover, .lv-nav a.active { color: var(--lv-gold-light); }
.lv-nav a:hover::after, .lv-nav a.active::after { width: 100%; transform: scaleX(1); }

.lv-header-admin {
  padding: .65rem 1.1rem;
  margin-left: .35rem;
  font-size: .82rem;
  box-shadow: 0 4px 8px rgba(7, 26, 47, .2);
}

.lv-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.35rem;
  cursor: pointer;
  flex: none;
  line-height: 1;
  z-index: 1001;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.lv-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #0b1f3b;
  z-index: 1200;
  flex-direction: column;
  padding: max(1rem, env(safe-area-inset-top, 0px)) 1.15rem max(1rem, env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.lv-mobile-nav.open { display: flex; }
.lv-mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.lv-mobile-brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: #fff;
}
.lv-mobile-brand img { width: 40px; height: 40px; object-fit: contain; }
.lv-mobile-brand span { display: flex; flex-direction: column; line-height: 1.15; }
.lv-mobile-brand strong { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.15rem; }
.lv-mobile-brand small { color: var(--lv-gold-light); font-size: .62rem; text-transform: uppercase; letter-spacing: .06em; }
.lv-mobile-nav-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  width: min(100%, 760px);
  margin: auto;
  padding: 1.5rem 0;
}
.lv-mobile-nav-group { display: flex; flex-direction: column; gap: .25rem; }
.lv-mobile-nav-group p {
  margin: 0 0 .45rem;
  color: var(--lv-gold-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.lv-mobile-nav-group a {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  font-weight: 600;
  padding: .7rem .8rem;
  border-radius: 10px;
}
.lv-mobile-nav-group a i { width: 1.15rem; color: var(--lv-gold-light); }
.lv-mobile-nav-group a:hover,
.lv-mobile-nav-group a.active {
  color: #fff;
  background: rgba(255,255,255,.08);
}
.lv-mobile-nav-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.lv-mobile-nav-foot a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  font-weight: 700;
}
.lv-mobile-nav-foot span { color: rgba(255,255,255,.5); font-size: .72rem; }
.lv-mobile-close {
  position: static;
  flex: none;
}
.lv-mobile-close {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  color: #fff;
  font-size: 1.35rem;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1201;
}

/* ── Hero premium ── */
.lv-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--my-gradient-diagonal);
  color: #fff;
  padding: 8rem 0 5rem;
}
.lv-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lv-hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.lv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,26,47,0.88) 0%, rgba(7,26,47,0.65) 50%, rgba(11,39,69,0.9) 100%);
  z-index: 1;
}
.lv-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: lvFloat 8s ease-in-out infinite;
  z-index: 1;
}
.lv-hero-glow--1 { width: 400px; height: 400px; background: var(--lv-gold); top: -10%; right: 10%; }
.lv-hero-glow--2 { width: 300px; height: 300px; background: var(--my-accent); bottom: 10%; left: -5%; animation-delay: -3s; }
.lv-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.lv-hero-pattern {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
}
.lv-hero-art {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin-left: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35));
}

/* ── Abertura cinematográfica (brasão → partículas → VERDADE) — automática ── */
.lv-hero-stage { position: relative; }
.lv-hero-sticky {
  position: relative; height: 100vh; min-height: 560px; overflow: hidden;
  background: radial-gradient(ellipse 80% 65% at 50% 32%, #1c3f72 0%, #0F2347 58%, #0a1a36 100%);
}
.lv-hero-sticky::after { /* vinheta sutil nas bordas */
  content: ''; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 200px rgba(7,17,38,0.7);
}
#lvHeroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; }
.lv-hero-stage-brasao {
  position: absolute; top: 40%; left: 50%; transform: translate(-50%,-50%);
  width: min(42vh, 380px); height: auto; z-index: 3;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
  will-change: opacity;
}
.lv-hero-stage-texto {
  position: absolute; top: 40%; left: 50%; transform: translate(-50%,-50%);
  text-align: center; z-index: 1; opacity: 1; pointer-events: none; margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif; color: rgba(201,162,39,0.6);
}

/* Foto do templo ao fundo da abertura (sutil) */
.lv-hero-sticky .lv-hero-photo {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0.16; z-index: 0;
}

/* Chamada institucional que surge ao fim da animação */
.lv-hero-cta {
  position: absolute; left: 50%; bottom: 13%; transform: translateX(-50%);
  width: min(92%, 720px); text-align: center; z-index: 6; opacity: 1;
  transition: opacity .6s ease;
}
.lv-hero-cta .lv-hero-badge {
  display: inline-block; margin-bottom: .9rem;
  border: 1px solid rgba(201,162,39,0.5); color: var(--lv-gold-light);
  background: rgba(201,162,39,0.08); padding: .35rem 1rem; border-radius: 999px;
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}
.lv-hero-tagline { color: rgba(255,255,255,0.82); font-size: clamp(.92rem, 1.6vw, 1.1rem); margin: 0 0 1.3rem; line-height: 1.6; }
.lv-hero-cta .lv-hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.lv-hero-stage-texto .lv-hst-1 { display: block; font-weight: 700; font-size: clamp(2rem, 11vw, 9rem); line-height: .95; letter-spacing: .02em; white-space: nowrap; }
.lv-hero-stage-texto .lv-hst-2 { display: block; font-weight: 700; font-size: clamp(1.1rem, 5vw, 4.5rem); letter-spacing: .15em; }
.lv-hero-hint {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: rgba(255,255,255,0.6); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  transition: opacity .4s;
}
.lv-hero-hint i { font-size: 1.1rem; animation: lvHintBob 1.6s ease-in-out infinite; }
@keyframes lvHintBob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(7px);} }

/* Fallback estático (reduced-motion): brasão + título, sem canvas */
.lv-hero-stage.is-static .lv-hero-sticky { height: auto; min-height: 0; padding: 7rem 1rem 4rem; text-align: center; }
.lv-hero-stage.is-static #lvHeroCanvas, .lv-hero-stage.is-static .lv-hero-hint { display: none; }
.lv-hero-stage.is-static .lv-hero-stage-brasao { position: static; transform: none; opacity: 1 !important; margin: 0 auto 1.5rem; width: min(60vw, 240px); }
.lv-hero-stage.is-static .lv-hero-stage-texto { position: static; transform: none; opacity: 1 !important; margin-bottom: 1.5rem; }
.lv-hero-stage.is-static .lv-hero-cta { position: static; transform: none; opacity: 1 !important; width: auto; margin: 0 auto; }
.lv-hero-stage.is-static .lv-hero-stage-texto .lv-hst-1 {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  letter-spacing: .01em;
}
.lv-hero-stage.is-static .lv-hero-stage-texto .lv-hst-2 {
  font-size: clamp(1.05rem, 2.5vw, 2rem);
  letter-spacing: .12em;
}

/* Hero da Loja: foto do templo ao fundo + brasão em destaque */
.lv-hero-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.22; filter: saturate(1.05);
  z-index: 0;
}
.lv-hero--loja .lv-hero-overlay {
  background: linear-gradient(135deg, rgba(15,35,71,0.92) 0%, rgba(26,58,107,0.82) 55%, rgba(15,35,71,0.94) 100%);
}
.lv-hero-emblem { display: inline-block; position: relative; }
.lv-hero-brasao {
  width: 100%; max-width: 380px; height: auto; margin: 0 auto;
  filter: drop-shadow(0 18px 44px rgba(0,0,0,0.45));
  animation: lvFloat 7s ease-in-out infinite;
}
@keyframes lvFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.05); }
}
.lv-hero-content { position: relative; z-index: 2; }
.lv-hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--lv-border-gold);
  border-radius: var(--lv-radius-pill);
  color: var(--lv-gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.lv-hero h1 {
  font-family: var(--lv-font-display);
  /* piso reduzido (1.9rem) p/ caber em telas pequenas; quebra de palavras
     longas (ex.: "tecnologia") evita overflow horizontal no mobile */
  font-size: clamp(1.9rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1rem;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
.lv-hero h1 em { font-style: normal; color: var(--lv-gold); }
.lv-hero-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 2rem;
}
.lv-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.lv-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.lv-stat-float {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: var(--lv-radius);
  padding: 1rem 1.35rem;
  min-width: 140px;
  transition: transform var(--lv-transition), border-color var(--lv-transition);
}
.lv-stat-float:hover {
  transform: translateY(-4px);
  border-color: var(--lv-border-gold);
}
.lv-stat-float strong {
  display: block;
  font-size: 1.5rem;
  color: var(--lv-gold-light);
  font-variant-numeric: tabular-nums;
}
.lv-stat-float span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ── Faixa de métricas (abaixo do hero) ── */
.lv-stats-strip {
  background: linear-gradient(180deg, #122A4F 0%, #0F2347 100%);
  padding: 2.75rem 0;
  border-top: 1px solid rgba(201,162,39,0.25);
  border-bottom: 1px solid rgba(201,162,39,0.25);
}
.lv-stat-item strong {
  display: block;
  font-family: var(--lv-font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1;
  color: var(--lv-gold-light);
}
.lv-stat-item span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

/* Pilares (faixa institucional): cartão elegante com ícone dourado em destaque */
.lv-pillar-card {
  display: flex; flex-direction: column; align-items: center; gap: .65rem;
  padding: 1.4rem .75rem; border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.22);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.lv-pillar-card:hover {
  transform: translateY(-5px);
  background: rgba(201,162,39,0.08);
  border-color: rgba(201,162,39,0.5);
}
.lv-pillar-card .lv-pillar-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--me-gradient-gold, linear-gradient(135deg,#E2C868,#C9A227));
  font-size: 1.8rem;
  box-shadow: 0 6px 18px rgba(201,162,39,0.4);
}
.lv-pillar-card .lv-pillar-ico i { color: #122A4F; }
.lv-pillar-card .lv-pillar-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700; font-size: 1.15rem; color: #fff; letter-spacing: .02em;
}
.lv-pillar-card .lv-pillar-sub { font-size: .72rem; color: var(--lv-gold-light); text-transform: uppercase; letter-spacing: .08em; }

/* ── Section titles ── */
.lv-section { padding: 5rem 0; }
.lv-section--alt { background: var(--lv-white); }
.lv-section-title {
  font-family: var(--lv-font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.5rem;
  color: var(--lv-navy);
}
.lv-section-sub { color: var(--lv-muted); max-width: 560px; margin-bottom: 2.5rem; }

/* ── Institucional (Loja Verdade) ── */
.lv-eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 600; letter-spacing: .03em;
  color: var(--lv-gold-ink); margin-bottom: .5rem;
}
.lv-page-hero-sm .lv-eyebrow,
.lv-cta-band .lv-eyebrow { color: var(--lv-gold-light); }
.lv-section-title.brand-title { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; letter-spacing: .01em; }
.lv-pillar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--me-gradient-soft, #eef3fb);
  color: var(--lv-gold-ink); font-size: 1.7rem; margin: 0 auto .25rem;
  border: 1.5px solid var(--lv-border-gold);
}
.text-gold-gradient {
  color: var(--lv-gold-light);
}
.lv-cta-band {
  background: linear-gradient(135deg, #0F2347 0%, #1A3A6B 60%, #16335c 100%);
  position: relative; overflow: hidden;
}
.lv-cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% -10%, rgba(201,162,39,0.18), transparent 60%);
  pointer-events: none;
}
.lv-cta-band .container { position: relative; z-index: 1; }

/* Hero pequeno institucional (sobre/contato) */
.lv-page-hero-inst {
  background: linear-gradient(135deg, #0F2347 0%, #1A3A6B 100%);
  color: #fff; padding: 7rem 0 3rem; text-align: center;
}
.lv-page-hero-inst .lv-display { color: #fff; }

/* Timeline da história */
.lv-timeline { border-left: 2px solid var(--lv-border-gold); padding-left: 1.5rem; margin-top: 1rem; }
.lv-timeline-item { position: relative; padding-bottom: 1.5rem; display: flex; gap: 1rem; }
.lv-timeline-item::before {
  content: ''; position: absolute; left: -1.97rem; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--lv-gold); border: 2px solid #fff; box-shadow: 0 0 0 2px var(--lv-gold);
}
.lv-timeline-year {
  flex: none; min-width: 64px; font-family: 'Cormorant Garamond', serif;
  font-weight: 700; color: var(--lv-gold-ink); font-size: 1.1rem;
}
.lv-timeline-item strong { display: block; color: var(--lv-text); margin-bottom: .2rem; }

/* Value cards */
.lv-value-card {
  display: flex; gap: .9rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--my-border); border-radius: 14px;
  padding: 1rem 1.2rem; height: 100%;
}
.lv-value-card i { font-size: 1.4rem; color: var(--lv-gold-ink); margin-top: .15rem; }
.lv-value-card strong { color: var(--lv-text); }

/* Contato */
.lv-contact-line { display: flex; align-items: center; gap: .7rem; margin-bottom: .9rem; color: var(--lv-text); }
.lv-contact-line i { color: var(--lv-gold-ink); font-size: 1.1rem; }

/* ── Moldura decorativa (fotos históricas) ── */
.lv-frame {
  position: relative; margin: 0; padding: 12px;
  background: linear-gradient(135deg, #1A3A6B, #0F2347);
  border: 2px solid var(--lv-gold); border-radius: 8px;
  box-shadow: var(--lv-shadow-lg);
}
.lv-frame::before, .lv-frame::after {
  content: ''; position: absolute; width: 26px; height: 26px;
  border: 2px solid var(--lv-gold-light); opacity: .8;
}
.lv-frame::before { top: 5px; left: 5px; border-right: none; border-bottom: none; border-top-left-radius: 6px; }
.lv-frame::after { bottom: 5px; right: 5px; border-left: none; border-top: none; border-bottom-right-radius: 6px; }
.lv-frame img { width: 100%; height: auto; border-radius: 4px; display: block; }
.lv-frame figcaption {
  text-align: center; color: var(--lv-gold-light); font-weight: 600;
  font-size: .85rem; padding: .6rem 0 .2rem; letter-spacing: .03em;
}
.lv-frame--dark { background: linear-gradient(135deg, #0F2347, #16213A); }
.lv-frame--photo img { aspect-ratio: 4/3; object-fit: cover; }

/* Lema / citações */
.lv-motto { font-size: 1.05rem; color: var(--lv-text); margin-top: 1rem; }
.lv-motto strong { color: var(--lv-gold-ink); }
.lv-motto-quote {
  font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic;
  font-size: 1.2rem; color: var(--lv-navy);
  border: 1px solid var(--lv-border-gold); border-radius: 10px;
  padding: 1rem; margin-top: 1rem;
}

/* Fundadores */
.lv-founders { max-width: 640px; margin-top: 2rem; }
.lv-founders-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .35rem 1.5rem;
  text-align: left; font-size: .9rem; color: var(--lv-text-2, #475067);
}
.lv-founders-grid span { padding: .35rem 0; border-bottom: 1px dotted var(--lv-border-gold); }

/* Placa de fundação — cabeçalho e divisa */
.lv-plaque-head {
  border: 1px solid var(--lv-border-gold); border-radius: 10px;
  padding: 1rem; margin-bottom: 1.2rem;
}
.lv-plaque-head p { margin: 0; font-size: .8rem; letter-spacing: .15em; color: var(--lv-gold-dark, #A9851C); font-weight: 600; }
.lv-plaque-head strong { display: block; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.4rem; color: var(--lv-navy); line-height: 1.2; margin: .15rem 0; }
.lv-plaque-head small { color: var(--lv-muted); font-size: .82rem; }
.lv-divisa {
  font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.5; color: var(--lv-navy);
  background: var(--me-gradient-soft, #eef3fb); border: 1px solid var(--lv-border-gold);
  border-radius: 12px; padding: 1.1rem 1.4rem; margin: 0 0 1.2rem;
  position: relative;
}
.lv-divisa::before {
  content: '\201C'; font-size: 3rem; color: var(--lv-gold); opacity: .5;
  position: absolute; top: -.2rem; left: .4rem; line-height: 1;
}
.lv-plaque-found { font-size: .92rem; }

/* Lista de informações (templo) */
.lv-info-list { list-style: none; padding: 0; margin: 1.2rem 0; }
.lv-info-list li { display: flex; gap: .9rem; align-items: flex-start; padding: .7rem 0; border-bottom: 1px solid var(--my-border); }
.lv-info-list i { color: var(--lv-gold-ink); font-size: 1.3rem; margin-top: .1rem; }
.lv-info-list strong { display: block; color: var(--lv-text); }
.lv-info-list span { color: var(--lv-muted); font-size: .92rem; }

/* ── Acordeão (Maçonaria Q&A) ── */
.lv-acc-item {
  background: #fff; border: 1px solid var(--my-border); border-radius: 12px;
  margin-bottom: .7rem; overflow: hidden; transition: border-color .2s;
}
.lv-acc-item[open] { border-color: var(--lv-border-gold); box-shadow: var(--lv-shadow); }
.lv-acc-item summary {
  cursor: pointer; padding: 1rem 1.2rem; font-weight: 600; color: var(--lv-navy);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.lv-acc-item summary::-webkit-details-marker { display: none; }
.lv-acc-item summary::after { content: '\F282'; font-family: 'bootstrap-icons'; color: var(--lv-gold-ink); transition: transform .2s; }
.lv-acc-item[open] summary::after { transform: rotate(180deg); }
.lv-acc-item p { padding: 0 1.2rem 1.1rem; margin: 0; color: var(--lv-muted); }

/* Card lateral (aside) */
.lv-aside-card {
  background: var(--me-gradient-soft, #eef3fb); border: 1px solid var(--lv-border-gold);
  border-radius: var(--lv-radius-lg); padding: 1.5rem; position: sticky; top: 90px;
}

/* Grid de cards genérico (galeria, notícias) */
.lv-grid-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.lv-vener-card {
  background: linear-gradient(150deg, #1A3A6B, #0F2347); border: 2px solid var(--lv-gold);
  border-radius: 14px; padding: 1.2rem; text-align: center; color: #fff;
}
.lv-vener-card .lv-vener-photo {
  width: 120px; height: 140px; object-fit: cover; margin: .5rem auto;
  border: 2px solid var(--lv-gold-light); border-radius: 6px; filter: grayscale(.3) sepia(.15); display: block;
}
.lv-vener-card .lv-vener-name {
  background: var(--me-gradient-gold); color: #16213A; font-weight: 700;
  border-radius: 6px; padding: .4rem .6rem; margin-top: .6rem; font-size: .85rem;
}
.lv-vener-card .lv-vener-term { font-size: .75rem; color: var(--lv-gold-light); margin-top: .3rem; }

/* Galeria com imagens-card oficiais (cada imagem já tem brasão+foto+nome+período) */
.lv-vener-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem;
}
.lv-vener-figure {
  margin: 0; border-radius: 12px; overflow: hidden; position: relative;
  box-shadow: var(--lv-shadow); transition: transform .25s ease, box-shadow .25s ease;
}
.lv-vener-figure img { width: 100%; height: auto; display: block; border-radius: 12px; }
.lv-vener-figure:hover { transform: translateY(-6px); box-shadow: var(--lv-shadow-lg); }
.lv-vener-figure.is-current { outline: 3px solid var(--lv-gold); outline-offset: 2px; }
.lv-vener-badge {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  background: var(--me-gradient-gold, linear-gradient(90deg,#C9A227,#E2C868));
  color: #16213A; font-size: .68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; padding: .25rem .6rem; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

/* Estado "em breve" / placeholder de página */
.lv-soon { text-align: center; padding: 3rem 1rem; }
.lv-soon i { font-size: 3rem; color: var(--lv-gold-ink); }
.lv-soon h3 { font-family: 'Cormorant Garamond', serif; color: var(--lv-navy); margin: 1rem 0 .5rem; }

/* ── Notícias ── */
.lv-news-search { display: flex; gap: .6rem; max-width: 540px; }
.lv-news-search input { flex: 1; border: 1px solid var(--my-border); border-radius: 999px; padding: .7rem 1.2rem; font-family: inherit; }
.lv-news-list { display: grid; gap: 1.2rem; }
.lv-news-card { display: flex; gap: 1.2rem; padding: 1.2rem; align-items: flex-start; }
.lv-news-thumb {
  flex: none; width: 72px; height: 72px; border-radius: 12px;
  background: var(--me-gradient-soft, #eef3fb); border: 1px solid var(--lv-border-gold);
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--lv-gold-ink);
}
.lv-news-thumb--img { padding: 0; overflow: hidden; background: none; }
.lv-news-thumb--img img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.lv-news-more summary { cursor: pointer; color: var(--lv-navy); font-weight: 600; font-size: .85rem; list-style: none; }
.lv-news-more summary::-webkit-details-marker { display: none; }

/* ── Livro de visitas ── */
.lv-visit-card { background: #fff; border: 1px solid var(--lv-border-gold); border-radius: 10px; padding: 1rem 1.2rem; margin-bottom: 1rem; }
.lv-visit-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .3rem; }
.lv-visit-head strong { color: var(--lv-navy); }
.lv-visit-head span { font-size: .8rem; color: var(--lv-muted); }

/* ── Mercado ── */
.lv-market-card { padding: 1.4rem; }
.lv-market-cat { display: inline-block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--lv-gold-ink); background: rgba(201,162,39,.12); padding: .2rem .6rem; border-radius: 999px; margin-bottom: .6rem; }

/* ── Calendário ── */
.lv-cal-head { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.lv-cal { background: #fff; border: 1px solid var(--my-border); border-radius: var(--lv-radius-lg); overflow: hidden; box-shadow: var(--lv-shadow); }
.lv-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.lv-cal-weekdays { background: var(--lv-navy); }
.lv-cal-weekdays span { color: #fff; text-align: center; padding: .7rem 0; font-size: .8rem; font-weight: 600; }
.lv-cal-cell { min-height: 92px; border: 1px solid var(--my-border); padding: .4rem; position: relative; }
.lv-cal-empty { background: #fafbfc; }
.lv-cal-num { font-weight: 600; color: var(--lv-text); font-size: .9rem; }
.lv-cal-cell.is-sessao { background: rgba(201,162,39,.06); }
.lv-cal-tag { display: block; font-size: .62rem; color: var(--lv-gold-dark, #A9851C); font-weight: 700; margin-top: .2rem; }
.lv-cal-event { display: block; font-size: .68rem; background: var(--lv-navy); color: #fff; border-radius: 5px; padding: .15rem .35rem; margin-top: .25rem; }
.lv-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; vertical-align: middle; }
.lv-dot--gold { background: var(--lv-gold); }
.lv-dot--blue { background: var(--lv-navy); }
@media (max-width: 575px) { .lv-cal-cell { min-height: 56px; font-size: .75rem; } .lv-cal-event, .lv-cal-tag { display: none; } }

/* Banner de cookies */
.lv-cookie {
  position: fixed;
  left: 50%;
  bottom: max(.75rem, env(safe-area-inset-bottom, 0px));
  z-index: 1150;
  width: min(680px, calc(100% - 1.5rem));
  margin: 0;
  transform: translateX(-50%);
  background: #0f2444;
  color: #fff;
  border-radius: 12px;
  padding: .75rem .85rem .75rem 1rem;
  box-shadow: 0 8px 16px rgba(7,26,47,.25);
  display: flex;
  gap: 1rem;
  align-items: center;
}
.lv-cookie p { font-size: .76rem; line-height: 1.4; flex: 1; min-width: 0; color: rgba(255,255,255,.82); }
.lv-cookie p strong { display: block; color: #fff; font-size: .8rem; }
.lv-cookie-ok {
  background: var(--lv-gold-light);
  color: #0f2444;
  border: none;
  border-radius: 999px;
  padding: .55rem 1rem;
  min-height: 40px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}
.lv-cookie-ok:hover { background: #f0d87d; }
body.lv-nav-open .lv-cookie { display: none !important; }

/* ── Empty state (ex.: home sem eventos) ── */
.lv-empty {
  max-width: 520px;
  padding: 3rem 2rem;
  border-radius: var(--lv-radius-lg);
}
.lv-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: var(--me-gradient-soft, linear-gradient(135deg, #eef3fb 0%, #ffffff 60%));
  color: var(--lv-gold-ink);
  font-size: 2rem;
}
.lv-empty-title { font-size: 1.25rem; margin: 0 0 0.5rem; color: var(--lv-text); }
.lv-empty-text { color: var(--lv-muted); margin: 0 auto 1.75rem; max-width: 380px; }

/* ── Compra rápida (point-and-click, mobile-first) ── */
.lv-buy { max-width: 560px; margin: 0 auto; padding: 7rem 1rem 4rem; }
.lv-buy-card { padding: 0; border-radius: 16px; overflow: hidden; border: none; box-shadow: 0 8px 24px rgba(15,36,68,.1); }

/* Banner do evento no topo do card */
.lv-buy-banner { position: relative; aspect-ratio: 16 / 8; overflow: hidden; background: var(--lv-navy); }
.lv-buy-banner img { display: block; }
.lv-buy-banner-grad {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.4) 100%);
}
.lv-buy-banner .lv-buy-tag { position: absolute; top: .8rem; left: .9rem; margin: 0; z-index: 3; }

/* Conteúdo do card (padding interno, já que o card tem padding 0) */
.lv-buy-head { padding: 1.4rem 1.6rem 1.1rem; border-bottom: 1px solid var(--lv-border, #e4e4e7); }
.lv-buy-step, .lv-buy-card form { padding: 0 1.6rem; }
.lv-buy-step { padding-top: .4rem; padding-bottom: 1.5rem; }
.lv-buy-card form { padding-bottom: 0; }
.lv-buy-progress {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 1.6rem 0;
  color: var(--lv-muted);
  font-size: .75rem;
  font-weight: 700;
}
.lv-buy-progress span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
}
.lv-buy-progress span::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}
.lv-buy-progress span.active { color: var(--lv-navy); }
.lv-buy-progress span.active::before { background: var(--lv-gold); box-shadow: 0 0 0 3px rgba(201,162,39,.15); }
.lv-buy-progress i { flex: 1; height: 1px; background: var(--my-border); }
.lv-buy-tag {
  display: inline-flex; align-items: center; font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: #fff; background: var(--me-gradient, linear-gradient(90deg,#1A3A6B,#2C5AA0));
  padding: .3rem .75rem; border-radius: 999px; box-shadow: 0 4px 12px rgba(26, 58, 107,.3);
}
.lv-buy-title { font-size: 1.4rem; line-height: 1.2; margin: 0 0 .5rem; }
.lv-buy-meta { color: var(--lv-muted); font-size: .85rem; margin: 0 0 1rem; line-height: 1.6; }
.lv-buy-typebar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--me-gradient-soft, linear-gradient(135deg,#eef3fb,#fff));
  border: 1px solid rgba(26, 58, 107,.15);
  border-radius: 12px; padding: .7rem 1rem;
}
.lv-buy-typebar span { font-size: .9rem; font-weight: 600; color: var(--lv-text); }
.lv-buy-typebar strong { font-size: 1.15rem; font-family: var(--lv-font-display); color: var(--lv-gold-ink); }
.lv-buy-steptitle { font-size: 1rem; font-weight: 700; margin: 1.1rem 0 1rem; color: var(--lv-text); }
.lv-field { margin-bottom: 1rem; }
.lv-field label { display:block; font-size: .85rem; font-weight: 600; margin-bottom: .35rem; color: var(--lv-text); }
.lv-field input {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--lv-border, #e4e4e7);
  border-radius: 12px; font-size: 1rem; font-family: inherit; transition: border-color .2s;
}
.lv-field input:focus { outline: none; border-color: var(--lv-gold); box-shadow: 0 0 0 3px rgba(26, 58, 107,.12); }
.lv-field small { display:block; color: var(--lv-muted); font-size: .78rem; margin-top: .35rem; }
.lv-buy-btn { margin-top: .5rem; padding: .95rem; font-size: 1rem; justify-content: center; }
.lv-buy-back {
  display:block; width:100%; text-align:center; background:none; border:none;
  color: var(--lv-muted); font-size: .85rem; margin-top: .8rem; cursor:pointer;
}
.lv-qty-row { display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:.5rem 0; }
.lv-qty-unit { display:block; color: var(--lv-muted); font-size: .82rem; }

/* Opções de tipo de ingresso (radio cards) */
.lv-type-opt {
  display:flex; align-items:center; gap:.85rem; width:100%;
  border:1.5px solid var(--lv-border,#e4e4e7); border-radius:12px;
  padding:.85rem 1rem; margin-bottom:.6rem; cursor:pointer; transition: all .15s;
  box-sizing: border-box;
}
.lv-type-opt:has(input:checked) { border-color: var(--lv-gold); background: rgba(26, 58, 107,.05); }
.lv-type-opt.is-out { opacity:.55; cursor:not-allowed; }
.lv-type-opt input { width:20px; height:20px; flex:none; accent-color: var(--lv-gold); }
.lv-type-info { flex:1; display:flex; flex-direction:column; min-width:0; }
.lv-type-info strong { color: var(--lv-text); overflow-wrap: anywhere; }
.lv-type-info small { color: var(--lv-muted); font-size:.78rem; }
.lv-type-disp { margin-top:.15rem; }
.lv-type-price { font-family: var(--lv-font-display); font-weight:700; color: var(--lv-gold-ink); white-space:nowrap; flex-shrink:0; }
.lv-stepper { display:flex; align-items:center; gap:.5rem; }
.lv-step-btn {
  width:42px; height:42px; border-radius:12px; border:1px solid var(--lv-border,#e4e4e7);
  background:#fff; font-size:1.4rem; line-height:1; cursor:pointer; color:var(--lv-gold-ink);
  display:flex; align-items:center; justify-content:center; transition: all .15s;
}
.lv-step-btn:hover { border-color: var(--lv-gold); background: rgba(26, 58, 107,.06); }
.lv-stepper input {
  width:56px; text-align:center; border:1px solid var(--lv-border,#e4e4e7);
  border-radius:12px; padding:.55rem 0; font-size:1.1rem; font-weight:700; font-family:inherit;
}
.lv-qty-disp { color: var(--lv-muted); font-size: .8rem; margin: .4rem 0 1rem; }
.lv-buy-total {
  display:flex; align-items:center; justify-content:space-between;
  padding:1rem 0; border-top:1px solid var(--lv-border,#e4e4e7); margin-bottom: .5rem;
}
.lv-buy-total span { color: var(--lv-muted); }
.lv-buy-total strong { font-size: 1.6rem; font-family: var(--lv-font-display); color: var(--lv-text); }
.lv-buy-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  text-align:center;
  color: #475067;
  font-size: .78rem;
  margin: 1rem 0 0;
}

/* ── Escolha de pagamento (estilo app, mobile-first) ── */
.lv-pay {
  max-width: 600px;
  margin: 0 auto;
  padding: 7rem 1rem 4rem;
  width: 100%;
  box-sizing: border-box;
}
.lv-pay-summary {
  border: none;
  border-radius: 14px;
  padding: 1.05rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  background: #fff;
  box-shadow: 0 4px 10px rgba(15,36,68,.07);
}
.lv-pay-summary .v {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--lv-font-display);
  color: var(--lv-gold-ink);
  white-space: nowrap;
  flex-shrink: 0;
}
.lv-pay-alert {
  border-radius: 12px;
  padding: .85rem 1rem;
  margin-bottom: 1rem;
  font-size: .9rem;
  line-height: 1.45;
}
.lv-pay .lv-buy-card {
  padding: 1.35rem 1.4rem 1.45rem;
  overflow: visible;
  background: #fff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15,36,68,.09);
}
.lv-pay-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .9rem;
  color: #475067;
  font-size: .76rem;
}
.lv-pay-kicker span { display: inline-flex; align-items: center; gap: .4rem; }
.lv-pay-kicker i { color: var(--lv-gold-dark); }
.lv-pay-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 1rem;
  border-radius: 12px;
  background: #eef3fb;
  padding: .35rem;
}
.lv-pay-steps span {
  padding: .48rem .35rem;
  text-align: center;
  color: #64748b;
  font-size: .72rem;
  font-weight: 700;
  border-radius: 8px;
}
.lv-pay-steps span.active {
  background: #fff;
  color: var(--lv-navy);
  box-shadow: 0 2px 6px rgba(15,36,68,.08);
}
.lv-pay .lv-buy-card form {
  padding: 0;
}
.lv-pay-h {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 1rem;
  padding: 0;
  line-height: 1.3;
  color: var(--lv-text);
  overflow: visible;
}
.lv-pay .lv-field {
  margin-bottom: 1.1rem;
}
.lv-pay .lv-buy-btn {
  width: 100%;
  margin-top: .25rem;
  min-height: 48px;
}
.lv-pay-opt {
  display: flex;
  align-items: center;
  gap: .85rem;
  width: 100%;
  text-align: left;
  border: 1px solid var(--lv-border, #e4e4e7);
  border-radius: 14px;
  background: #fff;
  padding: 1rem 1.1rem;
  margin-bottom: .75rem;
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
  box-sizing: border-box;
}
.lv-pay-opt:hover {
  border-color: var(--lv-gold);
  box-shadow: 0 4px 8px rgba(15,36,68,.08);
  transform: translateY(-1px);
}
.lv-pay-opt i.lead { font-size: 1.4rem; color: var(--lv-gold-ink); flex-shrink: 0; }
.lv-pay-opt .txt { flex: 1; min-width: 0; }
.lv-pay-opt .txt strong { display: block; color: var(--lv-text); font-size: .95rem; }
.lv-pay-opt .txt span { font-size: .8rem; color: var(--lv-muted); }
.lv-pay-opt .chev { color: var(--lv-muted); flex-shrink: 0; }
.lv-pay-badge {
  font-size: .68rem;
  font-weight: 700;
  color: #16A34A;
  background: rgba(22, 163, 74, .12);
  padding: .2rem .55rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.lv-pay-pix-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.lv-pix-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.lv-pix-box img {
  display: block;
  margin: 0 auto;
  max-width: min(260px, 100%);
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--lv-border, #e4e4e7);
  padding: 10px;
  background: #fff;
  box-sizing: border-box;
}
.lv-pix-copy {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
  width: 100%;
  max-width: 100%;
}
.lv-pix-copy input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--lv-border, #e4e4e7);
  border-radius: 12px;
  padding: .7rem .85rem;
  font-size: .8rem;
  font-family: inherit;
}
.lv-pix-copy .btn-primary-my {
  flex-shrink: 0;
  padding: .7rem .9rem;
}
.lv-pay-wait {
  background: rgba(8, 145, 178, .08);
  color: #0e7490;
  border-radius: 12px;
  padding: .9rem 1rem;
  margin-top: 1.1rem;
  font-size: .88rem;
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}
.lv-pay .lv-buy-secure {
  margin-top: 1.25rem;
  padding-bottom: .5rem;
}

@media (max-width: 576px) {
  .lv-pay {
    padding: 5.6rem .8rem 2.5rem;
  }
  .lv-pay-summary {
    flex-direction: column;
    align-items: stretch;
    gap: .65rem;
  }
  .lv-pay-summary .v {
    font-size: 1.35rem;
    align-self: flex-end;
  }
  .lv-pay .lv-buy-card {
    padding: 1.1rem 1rem 1.2rem;
  }
  .lv-pay-h {
    font-size: 1.1rem;
  }
  .lv-pix-copy {
    flex-direction: column;
  }
  .lv-pix-copy .btn-primary-my {
    width: 100%;
  }
  .lv-pay-opt {
    padding: .95rem 1rem;
  }
}

@media (min-width: 768px) {
  .lv-buy-banner { aspect-ratio: 16 / 6; }
  .lv-pay {
    padding-top: 7rem;
    max-width: 600px;
  }
}

/* ── Event cards ── */
.event-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--lv-radius-lg);
  background: var(--lv-white);
  box-shadow: var(--lv-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
  border: 1px solid var(--lv-border);
}
.event-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid transparent;
  transition: border-color 0.35s ease;
  z-index: 2;
  pointer-events: none;
}
.event-card:hover::before { border-color: var(--lv-border-gold); }
.event-card:hover {
  box-shadow: var(--lv-shadow-lg);
}
.event-card-img-wrap {
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}
.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.event-card:hover img { transform: scale(1.08); }

/* ── Imagem "logo inteira" (blur backdrop + contain) ──
   Mostra a imagem COMPLETA (sem corte), ideal p/ logos/brasões; o fundo é a
   própria imagem borrada e escurecida, evitando faixas vazias feias.
   Funciona bem tanto para fotos quanto para logos. */
.img-fit { position: relative; overflow: hidden; }
.img-fit-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: blur(22px) brightness(.78); transform: scale(1.15);
}
.img-fit > img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain !important;
}
.event-card.img-fit:hover img, .event-card .img-fit:hover img { transform: none; }
.event-card-date {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--lv-navy);
  color: var(--lv-gold-light);
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  z-index: 3;
}
.event-card-date b { display: block; font-size: 1.1rem; }
.event-card-body { padding: 1.35rem; }
.event-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lv-gold-ink);
  margin-bottom: 0.5rem;
}
.event-card h3 {
  font-family: var(--lv-font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--lv-navy);
}
.event-card-meta { font-size: 0.85rem; color: var(--lv-muted); margin-bottom: 0.75rem; }
.event-card-price { font-weight: 800; color: var(--lv-navy); margin-bottom: 1rem; }
/* Evento já realizado: tom mais discreto */
.event-card--past .event-card-img-wrap { filter: grayscale(0.35); opacity: 0.92; }
.event-card--past .event-card-date { background: var(--lv-muted); }

/* ── Steps (como funciona) ── */
.lv-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.lv-step {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--lv-white);
  border-radius: var(--lv-radius-lg);
  border: 1px solid var(--lv-border);
  transition: transform var(--lv-transition), box-shadow var(--lv-transition);
}
.lv-step:hover { transform: translateY(-6px); box-shadow: var(--lv-shadow); }
.lv-step-num {
  width: 48px; height: 48px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lv-gold), var(--lv-gold-light));
  color: var(--lv-navy);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.lv-step i { font-size: 1.5rem; color: var(--lv-gold-ink); margin-bottom: 0.75rem; display: block; }
.lv-step h4 { font-size: 1rem; margin: 0 0 0.35rem; color: var(--lv-navy); }
.lv-step p { font-size: 0.85rem; color: var(--lv-muted); margin: 0; }

/* ── Trust cards ── */
.lv-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.lv-trust-card {
  padding: 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--lv-radius);
  transition: all var(--lv-transition);
}
.lv-trust-card:hover {
  background: rgba(201, 162, 39, 0.08);
  border-color: var(--lv-border-gold);
  transform: translateY(-4px);
}
.lv-trust-card i { font-size: 1.5rem; color: var(--lv-gold); margin-bottom: 0.75rem; }
.lv-trust-card h4 { color: #fff; font-size: 0.95rem; margin: 0 0 0.35rem; }
.lv-trust-card.my-card h4 { color: var(--my-text); }
.lv-trust-card.my-card p { color: var(--my-muted); }
.lv-trust-card.my-card i { color: var(--my-primary); }

.lv-institutional {
  background: linear-gradient(180deg, var(--lv-white) 0%, var(--lv-bg) 100%);
  border-radius: var(--lv-radius-lg);
  padding: 3rem;
  border: 1px solid var(--lv-border);
  position: relative;
  overflow: hidden;
}
.lv-institutional::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--lv-gold), var(--lv-gold-light));
}

/* ── Footer ── */
.lv-footer {
  background: var(--lv-navy);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}
.lv-footer .lv-logo { display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--lv-font-display); font-size: 1.5rem; color: #fff; margin-bottom: 0.75rem; }
.lv-footer a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.lv-footer a:hover { color: var(--lv-gold-light); }
.lv-footer-divider { border-color: rgba(255,255,255,0.1); margin: 2rem 0; }

/* ── Event page hero ── */
.lv-event-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: 7rem 0 3rem;
  padding-top: calc(5.5rem + env(safe-area-inset-top, 0px));
  color: #fff;
  overflow: hidden;
}
.lv-event-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 8s ease;
}
.lv-event-hero:hover .lv-event-hero-bg { transform: scale(1.06); }
.lv-event-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,26,47,0.95) 0%, rgba(7,26,47,0.4) 60%, rgba(7,26,47,0.2) 100%);
}
.lv-event-hero-content { position: relative; z-index: 2; width: 100%; }
.lv-event-badge {
  display: inline-block;
  background: var(--lv-gold);
  color: var(--lv-navy);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--lv-radius-pill);
  margin-bottom: 1rem;
}
.lv-ticket-card {
  border: 1px solid var(--lv-border);
  border-radius: var(--lv-radius);
  padding: 1.25rem;
  margin-bottom: 0.75rem;
  transition: all var(--lv-transition);
  background: var(--lv-white);
}
.lv-ticket-card:hover {
  border-color: var(--lv-border-gold);
  box-shadow: var(--lv-shadow-gold);
  transform: translateX(4px);
}
.lv-sticky-buy {
  position: sticky;
  top: 6rem;
  background: var(--lv-white);
  border-radius: var(--lv-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--lv-shadow-lg);
  border: 1px solid var(--lv-border);
}
.lv-buy-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 0.85rem 1rem;
  padding-bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: var(--lv-white);
  border-top: 1px solid var(--lv-border);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.1);
  z-index: 900;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
body:has(.lv-buy-bar) {
  padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
}

/* ── Checkout ── */
.lv-checkout-steps {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.lv-checkout-step {
  flex: 1;
  text-align: center;
  padding: 0.75rem;
  border-radius: var(--lv-radius);
  background: var(--lv-bg-soft);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lv-muted);
}
.lv-checkout-step.active {
  background: var(--lv-navy);
  color: var(--lv-gold-light);
}
.lv-form-card {
  background: var(--lv-white);
  border-radius: var(--lv-radius-lg);
  padding: 2rem;
  border: 1px solid var(--lv-border);
  box-shadow: var(--lv-shadow);
}
.lv-input-group {
  position: relative;
  margin-bottom: 1rem;
}
.lv-input-group i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lv-muted);
}
.lv-input-group input, .lv-input-group select {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  border: 1px solid var(--lv-border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lv-input-group input:focus {
  outline: none;
  border-color: var(--lv-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}
.lv-order-summary {
  background: var(--lv-navy);
  color: #fff;
  border-radius: var(--lv-radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: 6rem;
}
.lv-order-summary h3 { font-family: var(--lv-font-display); color: var(--lv-gold-light); margin-top: 0; }
.lv-security-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--lv-muted);
  margin-top: 1rem;
  padding: 0.75rem;
  background: var(--lv-bg-soft);
  border-radius: 12px;
}
.lv-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--lv-border);
}

/* ── Tickets (meus ingressos) ── */
.lv-tickets-shell {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 0px);
}
.lv-tickets-hero {
  margin-bottom: 0 !important;
  flex-shrink: 0;
}
.lv-tickets-hero .lv-display {
  text-wrap: balance;
  letter-spacing: -0.02em;
}
.lv-tickets-hero p {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.lv-eyebrow-on-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}
.lv-tickets-stage {
  flex: 1;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(44, 90, 160, 0.08), transparent 55%),
    linear-gradient(180deg, #eef3fb 0%, var(--lv-bg) 42%, var(--lv-bg) 100%);
  padding: 2rem 0 3.5rem;
}
.lv-ticket-page {
  max-width: 920px;
  margin: 0 auto;
  padding-bottom: 0 !important;
}

.lv-ticket-search {
  max-width: 420px;
  margin: 0 auto 1.75rem;
  padding: 1.5rem 1.5rem 1.35rem;
  background: var(--lv-white);
  border: 1px solid var(--lv-border);
  border-radius: var(--lv-radius-lg);
  box-shadow: 0 12px 40px rgba(18, 42, 79, 0.08);
}
.lv-ticket-search-head {
  text-align: center;
  margin-bottom: 1.25rem;
}
.lv-ticket-search-title {
  font-family: var(--lv-font-display);
  font-size: 1.15rem;
  color: var(--lv-navy);
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
}
.lv-ticket-search-sub {
  font-size: 0.82rem;
  color: var(--lv-muted);
  margin: 0;
}
.lv-search-box {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  width: 100%;
}
.lv-ticket-search .lv-field {
  margin-bottom: 1rem;
  width: 100%;
}
.lv-ticket-search .lv-field:last-of-type {
  margin-bottom: 1.15rem;
}
.lv-ticket-search .form-control {
  display: block;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.7rem 0.95rem;
  border: 1.5px solid var(--lv-border);
  border-radius: 10px;
  font-size: 0.95rem;
}
.lv-ticket-search .form-control:focus {
  border-color: var(--lv-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}
.lv-ticket-search .lv-search-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.8rem 1.25rem;
  border: none;
  border-radius: 12px;
  background: var(--lv-navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(18, 42, 79, 0.22);
  cursor: pointer;
  position: static;
  overflow: visible;
}
.lv-ticket-search .lv-search-btn:hover {
  filter: brightness(1.08);
  transform: none;
}
.lv-ticket-search .lv-search-btn::after {
  display: none;
}

.lv-ticket-tips {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.lv-ticket-tips li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 42, 79, 0.06);
  border-radius: 14px;
}
.lv-ticket-tip-ico {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--lv-navy);
  color: var(--lv-gold-light);
  font-size: 1.05rem;
}
.lv-ticket-tips strong {
  display: block;
  font-size: 0.9rem;
  color: var(--lv-navy);
  margin-bottom: 0.15rem;
}
.lv-ticket-tips p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--lv-muted);
}

.lv-ticket-empty {
  max-width: 480px;
  margin: 0.5rem auto 0;
  text-align: center;
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px dashed rgba(18, 42, 79, 0.15);
  border-radius: 16px;
}
.lv-ticket-empty > i {
  font-size: 2rem;
  color: var(--lv-navy);
  opacity: 0.45;
  display: block;
  margin-bottom: 0.65rem;
}
.lv-ticket-empty h2 { color: var(--lv-navy); }
.lv-ticket-empty p {
  font-size: 0.9rem;
  color: var(--lv-muted);
  line-height: 1.5;
}

.lv-ticket-summary-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}
.lv-ticket-summary-info {
  flex: 1 1 200px;
  font-size: 0.95rem;
  color: var(--lv-navy);
}
.lv-btn-print-all {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem !important;
  white-space: nowrap;
}
@media print {
  .lv-ticket-summary, .lv-btn-print-all { display: none !important; }
}

/* Grid centralizado de ingressos */
.lv-ticket-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 0.25rem 0 1rem;
}

.lv-ticket-premium {
  background: var(--lv-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 58, 107, 0.1);
  border: 1px solid rgba(226, 200, 104, 0.35);
  width: 100%;
  max-width: 300px;
  margin: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
.lv-ticket-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lv-gold, #E2C868), var(--lv-navy, #1A3A6B));
  z-index: 2;
}

.lv-ticket-premium-cover {
  position: relative;
  height: 88px;
  background: center/cover no-repeat;
  background-color: var(--lv-navy, #1A3A6B);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.5rem;
}
.lv-ticket-premium-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 42, 79, 0.15) 0%, rgba(18, 42, 79, 0.82) 100%);
}
.lv-ticket-eyebrow {
  position: relative;
  z-index: 1;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
}

.lv-ticket-premium-header {
  background: linear-gradient(135deg, var(--lv-navy, #1A3A6B), var(--lv-navy-2, #2C5AA0));
  color: #fff;
  padding: 0.85rem 1rem 1rem;
  text-align: center;
}
.lv-ticket-event-title {
  font-family: var(--lv-font-display);
  font-size: 0.92rem !important;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.25rem;
}
.lv-ticket-event-type {
  font-size: 0.78rem;
  opacity: 0.88;
  margin: 0 0 0.35rem;
}
.lv-ticket-event-meta {
  font-size: 0.72rem;
  opacity: 0.82;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.lv-ticket-divider {
  position: relative;
  height: 1px;
  margin: 0 14px;
  background: repeating-linear-gradient(90deg, #cbd5e1 0, #cbd5e1 6px, transparent 6px, transparent 12px);
}
.lv-ticket-divider::before,
.lv-ticket-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lv-bg, #f4f5f8);
  border: 1px solid rgba(226, 200, 104, 0.25);
  transform: translateY(-50%);
}
.lv-ticket-divider::before { left: -22px; }
.lv-ticket-divider::after { right: -22px; }
.lv-ticket-divider--soft { margin-top: 0.15rem; opacity: 0.7; }

.lv-ticket-premium-body {
  padding: 1rem 1.1rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
.lv-ticket-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lv-muted, #64748b);
  margin: 0 0 0.2rem;
}
.lv-ticket-guest {
  font-weight: 700;
  color: var(--lv-navy, #1A3A6B);
  font-size: 1rem;
  margin: 0 0 0.45rem;
  line-height: 1.25;
}
.lv-ticket-code {
  margin: 0 0 0.75rem;
}
.lv-ticket-code code {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--lv-gold-dark, #9a7b1a);
  background: var(--lv-bg-soft, #f8fafc);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 200, 104, 0.35);
  letter-spacing: 0.04em;
}
.lv-ticket-qr {
  margin: 0 auto 0.35rem;
  padding: 0.55rem;
  background: #fff;
  border: 2px solid rgba(26, 58, 107, 0.12);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  line-height: 0;
}
.lv-ticket-qr img {
  margin: 0;
  border-radius: 8px;
  display: block;
  width: 160px;
  height: 160px;
}
.lv-ticket-qr-hint {
  font-size: 0.72rem;
  color: var(--lv-muted, #64748b);
  margin: 0 0 0.65rem;
}
.lv-ticket-status-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 0.15rem;
}

.lv-ticket-footer {
  padding: 0.75rem 1rem 1rem;
  background: var(--lv-bg-soft, #f8fafc);
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}
.lv-ticket-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}
.lv-ticket-actions .btn-sm,
.lv-ticket-action-form .btn-sm {
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.52rem 0.75rem;
  font-size: 0.8rem;
}
.lv-ticket-action-form { width: 100%; margin: 0; }
.lv-ticket-email-hint {
  font-size: 0.72rem !important;
  color: var(--lv-muted, #64748b);
  text-align: center;
  margin: 0.55rem 0 0;
}
.lv-status-valido { background: #ecfdf5; color: var(--lv-success); }
.lv-status-usado { background: #fffbeb; color: var(--lv-warning); }
.lv-status-cancelado { background: #fef2f2; color: var(--lv-danger); }
.lv-status-pendente { background: var(--lv-bg-soft); color: var(--lv-muted); }
.lv-status-badge {
  display: inline-block;
  padding: 0.28rem 0.85rem;
  border-radius: var(--lv-radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .lv-tickets-stage { padding: 1.35rem 0 2.5rem; }
  .lv-ticket-search { padding: 1.25rem 1.1rem; margin-bottom: 1.25rem; }
  .lv-ticket-tips {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .lv-ticket-grid { gap: 1rem; }
  .lv-ticket-premium { max-width: min(100%, 320px); }
}

@media (min-width: 768px) and (max-width: 991px) {
  .lv-ticket-tips { grid-template-columns: 1fr; max-width: 560px; }
}

/* ── Admin SaaS ── */
.admin-body { background: var(--lv-bg); }
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: var(--lv-sidebar);
  background: var(--lv-navy);
  color: #fff;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  transition: transform 0.3s ease;
}
.admin-sidebar .brand {
  padding: 1.35rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--lv-font-display);
  font-size: 1.15rem;
  font-weight: 700;
}
.admin-sidebar .brand span { color: var(--lv-gold-light); }
.admin-sidebar nav { flex: 1; padding: 0.75rem 0; overflow-y: auto; }
.admin-sidebar nav a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.25rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}
.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
  background: rgba(26, 58, 107, 0.12);
  color: #fff;
  border-left-color: var(--lv-gold);
}
.admin-main {
  flex: 1;
  margin-left: var(--lv-sidebar);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.admin-topbar {
  height: var(--lv-topbar);
  background: var(--lv-white);
  border-bottom: 1px solid var(--lv-border);
  padding: 0 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}
.admin-topbar h1 {
  font-family: var(--lv-font-display);
  font-size: 1.15rem;
  margin: 0;
  color: var(--lv-navy);
}
.admin-content { padding: 1.75rem; flex: 1; }

.kpi-card {
  background: var(--lv-white);
  border-radius: var(--lv-radius);
  padding: 1.35rem;
  border: 1px solid var(--lv-border);
  box-shadow: var(--lv-shadow);
  transition: transform var(--lv-transition), box-shadow var(--lv-transition);
  height: 100%;
}
.kpi-card:hover { transform: translateY(-4px); box-shadow: var(--lv-shadow-lg); }
.kpi-card .kpi-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(201,162,39,0.05));
  color: var(--lv-gold-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.kpi-card .kpi-val {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--lv-navy);
  font-variant-numeric: tabular-nums;
}
.kpi-card .kpi-label { color: var(--lv-muted); font-size: 0.82rem; }

.lv-table-card {
  background: var(--lv-white);
  border-radius: var(--lv-radius-lg);
  border: 1px solid var(--lv-border);
  overflow: hidden;
  box-shadow: var(--lv-shadow);
}
.lv-table-card .table { margin: 0; }
.lv-table-card thead th {
  background: var(--lv-bg-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lv-muted);
  font-weight: 700;
  border: none;
  padding: 1rem;
}
.lv-table-card tbody td { padding: 1rem; vertical-align: middle; border-color: var(--lv-border); }

.lv-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: var(--lv-radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.lv-badge-success { background: #ecfdf5; color: var(--lv-success); }
.lv-badge-warning { background: #fffbeb; color: var(--lv-warning); }
.lv-badge-danger { background: #fef2f2; color: var(--lv-danger); }
.lv-badge-secondary { background: var(--lv-bg-soft); color: var(--lv-muted); }
.lv-badge-primary { background: rgba(26, 58, 107,0.12); color: var(--my-primary-dark); }
.lv-badge-dark { background: var(--lv-navy); color: var(--lv-gold-light); }
.lv-badge-info { background: #eff6ff; color: var(--lv-info); }

/* Login admin — painel MyEventos */
.login-body {
  min-height: 100vh;
  background: #f4f4f5;
}

.login-page {
  min-height: 100vh;
  display: flex;
}

.login-brand {
  flex: 1.05;
  background: var(--my-gradient-diagonal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.login-brand-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.login-brand-glow--1 {
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.22);
  top: -18%;
  right: -12%;
}
.login-brand-glow--2 {
  width: 320px;
  height: 320px;
  background: var(--my-secondary);
  opacity: 0.35;
  bottom: -15%;
  left: -8%;
}

.login-brand-grid {
  display: none;
}

.login-brand-inner {
  position: relative;
  z-index: 1;
  max-width: 420px;
  text-align: center;
}

.login-brand-logo {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
}

.login-brand-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0.75rem;
}

.login-brand-title {
  font-family: var(--lv-font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.02em;
}

.login-brand-title .on-dark {
  color: #fff;
}

.login-brand-lead {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.login-brand-domain {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.login-form-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    radial-gradient(ellipse 90% 60% at 100% 0%, rgba(26, 58, 107, 0.06), transparent 55%),
    #fafafa;
}

.login-form {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid rgba(228, 228, 231, 0.9);
  border-radius: 24px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  position: relative;
}

.login-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 4px;
  border-radius: 0 0 6px 6px;
  background: var(--my-gradient);
}

.login-form-head h2 {
  font-family: var(--lv-font-display);
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--my-text);
}

.login-form-head p {
  margin: 0 0 1.75rem;
  font-size: 0.92rem;
  color: var(--my-muted);
  line-height: 1.5;
}

.login-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  border-radius: 14px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 0.9rem;
}

.login-field {
  margin-bottom: 1.15rem;
}

.login-field .form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--my-text);
  margin-bottom: 0.45rem;
}

.login-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.login-input-wrap > .bi:first-of-type {
  position: absolute;
  left: 1rem;
  color: #a1a1aa;
  font-size: 1rem;
  pointer-events: none;
  z-index: 2;
}

.login-input-wrap .form-control {
  padding: 0.9rem 1rem 0.9rem 2.75rem;
  border-radius: 14px;
  border: 1.5px solid var(--lv-border);
  font-size: 0.95rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.login-input-wrap .form-control::placeholder {
  color: #a1a1aa;
  opacity: 1;
}

.login-input-wrap .form-control:focus {
  border-color: var(--my-primary);
  box-shadow: 0 0 0 4px rgba(26, 58, 107, 0.12);
}

.login-form.was-validated .form-control:invalid {
  border-color: var(--my-danger);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.login-toggle-pw {
  position: absolute;
  right: 0.65rem;
  border: none;
  background: transparent;
  color: #71717a;
  padding: 0.35rem;
  line-height: 1;
  border-radius: 8px;
  z-index: 2;
}

.login-toggle-pw:hover {
  color: var(--my-primary);
  background: rgba(26, 58, 107, 0.08);
}

.login-submit {
  margin-top: 0.5rem;
  padding: 0.95rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.login-submit i {
  transition: transform 0.22s ease;
}

.login-submit:hover i {
  transform: translateX(3px);
}

.login-back {
  margin: 1.35rem 0 0;
  text-align: center;
  font-size: 0.88rem;
}

.login-back a {
  color: var(--my-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
}

.login-back a:hover {
  color: var(--my-primary-dark);
}

@media (max-width: 991.98px) {
  .login-page {
    flex-direction: column;
  }
  .login-brand {
    flex: none;
    min-height: 38vh;
    padding: 2.5rem 1.5rem 2rem;
  }
  .login-brand-lead {
    font-size: 0.95rem;
  }
  .login-form-wrap {
    flex: 1;
    align-items: flex-start;
    padding-top: 0;
    margin-top: -1.5rem;
  }
  .login-form {
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -8px 40px rgba(15, 23, 42, 0.06);
  }
}

@media (max-width: 575.98px) {
  .login-brand-logo {
    width: 72px;
    height: 72px;
    margin-bottom: 1rem;
  }
  .login-form {
    border-radius: 20px;
    margin: 0 0.5rem;
  }
  .login-form-wrap {
    margin-top: 0;
    padding: 1rem;
  }
}

/* Check-in portaria mode */
.checkin-portaria {
  min-height: 100vh;
  background: linear-gradient(180deg, #1a1d23, #0f1117);
  color: #fff;
  display: flex;
  flex-direction: column;
}
.checkin-portaria-header {
  padding: 1rem;
  background: rgba(0, 119, 182, 0.35);
  border-bottom: 1px solid rgba(26, 58, 107, 0.25);
  text-align: center;
}
.checkin-portaria-header h1 {
  font-family: var(--lv-font-display);
  font-size: 1.25rem;
  margin: 0;
  color: #fff;
}
.checkin-scan-btn {
  display: block;
  width: calc(100% - 2rem);
  margin: 1.5rem auto;
  padding: 1.25rem;
  background: var(--my-gradient-diagonal);
  color: #fff;
  border: none;
  border-radius: var(--lv-radius-lg);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
}
.checkin-result-full {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  min-height: 40vh;
}
.checkin-result-full.ok { background: linear-gradient(180deg, #065f46, #1a1d23); }
.checkin-result-full.warn { background: linear-gradient(180deg, #b45309, #1a1d23); }
.checkin-result-full.err { background: linear-gradient(180deg, #b91c1c, #1a1d23); }
.checkin-result-full h2 { font-size: clamp(2rem, 8vw, 3.5rem); margin: 0 0 0.5rem; }
.checkin-result-full p { font-size: 1.1rem; opacity: 0.85; }
.checkin-history {
  padding: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-height: 180px;
  overflow-y: auto;
}
.checkin-history-item {
  font-size: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
}

/* Page wrapper (non-hero pages) */
.lv-page {
  padding-top: calc(5.25rem + env(safe-area-inset-top, 0px));
  min-height: 60vh;
  padding-left: max(0px, env(safe-area-inset-left, 0px));
  padding-right: max(0px, env(safe-area-inset-right, 0px));
}
.lv-page-hero-sm {
  background: var(--my-gradient-diagonal);
  color: #fff;
  padding: 6rem 0 2.5rem;
  padding-top: calc(5.5rem + env(safe-area-inset-top, 0px));
  margin-bottom: 2rem;
}
.lv-page-hero-sm h1 { font-family: var(--lv-font-display); margin: 0; overflow-wrap: anywhere; }

.lv-event-hero-content {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.lv-event-hero-content p {
  overflow-wrap: anywhere;
}

/* Print — ingressos */
@media print {
  .lv-header, .lv-footer, .lv-page-hero-sm, .lv-ticket-search, .lv-ticket-tips, .lv-ticket-empty, .alert { display: none !important; }
  body.lv-print-one .lv-ticket-premium:not(.lv-print-active) { display: none !important; }
  body.lv-print-one .lv-ticket-grid { display: block; }
  body.lv-print-one .lv-ticket-actions,
  body.lv-print-one .lv-ticket-email-hint,
  body.lv-print-one .lv-ticket-footer { display: none !important; }
  .lv-ticket-premium {
    box-shadow: none;
    border: 2px solid #ccc;
    break-inside: avoid;
    max-width: 320px;
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .lv-steps { grid-template-columns: repeat(2, 1fr); }
  .lv-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .lv-nav { display: none; }
  .lv-menu-toggle { display: block; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .lv-buy-bar { display: flex; }
  .lv-sticky-buy { position: static; }
  .lv-form-card { padding: 1.25rem; }
  .lv-buy-head { padding: 1.1rem 1.1rem 1rem; }
  .lv-buy-step, .lv-buy-card form { padding-left: 1.1rem; padding-right: 1.1rem; }
  .lv-sticky-buy { padding: 1.25rem; }
}
@media (max-width: 575px) {
  .lv-steps { grid-template-columns: 1fr; }
  .lv-trust-grid { grid-template-columns: 1fr; }
  .lv-hero-stats { flex-direction: column; }
  .lv-founders-grid { grid-template-columns: 1fr; gap: .15rem; }
  .lv-cal-weekdays span { font-size: .62rem; padding: .55rem 0; letter-spacing: .02em; }
  .lv-cal-num { font-size: .8rem; }
  .lv-news-card { flex-direction: column; gap: .75rem; }

  .lv-logo-mark { width: 38px; height: 38px; }
  .lv-logo-stack strong { font-size: 1.05rem; }
  .lv-logo-stack small { font-size: 0.55rem; letter-spacing: 0.04em; }

  .lv-hero-stage-texto .lv-hst-1 {
    white-space: normal;
    font-size: clamp(1.65rem, 12vw, 2.6rem);
    letter-spacing: 0;
    padding: 0 .5rem;
  }
  .lv-hero-stage-texto .lv-hst-2 {
    font-size: clamp(0.95rem, 5vw, 1.4rem);
    letter-spacing: .08em;
  }
  .lv-hero-sticky { min-height: 100svh; height: 100svh; }
  .lv-hero-cta {
    bottom: max(5.5rem, env(safe-area-inset-bottom, 0px) + 4.5rem);
    width: min(94%, 720px);
  }
  .lv-hero-hint { display: none; }
  .lv-hero-cta .lv-hero-actions { gap: .65rem; }
  .lv-hero-cta .lv-hero-actions .btn-gold,
  .lv-hero-cta .lv-hero-actions .btn-outline-light {
    width: 100%;
    justify-content: center;
  }

  .lv-type-opt {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .lv-type-price {
    width: 100%;
    padding-left: 2rem;
    white-space: normal;
  }

  .lv-page { padding-top: calc(5rem + env(safe-area-inset-top, 0px)); }
  .lv-form-card { padding: 1.1rem; }
  .lv-buy-btn { min-height: 48px; }
  .container { padding-left: max(.85rem, env(safe-area-inset-left, 0px)); padding-right: max(.85rem, env(safe-area-inset-right, 0px)); }
  .lv-cookie {
    left: 50%;
    bottom: max(.5rem, env(safe-area-inset-bottom, 0px));
    width: calc(100% - 1rem);
    padding: .65rem .65rem .65rem .8rem;
    gap: .65rem;
  }
  .lv-cookie p { min-width: 0; font-size: .68rem; }
  .lv-cookie p strong { font-size: .72rem; }
  .lv-cookie-ok { min-height: 38px; padding: .45rem .8rem; font-size: .75rem; }
  .lv-mobile-nav-body { grid-template-columns: 1fr 1fr; gap: .7rem; padding: 1rem 0; }
  .lv-mobile-nav-group a { font-size: .88rem; padding: .62rem .55rem; }
  .lv-mobile-nav-group p { font-size: .62rem; }
  .lv-mobile-nav-foot { align-items: flex-start; flex-direction: column; gap: .45rem; }
  .lv-buy { padding: 5.8rem .8rem 3rem; }
  .lv-buy-progress { padding-left: 1.1rem; padding-right: 1.1rem; }

  .lv-ticket-card .d-flex {
    flex-wrap: wrap;
    gap: .5rem;
  }
  .event-card-body { padding: 1rem; }
}

@media (max-height: 520px) and (max-width: 991px) {
  .lv-hero-sticky { min-height: auto; height: auto; padding: 5.5rem 0 2rem; }
  .lv-hero-cta {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 1.5rem auto 0;
    opacity: 1 !important;
  }
  .lv-hero-hint { display: none; }
}

/* Mapa de mesas (checkout) */
.lv-mesa-legend {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  font-size: .78rem;
  color: var(--lv-muted);
  margin: 0 0 .85rem;
  padding: 0 .15rem;
}
.lv-mesa-dot {
  display: inline-block;
  width: .7rem;
  height: .7rem;
  border-radius: 3px;
  margin-right: .35rem;
  vertical-align: -1px;
}
.lv-mesa-dot.livre { background: #1A3A6B; }
.lv-mesa-dot.ocupada { background: #c0392b; }
.lv-mesa-dot.sel { background: #C9A227; }
.lv-mesa-map {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(3rem, 1fr));
  gap: .45rem;
  padding: .15rem;
}
.lv-mesa-btn {
  aspect-ratio: 1;
  border: 2px solid #1A3A6B;
  background: #fff;
  color: #1A3A6B;
  border-radius: .55rem;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: .15s ease;
}
.lv-mesa-btn:hover:not(:disabled) {
  background: rgba(26,58,107,.08);
}
.lv-mesa-btn.is-sel {
  border-color: #C9A227;
  background: #C9A227;
  color: #1A3A6B;
  box-shadow: 0 0 0 2px rgba(201,162,39,.35);
}
.lv-mesa-btn.is-sold,
.lv-mesa-btn:disabled.is-sold {
  border-color: #c0392b;
  background: #c0392b;
  color: #fff;
  cursor: not-allowed;
  opacity: 1;
}

