/**
 * Landings públicas — local (Empresa), Evento e cadastro VIP
 * Tokens canônicos claros: evve-tokens.css
 */

.pv-body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--evve-bg);
  color: var(--evve-ink);
  font-family: var(--evve-font-body);
  font-size: var(--evve-body-md-size);
  line-height: var(--evve-body-md-lh);
  -webkit-font-smoothing: antialiased;
  --pv-hero-image-height: 27.5rem;
}

.pv-body > main,
.pv-foot {
  min-width: 0;
}

.pv-body > main {
  flex: 1;
  width: 100%;
  max-width: 100%;
}

.pv-body img {
  max-width: 100%;
  height: auto;
}

/* —— Motion —— */
@keyframes pv-kenburns {
  0%, 100% { transform: scale(1.02); }
  50% { transform: scale(1.06); }
}

@keyframes pv-fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.pv-motion-kenburns img {
  animation: pv-kenburns 18s ease-in-out infinite;
  transform-origin: center center;
}

.pv-motion-fade {
  animation: pv-fade-up 0.55s ease-out both;
}

@media (prefers-reduced-motion: reduce) {
  .pv-motion-kenburns img,
  .pv-motion-fade {
    animation: none !important;
  }

  .pv-event-card__link:hover .pv-event-card__media img,
  .pv-ticket-card:hover,
  .pv-ticket-card--sold:hover,
  .pv-wa__btn:hover,
  .pv-social__link:hover {
    transform: none !important;
    filter: none !important;
  }
}

/* —— Contexto: Casa › Evento › Ingresso —— */
.pv-context {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  padding: 0.85rem var(--evve-pad-mobile) 0;
  max-width: 56rem;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  font-size: var(--evve-body-sm-size);
  color: var(--evve-ink-muted);
}

@media (min-width: 768px) {
  .pv-context { padding-left: var(--evve-pad-desktop); padding-right: var(--evve-pad-desktop); }
}

.pv-context a {
  color: var(--evve-primary);
  text-decoration: none;
  font-weight: 600;
}

.pv-context a:hover { text-decoration: underline; }

.pv-context__sep {
  color: var(--evve-outline-variant);
  user-select: none;
}

.pv-context__current {
  color: var(--evve-ink);
  font-weight: 600;
}

.pv-context__logo {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--evve-line);
  flex-shrink: 0;
}

/* —— Hero identidade (casa) —— */
.pv-hero {
  width: 100%;
  max-width: 100%;
  text-align: left;
  background: var(--evve-bg);
}

.pv-hero__banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  padding: 1.75rem var(--evve-pad-mobile) 1.35rem;
  box-sizing: border-box;
  overflow: hidden;
  background:
    radial-gradient(900px 320px at 0% -30%, color-mix(in srgb, var(--evve-signal) 28%, transparent), transparent 70%),
    var(--evve-bg);
}

/* +30% de altura da imagem (espaço extra acima da identidade) */
.pv-hero--bleed .pv-hero__banner {
  padding-top: calc((1.75rem + 5.25rem) * 1.3);
  min-height: var(--pv-hero-image-height);
  height: var(--pv-hero-image-height);
}

.pv-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.pv-hero__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pv-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    var(--evve-bg) 0%,
    color-mix(in srgb, var(--evve-bg) 78%, transparent) 58%,
    transparent 100%
  );
  pointer-events: none;
}

.pv-hero--plain .pv-hero__veil { display: none; }

.pv-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.pv-hero > .pv-social-block {
  padding: 1.15rem var(--evve-pad-mobile) 0.25rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  .pv-hero__banner,
  .pv-hero > .pv-social-block {
    padding-left: var(--evve-pad-desktop);
    padding-right: var(--evve-pad-desktop);
  }
}

.pv-eyebrow {
  margin: 0 0 0.65rem;
  font-size: var(--evve-label-md-size);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--evve-primary);
}

.pv-hero .pv-eyebrow {
  font-size: calc(var(--evve-label-md-size) * 1.2);
  line-height: calc(var(--evve-label-md-lh) * 1.2);
}

.pv-eyebrow a {
  color: inherit;
  text-decoration: none;
}

.pv-eyebrow a:hover { text-decoration: underline; }

.pv-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--evve-font-display);
  font-size: clamp(2.405rem, 6.5vw, 4.225rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--evve-ink-strong);
}

.pv-hero__content > .pv-hero__place {
  margin: 0;
  width: 100%;
  max-width: none;
  text-align: center;
  color: var(--evve-ink-muted);
  font-size: var(--evve-body-lg-size);
  line-height: var(--evve-body-lg-lh);
}

.pv-logo {
  width: 96px;
  height: 96px;
  margin: 0 0 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--evve-line);
  background: var(--evve-surface);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--evve-signal) 40%, transparent);
}

.pv-logo img {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: cover;
}

.pv-about {
  margin: 0;
  max-width: 36rem;
  color: var(--evve-ink-muted);
  font-size: var(--evve-body-lg-size);
  line-height: var(--evve-body-lg-lh);
  text-align: left;
}

.pv-about p { margin: 0 0 0.75rem; }
.pv-about p:last-child { margin-bottom: 0; }
.pv-about a { color: var(--evve-primary); }

.pv-hero__content > p {
  margin: 0;
  max-width: 36rem;
  color: var(--evve-ink-muted);
  font-size: var(--evve-body-lg-size);
  line-height: var(--evve-body-lg-lh);
}

/* —— Dados legais da casa (antes do footer Evve) —— */
.pv-legal {
  max-width: 40rem;
  margin: 0 auto;
  padding: 2rem var(--evve-pad-mobile) 1.25rem;
  text-align: center;
  color: var(--evve-ink-muted);
  font-size: 0.8125rem;
  line-height: 1.45;
  font-weight: 400;
}

.pv-legal__name,
.pv-legal__line {
  margin: 0;
}

.pv-legal__name {
  margin-bottom: 0.35rem;
}

.pv-legal__line + .pv-legal__line {
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .pv-legal {
    padding-left: var(--evve-pad-desktop);
    padding-right: var(--evve-pad-desktop);
  }
}

/* —— WhatsApp CTA —— */
.pv-social-block {
  margin-top: 1.25rem;
}

.pv-social-block--start {
  text-align: left;
}

.pv-social-block--start .pv-wa,
.pv-social-block--start .pv-social {
  justify-content: flex-start;
  margin-left: 0;
  margin-right: 0;
}

.pv-social-block--start .pv-wa__btn {
  min-width: 0;
}

.pv-social-block .pv-wa {
  margin-top: 0.5rem;
}

.pv-wa {
  display: flex;
  justify-content: center;
  margin: 1.75rem auto 0;
}

.pv-wa__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-width: min(100%, 18rem);
  padding: 0.95rem 1.75rem;
  border-radius: var(--evve-radius-xl);
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: var(--evve-body-lg-size);
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.pv-wa__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.34);
  filter: brightness(1.03);
}

.pv-wa__logo {
  width: 1.75rem;
  height: 1.75rem;
  display: block;
  /* logo já é verde; forçar monocromático no botão verde */
  filter: brightness(0) invert(1);
}

/* —— Redes —— */
.pv-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.15rem auto 0;
  max-width: 28rem;
}

.pv-social__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--evve-radius-xl);
  background: var(--evve-surface);
  border: 1px solid var(--evve-line);
  color: var(--evve-ink);
  text-decoration: none;
  font-size: var(--evve-label-md-size);
  font-weight: 600;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.pv-social__link:hover {
  border-color: color-mix(in srgb, var(--evve-primary) 40%, var(--evve-line));
  box-shadow: 0 4px 14px rgba(11, 15, 20, 0.06);
  transform: translateY(-1px);
}

.pv-social__link .material-symbols-outlined {
  font-size: 1.125rem;
  color: var(--evve-primary);
}

.pv-social__logo {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  flex-shrink: 0;
}

.pv-social__label { white-space: nowrap; }

.pv-social-block--icons {
  margin-top: 0.85rem;
}

.pv-social--icons {
  justify-content: flex-start;
  margin: 0;
  max-width: none;
  gap: 0.5rem;
}

.pv-social--icons .pv-social__link {
  width: 3rem;
  height: 3rem;
  padding: 0;
  justify-content: center;
  border-radius: var(--evve-radius-xl);
  background: color-mix(in srgb, var(--evve-bg) 82%, transparent);
  backdrop-filter: blur(10px);
}

.pv-social--icons .pv-social__logo {
  width: 1.38rem;
  height: 1.38rem;
}

.pv-social--icons .pv-social__link .material-symbols-outlined {
  font-size: 1.38rem;
}

.pv-social--icons .pv-social__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* —— Seções —— */
.pv-section {
  padding: clamp(1.75rem, 4vw, 3rem) var(--evve-pad-mobile);
  max-width: 44rem;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .pv-section { padding-left: var(--evve-pad-desktop); padding-right: var(--evve-pad-desktop); }
}

.pv-section--tickets {
  max-width: 56rem;
}

.pv-section--signup {
  max-width: 40rem;
  padding-top: 1.25rem;
}

.pv-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--evve-line);
}

.pv-section__head--center {
  flex-direction: column;
  text-align: center;
  border-bottom: none;
  margin-bottom: 1.5rem;
}

.pv-section h2,
.pv-section__head h2 {
  margin: 0;
  font-family: var(--evve-font-display);
  font-size: var(--evve-headline-md-size);
  font-weight: 700;
  color: var(--evve-ink-strong);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.pv-section__head h2 .material-symbols-outlined {
  color: var(--evve-primary);
  font-variation-settings: 'FILL' 1;
}

.pv-section__lead {
  margin: 0.65rem 0 0;
  max-width: 32rem;
  color: var(--evve-ink-muted);
  font-size: var(--evve-body-md-size);
  line-height: var(--evve-body-md-lh);
}

.pv-empty {
  padding: 1.5rem;
  border-radius: var(--evve-radius-xl);
  border: 1px dashed var(--evve-outline-variant);
  background: var(--evve-surface);
  color: var(--evve-ink-muted);
}

/* —— Cards de evento —— */
.pv-event-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pv-event-card {
  border-radius: var(--evve-radius-xl);
  overflow: hidden;
  background: var(--evve-surface);
  border: 1px solid var(--evve-line);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pv-event-card:hover {
  border-color: color-mix(in srgb, var(--evve-primary) 35%, var(--evve-line));
  box-shadow: 0 10px 28px rgba(11, 15, 20, 0.07);
  transform: translateY(-2px);
}

.pv-event-card--past {
  opacity: 0.78;
}

.pv-event-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.pv-event-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--evve-surface-high);
}

.pv-event-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pv-event-card__link:hover .pv-event-card__media img {
  transform: scale(1.04);
}

.pv-event-card__media--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, color-mix(in srgb, var(--evve-signal) 35%, transparent), transparent 55%),
    var(--evve-surface-high);
}

.pv-event-card__placeholder {
  font-family: var(--evve-font-display);
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--evve-primary);
  opacity: 0.45;
}

.pv-event-card__media::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(to top, rgba(11, 15, 20, 0.35), transparent);
  pointer-events: none;
}

.pv-event-card__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  min-width: 3.25rem;
  padding: 0.4rem 0.5rem;
  border-radius: var(--evve-radius);
  background: var(--evve-surface);
  border: 1px solid var(--evve-line);
  box-shadow: 0 4px 12px rgba(11, 15, 20, 0.08);
  text-align: center;
  line-height: 1.1;
}

.pv-event-card__badge-month {
  display: block;
  font-size: var(--evve-label-md-size);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--evve-primary);
}

.pv-event-card__badge-day {
  display: block;
  margin-top: 0.1rem;
  font-family: var(--evve-font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--evve-ink-strong);
}

.pv-event-card__body {
  position: relative;
  z-index: 1;
  padding: 1rem 1.1rem 1.15rem;
}

.pv-event-card__title {
  margin: 0 0 0.35rem;
  font-family: var(--evve-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--evve-ink-strong);
}

.pv-event-card__desc {
  margin: 0 0 0.9rem;
  color: var(--evve-ink-muted);
  font-size: var(--evve-body-sm-size);
  line-height: var(--evve-body-sm-lh);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pv-event-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--evve-line);
}

.pv-event-card__time {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--evve-ink-muted);
  font-size: var(--evve-label-md-size);
  font-weight: 600;
}

.pv-event-card__time .material-symbols-outlined {
  font-size: 1rem;
}

.pv-event-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--evve-radius-pill);
  background: var(--evve-signal);
  color: var(--evve-ink-strong);
  font-size: var(--evve-label-md-size);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pv-event-card__cta .material-symbols-outlined {
  font-size: 1rem;
}

.pv-event-card__cta--muted {
  background: var(--evve-surface-low);
  color: var(--evve-ink-muted);
}

/* —— Hero imersivo do evento —— */
.pv-event-hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: var(--pv-hero-image-height);
  display: flex;
  align-items: flex-end;
  padding: 5.5rem var(--evve-pad-mobile) 1.35rem;
  box-sizing: border-box;
  overflow: hidden;
  background:
    radial-gradient(900px 320px at 50% -20%, color-mix(in srgb, var(--evve-signal) 22%, transparent), transparent 70%),
    var(--evve-surface-high);
}

.pv-event-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.pv-event-hero__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pv-event-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    var(--evve-bg) 0%,
    color-mix(in srgb, var(--evve-bg) 60%, transparent) 48%,
    transparent 100%
  );
  pointer-events: none;
}

.pv-hero__back,
.pv-event-hero__back {
  position: absolute;
  top: 1rem;
  left: var(--evve-pad-mobile);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem 0.35rem 0.35rem;
  border-radius: var(--evve-radius-pill);
  background: color-mix(in srgb, var(--evve-bg) 78%, transparent);
  backdrop-filter: blur(10px);
  color: var(--evve-ink);
  text-decoration: none;
  font-size: var(--evve-body-sm-size);
  font-weight: 600;
}

.pv-hero__back img,
.pv-event-hero__back img {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: cover;
}

.pv-hero__back img {
  border-radius: 0;
  object-fit: contain;
}

.pv-event-hero__back img {
  border-radius: 50%;
}

.pv-hero__back:hover,
.pv-event-hero__back:hover { text-decoration: underline; }

.pv-event-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}

.pv-event-hero h1 {
  margin: 0.5rem 0 0.65rem;
  font-family: var(--evve-font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--evve-ink-strong);
  max-width: 18ch;
}

.pv-event-hero__when {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: var(--evve-ink-muted);
  font-size: var(--evve-body-lg-size);
  line-height: var(--evve-body-lg-lh);
}

.pv-event-hero__when .material-symbols-outlined {
  font-size: 1.25rem;
  color: var(--evve-primary);
}

.pv-status-sold {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0.4rem 1rem;
  border-radius: var(--evve-radius-pill);
  background: var(--evve-error);
  color: #fff;
  font-size: var(--evve-label-md-size);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--evve-error) 28%, transparent);
}

.pv-status-sold .material-symbols-outlined {
  font-size: 1rem;
  font-variation-settings: 'FILL' 1;
}

@media (min-width: 768px) {
  .pv-event-hero {
    padding-left: var(--evve-pad-desktop);
    padding-right: var(--evve-pad-desktop);
  }

  .pv-hero__back,
  .pv-event-hero__back { left: var(--evve-pad-desktop); }
}

/* —— Corpo do evento: ingressos primeiro no mobile —— */
.pv-event-body {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.5rem var(--evve-pad-mobile) 1rem;
  box-sizing: border-box;
}

.pv-event-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.pv-event-layout__tickets { order: 1; }
.pv-event-layout__about { order: 2; }

@media (min-width: 992px) {
  .pv-event-body {
    padding-left: var(--evve-pad-desktop);
    padding-right: var(--evve-pad-desktop);
    padding-top: 3.5rem;
  }

  .pv-event-layout {
    grid-template-columns: minmax(0, 8fr) minmax(17rem, 4fr);
    align-items: start;
    gap: 3rem;
  }

  .pv-event-layout__about { order: 1; }
  .pv-event-layout__tickets {
    order: 2;
    position: sticky;
    top: 1.25rem;
  }
}

.pv-info-grid {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .pv-info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.pv-info-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.35rem;
  border-radius: var(--evve-radius-xl);
  background: var(--evve-surface);
  border: 1px solid var(--evve-outline-variant);
}

.pv-info-card__icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--evve-surface-low);
  color: var(--evve-primary);
}

.pv-info-card__icon .material-symbols-outlined {
  font-variation-settings: 'FILL' 1;
}

.pv-info-card h3 {
  margin: 0;
  font-family: var(--evve-font-display);
  font-size: var(--evve-headline-md-size);
  font-weight: 600;
  color: var(--evve-ink-strong);
}

.pv-info-card p {
  margin: 0;
  color: var(--evve-ink-muted);
  font-size: var(--evve-body-sm-size);
  line-height: var(--evve-body-sm-lh);
}

.pv-info-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.35rem;
  color: var(--evve-primary);
  font-size: var(--evve-label-md-size);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.pv-info-card__link:hover { text-decoration: underline; }

.pv-info-card__link .material-symbols-outlined { font-size: 1rem; }

.pv-event-about {
  margin: 0 0 1.75rem;
}

.pv-event-about h2 {
  margin: 0 0 0.85rem;
  font-family: var(--evve-font-display);
  font-size: var(--evve-headline-lg-size);
  font-weight: 700;
  line-height: var(--evve-headline-lg-lh);
  color: var(--evve-ink-strong);
}

.pv-event-about__body {
  color: var(--evve-ink-muted);
  font-size: var(--evve-body-md-size);
  line-height: 1.55;
}

.pv-event-about__body p { margin: 0 0 0.75rem; }
.pv-event-about__body p:last-child { margin-bottom: 0; }

/* —— Painel de ingressos —— */
.pv-tickets-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.35rem;
  border-radius: var(--evve-radius-xl);
  background: var(--evve-surface);
  border: 1px solid var(--evve-outline-variant);
  box-shadow: 0 8px 24px rgba(11, 15, 20, 0.04);
}

.pv-tickets-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--evve-surface-variant, var(--evve-line));
}

.pv-tickets-panel__head h2 {
  margin: 0;
  font-family: var(--evve-font-display);
  font-size: var(--evve-headline-md-size);
  font-weight: 600;
  color: var(--evve-ink-strong);
}

.pv-tickets-panel__chip {
  padding: 0.25rem 0.7rem;
  border-radius: var(--evve-radius-pill);
  background: var(--evve-surface-container);
  color: var(--evve-ink-muted);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pv-tickets-panel__vip .pv-vip-card {
  margin-top: 0.85rem;
}

.pv-tickets-panel__vip .pv-vip-card:first-child {
  margin-top: 0;
}

.pv-tickets-panel .pv-empty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.pv-ticket-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pv-ticket-card {
  position: relative;
  padding: 1rem;
  border-radius: var(--evve-radius);
  background: var(--evve-surface);
  border: 1px solid var(--evve-line);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pv-ticket-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--evve-primary) 35%, var(--evve-line));
  box-shadow: 0 10px 22px rgba(11, 15, 20, 0.07);
}

.pv-ticket-card--sold {
  opacity: 0.65;
  cursor: not-allowed;
  background: var(--evve-surface-container);
}

.pv-ticket-card--sold:hover {
  transform: none;
  border-color: var(--evve-line);
  box-shadow: none;
}

.pv-ticket-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.pv-ticket-card__top h3 {
  margin: 0;
  font-size: var(--evve-label-md-size);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--evve-ink-strong);
}

.pv-ticket-card__blurb {
  margin: 0.25rem 0 0;
  color: var(--evve-ink-muted);
  font-size: var(--evve-body-sm-size);
  line-height: var(--evve-body-sm-lh);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.pv-ticket-card__top .material-symbols-outlined {
  font-size: 1.35rem;
  color: var(--evve-outline);
}

.pv-ticket-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.pv-ticket-card__price {
  margin: 0;
  font-family: var(--evve-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--evve-ink-strong);
  line-height: 1.2;
}

.pv-ticket-card__price--struck {
  text-decoration: line-through;
}

.pv-ticket-card__sold-label {
  font-size: var(--evve-label-md-size);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--evve-error);
}

.pv-ticket-card__bullets {
  list-style: none;
  margin: 0.75rem 0 0.85rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pv-ticket-card__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  color: var(--evve-ink-muted);
  font-size: var(--evve-body-sm-size);
  line-height: 1.45;
}

.pv-ticket-card__bullets .material-symbols-outlined {
  font-size: 1.05rem;
  color: var(--evve-primary);
  margin-top: 0.1rem;
}

.pv-ticket-card__cta {
  width: 100%;
  box-sizing: border-box;
  margin-top: 0.85rem;
}

.pv-ticket-stepper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pv-ticket-stepper__qty {
  min-width: 1.1em;
  text-align: center;
  font-weight: 700;
  font-size: var(--evve-body-sm-size);
}

.pv-ticket-stepper__btn {
  width: 2rem;
  height: 2rem;
  border-radius: var(--evve-radius-pill);
  border: none;
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.pv-ticket-stepper__btn:hover:not(:disabled) {
  transform: translateY(-1px);
}

.pv-ticket-stepper__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pv-ticket-stepper__btn--plus {
  background: var(--evve-ink-strong);
  color: var(--evve-surface);
}

.pv-ticket-stepper__btn--minus {
  background: var(--evve-surface);
  color: var(--evve-ink-strong);
  border: 1px solid var(--evve-line);
}

.pv-tickets-panel__sticky {
  margin-top: 0.15rem;
}

.pv-tickets-panel__sticky .pv-btn {
  width: 100%;
  box-sizing: border-box;
}

/* —— Actions / buttons / VIP / meta —— */
.pv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.pv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  border-radius: var(--evve-radius-pill);
  font-size: var(--evve-label-md-size);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pv-btn:hover {
  transform: translateY(-1px);
}

.pv-btn--accent {
  background: var(--evve-signal);
  color: var(--evve-ink-strong);
}

.pv-btn--ghost {
  background: var(--evve-surface);
  color: var(--evve-ink);
  border: 1px solid var(--evve-line);
}

.pv-btn--block {
  width: 100%;
  box-sizing: border-box;
}

.pv-btn--off {
  background: var(--evve-surface-container);
  color: var(--evve-ink-muted);
  cursor: not-allowed;
}

.pv-btn--off:hover {
  transform: none;
}

.pv-btn:disabled {
  cursor: not-allowed;
}

.pv-vip-card {
  margin: 0 0 1.15rem;
  padding: 1.25rem;
  border: 1px solid var(--evve-line);
  border-radius: var(--evve-radius-xl);
  background: var(--evve-surface);
  box-shadow: 0 6px 18px rgba(11, 15, 20, 0.04);
}

.pv-vip-card__title {
  margin: 0 0 0.65rem;
  font-family: var(--evve-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--evve-ink-strong);
}

.pv-vip-card__politica {
  margin: 0 0 0.75rem;
  color: var(--evve-ink-muted);
  font-size: var(--evve-body-sm-size);
  line-height: 1.5;
}

.pv-vip-card__politica p {
  margin: 0 0 0.5rem;
}

.pv-vip-card__politica p:last-child {
  margin-bottom: 0;
}

.pv-vip-card__desc {
  margin: 0 0 1rem;
  color: var(--evve-ink);
  font-size: var(--evve-body-sm-size);
  line-height: 1.5;
}

.pv-vip-card .pv-btn {
  width: 100%;
  box-sizing: border-box;
  margin-top: 0.85rem;
}

.pv-meta {
  margin: 0.35rem 0 0;
  color: var(--evve-ink-muted);
  font-size: var(--evve-body-sm-size);
}

/* —— Signup form —— */
.pv-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.25rem;
}

.pv-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pv-label {
  font-size: var(--evve-label-md-size);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--evve-ink);
}

.pv-input {
  box-sizing: border-box;
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--evve-line);
  border-radius: var(--evve-radius);
  background: var(--evve-bg);
  color: var(--evve-ink);
  font-family: var(--evve-font-body);
  font-size: 1rem;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pv-input::placeholder {
  color: var(--evve-ink-muted);
}

.pv-input:hover {
  background: var(--evve-surface);
}

.pv-input:focus {
  border-color: var(--evve-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--evve-signal) 45%, transparent);
  background: var(--evve-surface);
}

.pv-form .pv-btn {
  align-self: flex-start;
  margin-top: 0.25rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.pv-form-errors {
  margin: 0 0 0.75rem;
  padding: 0.75rem 1rem;
  list-style: none;
  border-radius: var(--evve-radius);
  border: 1px solid color-mix(in srgb, var(--evve-error) 30%, var(--evve-line));
  background: var(--evve-error-container);
  color: var(--evve-error);
  font-size: var(--evve-body-sm-size);
  line-height: 1.45;
}

.pv-form-errors li + li {
  margin-top: 0.35rem;
}

.pv-form-status {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--evve-ink);
}

.pv-form-status--success {
  color: var(--evve-success);
  font-weight: 700;
}

.pv-form-status--error {
  color: var(--evve-error);
}

/* —— Signup page identity —— */
.pv-signup-head {
  max-width: 40rem;
  margin: 0 auto;
  padding: 0.75rem var(--evve-pad-mobile) 0;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .pv-signup-head {
    padding-left: var(--evve-pad-desktop);
    padding-right: var(--evve-pad-desktop);
  }
}

.pv-signup-head h1 {
  margin: 0.5rem 0 0.35rem;
  font-family: var(--evve-font-display);
  font-size: clamp(1.6rem, 4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--evve-ink-strong);
}

.pv-signup-head__evento {
  margin: 0;
  color: var(--evve-ink-muted);
  font-size: var(--evve-body-md-size);
}

.pv-signup-head__tag {
  display: inline-flex;
  margin-top: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--evve-radius-pill);
  background: var(--evve-primary-container);
  color: var(--evve-on-primary-container);
  font-size: var(--evve-label-md-size);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* —— Footer —— */
.pv-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  padding: 0.85rem var(--evve-pad-mobile);
  border-top: 1px solid var(--evve-line);
  background: var(--evve-surface);
  color: var(--evve-ink-muted);
  font-size: 0.75rem;
  line-height: 1.3;
}

.pv-foot__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--evve-font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--evve-primary);
  text-decoration: none;
  white-space: nowrap;
}

.pv-foot__brand img {
  display: block;
  width: 18px;
  height: 18px;
}

.pv-foot__brand:hover {
  text-decoration: underline;
}

.pv-foot__links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
}

.pv-foot__links a {
  color: var(--evve-ink-muted);
  text-decoration: none;
  white-space: nowrap;
}

.pv-foot__links a:hover {
  color: var(--evve-ink);
  text-decoration: underline;
}

.pv-foot__copy {
  margin: 0;
  color: var(--evve-ink-muted);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .pv-foot {
    justify-content: space-between;
    padding-left: var(--evve-pad-desktop);
    padding-right: var(--evve-pad-desktop);
  }
}

/* Legacy cards */
.pv-grid {
  display: grid;
  gap: 1rem;
}

.pv-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: var(--evve-radius-xl);
  background: var(--evve-surface);
  border: 1px solid var(--evve-line);
  text-decoration: none;
  color: inherit;
}

.pv-card__cta {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  padding: 0.55rem 1rem;
  border-radius: var(--evve-radius-pill);
  background: var(--evve-signal);
  color: var(--evve-ink-strong);
  font-size: var(--evve-label-md-size);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* A3 checkout (Story 6.2) */
.pv-checkout-head {
  padding: 1rem var(--evve-pad-mobile) 0.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.pv-checkout-head__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--evve-ink-muted);
  text-decoration: none;
  font-size: var(--evve-body-sm-size);
  margin-bottom: 0.75rem;
}

.pv-checkout-head__back:hover {
  color: var(--evve-ink);
}

.pv-checkout-head h1 {
  margin: 0;
  font-family: var(--evve-font-display);
  font-size: 1.5rem;
}

.pv-checkout-head__hint {
  margin: 0.35rem 0 0;
  color: var(--evve-ink-muted);
  font-size: var(--evve-body-sm-size);
}

.pv-checkout-body {
  padding: 0.75rem var(--evve-pad-mobile) 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.pv-checkout-flash {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--evve-radius);
  font-size: var(--evve-body-sm-size);
}

.pv-checkout-flash--ok {
  background: #e8f5e9;
  color: #1b5e20;
}

.pv-checkout-flash--err {
  background: #ffebee;
  color: #b71c1c;
}

.pv-checkout-layout {
  display: grid;
  gap: 1rem;
}

.pv-checkout-card {
  background: var(--evve-surface);
  border: 1px solid var(--evve-outline);
  border-radius: var(--evve-radius-xl);
  padding: 1.25rem;
}

.pv-checkout-card h2 {
  margin: 0 0 0.25rem;
  font-family: var(--evve-font-display);
  font-size: 1.15rem;
}

.pv-checkout-card__hint,
.pv-checkout-card__subhint {
  margin: 0 0 1rem;
  color: var(--evve-ink-muted);
  font-size: var(--evve-body-sm-size);
  line-height: 1.45;
}

.pv-checkout-card__subhint {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--evve-ink);
}

.pv-checkout-event {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pv-checkout-event__thumb {
  width: 56px;
  height: 56px;
  border-radius: var(--evve-radius);
  object-fit: cover;
  flex-shrink: 0;
}

.pv-checkout-event__thumb--placeholder {
  background: linear-gradient(160deg, #0b0f14, #4f6600);
}

.pv-checkout-event strong {
  display: block;
  font-size: var(--evve-body-md-size);
}

.pv-checkout-event span {
  font-size: var(--evve-body-sm-size);
  color: var(--evve-ink-muted);
}

.pv-checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--evve-body-sm-size);
  padding: 0.45rem 0;
}

.pv-checkout-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--evve-line);
  font-weight: 700;
  font-size: 1rem;
}

.pv-checkout-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.pv-checkout-step--payment {
  margin-top: 1.25rem;
}

.pv-checkout-step--dim .pv-checkout-step__dim-label {
  color: var(--evve-ink-muted);
}

.pv-checkout-step__badge {
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  background: var(--evve-ink-strong);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.pv-checkout-step__badge--dim {
  background: var(--evve-disabled);
  color: var(--evve-ink-muted);
}

.pv-checkout-field {
  margin-bottom: 0.75rem;
}

.pv-checkout-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.pv-checkout-field__input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--evve-line);
  border-radius: var(--evve-radius);
  padding: 0.65rem 0.85rem;
  font-size: var(--evve-body-sm-size);
  background: var(--evve-surface);
}

.pv-checkout-field__ro {
  box-sizing: border-box;
  border: 1px solid var(--evve-line);
  border-radius: var(--evve-radius);
  padding: 0.65rem 0.85rem;
  font-size: var(--evve-body-sm-size);
  background: var(--evve-bg);
  color: var(--evve-ink-muted);
}

.pv-checkout-auth-switch {
  margin-top: 0.25rem;
}

.pv-checkout-auth-switch__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding: 0.25rem;
  border: 1px solid var(--evve-outline-variant);
  border-radius: var(--evve-radius);
  background: var(--evve-surface-high);
}

.pv-checkout-auth-switch__tab {
  appearance: none;
  border: 0;
  border-radius: calc(var(--evve-radius) - 2px);
  background: transparent;
  color: var(--evve-on-surface-variant);
  font: inherit;
  font-size: var(--evve-body-sm-size);
  font-weight: 600;
  padding: 0.55rem 0.75rem;
  cursor: pointer;
}

.pv-checkout-auth-switch__tab:hover:not(.is-active) {
  color: var(--evve-ink);
  background: rgba(255, 255, 255, 0.45);
}

.pv-checkout-auth-switch__tab.is-active {
  background: var(--evve-surface);
  color: var(--evve-ink-strong);
  border: 1px solid var(--evve-line);
  box-shadow: 0 1px 2px rgba(25, 28, 30, 0.12);
}

.pv-checkout-auth-panel[hidden] {
  display: none !important;
}

.pv-checkout-payment__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .pv-checkout-head,
  .pv-checkout-body {
    padding-left: var(--evve-pad-desktop);
    padding-right: var(--evve-pad-desktop);
  }

  .pv-checkout-layout {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
