@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #171717;
  background-color: #fafafa;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #171717;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #8b5cf6;
  text-decoration: none;
  transition: color 150ms ease;
}
a:hover {
  color: #7c3aed;
}

strong, b {
  font-weight: 700;
}

small {
  font-size: 0.875rem;
}

ul, ol {
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 2rem 0;
}

::selection {
  background-color: rgba(139, 92, 246, 0.2);
  color: #171717;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a3a3a3;
}

.hidden {
  display: none !important;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.m-0 {
  margin: 0;
}

.m-auto {
  margin: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.p-0 {
  padding: 0;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.leading-tight {
  line-height: 1.25;
}

.leading-normal {
  line-height: 1.5;
}

.leading-relaxed {
  line-height: 1.625;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-primary {
  color: #8b5cf6;
}

.text-muted {
  color: #525252;
}

.text-white {
  color: #ffffff;
}

.text-success {
  color: #22c55e;
}

.text-warning {
  color: #f59e0b;
}

.text-error {
  color: #ef4444;
}

.bg-white {
  background-color: #ffffff;
}

.bg-neutral-50 {
  background-color: #fafafa;
}

.bg-neutral-100 {
  background-color: #f5f5f5;
}

.bg-neutral-900 {
  background-color: #171717;
}

.bg-primary {
  background-color: #8b5cf6;
}

.border {
  border: 1px solid #e5e5e5;
}

.border-t {
  border-top: 1px solid #e5e5e5;
}

.border-b {
  border-bottom: 1px solid #e5e5e5;
}

.border-none {
  border: none;
}

.rounded {
  border-radius: 0.5rem;
}

.rounded-lg {
  border-radius: 0.75rem;
}

.rounded-xl {
  border-radius: 1rem;
}

.rounded-2xl {
  border-radius: 1.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.shadow-none {
  box-shadow: none;
}

.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.h-full {
  height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-auto {
  overflow-y: auto;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.opacity-0 {
  opacity: 0;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

.transition {
  transition: all 200ms ease;
}

.transition-fast {
  transition: all 150ms ease;
}

.transition-slow {
  transition: all 300ms ease;
}

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

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1024px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 1024px) {
  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 150ms ease;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn:focus-visible {
  outline: 2px solid #8b5cf6;
  outline-offset: 2px;
}

.btn--primary {
  background-color: #8b5cf6;
  color: #ffffff;
}
.btn--primary:hover:not(:disabled) {
  background-color: #7c3aed;
}
.btn--primary:active:not(:disabled) {
  background-color: #6d28d9;
}

.btn--secondary {
  background-color: transparent;
  color: #171717;
  border: 1px solid #e5e5e5;
}
.btn--secondary:hover:not(:disabled) {
  background-color: #f5f5f5;
  border-color: #d4d4d4;
}
.btn--secondary:active:not(:disabled) {
  background-color: #e5e5e5;
}

.btn--ghost {
  background-color: transparent;
  color: #171717;
}
.btn--ghost:hover:not(:disabled) {
  background-color: #f5f5f5;
}
.btn--ghost:active:not(:disabled) {
  background-color: #e5e5e5;
}

.btn--outline {
  background-color: transparent;
  color: #8b5cf6;
  border: 1px solid #8b5cf6;
}
.btn--outline:hover:not(:disabled) {
  background-color: #f5f3ff;
}
.btn--outline:active:not(:disabled) {
  background-color: #ede9fe;
}

.btn--danger {
  background-color: #ef4444;
  color: #ffffff;
}
.btn--danger:hover:not(:disabled) {
  background-color: #dc2626;
}

.btn--success {
  background-color: #22c55e;
  color: #ffffff;
}
.btn--success:hover:not(:disabled) {
  background-color: #16a34a;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn--xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.btn--block {
  width: 100%;
}

.btn__icon {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
}

.btn--icon {
  padding: 0.75rem;
}
.btn--icon.btn--sm {
  padding: 0.5rem;
}
.btn--icon.btn--lg {
  padding: 1rem;
}

.btn--loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.btn--loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.25em;
  height: 1.25em;
  margin: -0.625em 0 0 -0.625em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 9999px;
  animation: btn-spin 0.6s linear infinite;
}
.btn--loading.btn--primary::after {
  border-color: rgba(255, 255, 255, 0.3);
  border-right-color: #ffffff;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}
.btn-group {
  display: inline-flex;
}
.btn-group .btn {
  border-radius: 0;
}
.btn-group .btn:first-child {
  border-radius: 0.75rem 0 0 0.75rem;
}
.btn-group .btn:last-child {
  border-radius: 0 0.75rem 0.75rem 0;
}
.btn-group .btn:not(:first-child) {
  margin-left: -1px;
}

.card, .card-ticket, .card-stat, .card-plan {
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  transition: all 200ms ease;
}

.card--interactive {
  cursor: pointer;
}
.card--interactive:hover {
  border-color: #d4d4d4;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.card--interactive:active {
  transform: translateY(0);
}

.card--featured {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 1px #8b5cf6;
}

.card__header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.card__body {
  padding: 1.5rem;
}

.card__footer {
  padding: 1rem 1.5rem;
  background-color: #fafafa;
  border-top: 1px solid #e5e5e5;
}

.card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #171717;
}

.card__subtitle {
  font-size: 0.875rem;
  color: #525252;
}

.card__description {
  color: #525252;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-event {
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  transition: all 150ms ease;
}
.card-event:hover {
  border-color: #d4d4d4;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.card-event__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.card-event__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms ease;
}
.card-event:hover .card-event__image img {
  transform: scale(1.03);
}

.card-event__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}

.card-event__body {
  padding: 1.25rem;
}

.card-event__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #f5f3ff;
  border-radius: 0.5rem;
  float: left;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}

.card-event__day {
  font-size: 1.125rem;
  font-weight: 700;
  color: #8b5cf6;
  line-height: 1;
}

.card-event__month {
  font-size: 0.75rem;
  font-weight: 500;
  color: #8b5cf6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-event__title {
  font-size: 1rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 0.25rem;
  line-height: 1.375;
}

.card-event__location {
  font-size: 0.875rem;
  color: #525252;
  margin-bottom: 1rem;
  clear: both;
}

.card-event__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #e5e5e5;
}

.card-event__price {
  font-size: 1.125rem;
  font-weight: 700;
  color: #171717;
}

.card-plan {
  text-align: center;
  padding: 2rem;
}
.card-plan.card-plan--featured {
  border-color: #8b5cf6;
  position: relative;
}
.card-plan.card-plan--featured::before {
  content: "Recomendado";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #8b5cf6;
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.card-plan .card-plan__name {
  font-size: 1.125rem;
  font-weight: 500;
  color: #525252;
  margin-bottom: 1rem;
}
.card-plan .card-plan__price {
  font-size: 2.25rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 0.5rem;
}
.card-plan .card-plan__price small {
  font-size: 1rem;
  font-weight: 400;
  color: #525252;
}
.card-plan .card-plan__description {
  font-size: 0.875rem;
  color: #525252;
  margin-bottom: 1.5rem;
}
.card-plan .card-plan__features {
  text-align: left;
  margin-bottom: 2rem;
}
.card-plan .card-plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: #171717;
}
.card-plan .card-plan__features li::before {
  content: "✓";
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
}

.card-stat {
  padding: 1.5rem;
}
.card-stat .card-stat__icon {
  width: 48px;
  height: 48px;
  background-color: #f5f3ff;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #8b5cf6;
}
.card-stat .card-stat__value {
  font-size: 1.875rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 0.25rem;
}
.card-stat .card-stat__label {
  font-size: 0.875rem;
  color: #525252;
}
.card-stat .card-stat__trend {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.5rem;
}
.card-stat .card-stat__trend.card-stat__trend--up {
  color: #22c55e;
}
.card-stat .card-stat__trend.card-stat__trend--down {
  color: #ef4444;
}

.card-ticket {
  display: flex;
  overflow: hidden;
}
@media (min-width: 768px) {
  .card-ticket {
    flex-direction: row;
  }
}
.card-ticket .card-ticket__qr {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  padding: 1rem;
  background-color: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-ticket .card-ticket__qr img {
  width: 100%;
  height: 100%;
}
.card-ticket .card-ticket__content {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-ticket .card-ticket__event {
  font-size: 1.125rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 0.25rem;
}
.card-ticket .card-ticket__info {
  font-size: 0.875rem;
  color: #525252;
}
.card-ticket .card-ticket__status {
  margin-top: 0.5rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.cards-grid--sm {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.cards-grid--lg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group:last-child {
  margin-bottom: 0;
}

.form-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #171717;
}

.form-label--required::after {
  content: " *";
  color: #ef4444;
}

.form-help {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #525252;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #171717;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  transition: all 150ms ease;
}
.form-input::placeholder {
  color: #525252;
}
.form-input:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}
.form-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f5f5f5;
}

.form-input--lg {
  padding: 1rem 1.25rem;
  font-size: 1.125rem;
}

.form-input--sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}

.form-input--error {
  border-color: #ef4444;
}
.form-input--error:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input--success {
  border-color: #22c55e;
}
.form-input--success:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #ef4444;
}

.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #171717;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  transition: all 150ms ease;
}
.form-textarea::placeholder {
  color: #525252;
}
.form-textarea:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}
.form-textarea:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f5f5f5;
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #171717;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  transition: all 150ms ease;
}
.form-select::placeholder {
  color: #525252;
}
.form-select:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}
.form-select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f5f5f5;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}
.form-check input {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #8b5cf6;
}

.form-check__label {
  font-size: 1rem;
  color: #171717;
  user-select: none;
}

.form-check-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-check-group--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.form-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.form-switch__input {
  position: relative;
  width: 44px;
  height: 24px;
  appearance: none;
  background-color: #d4d4d4;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 150ms ease;
}
.form-switch__input::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 9999px;
  transition: transform 150ms ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.form-switch__input:checked {
  background-color: #8b5cf6;
}
.form-switch__input:checked::after {
  transform: translateX(20px);
}
.form-switch__input:focus-visible {
  outline: 2px solid #8b5cf6;
  outline-offset: 2px;
}

.form-switch__label {
  font-size: 1rem;
  color: #171717;
  user-select: none;
}

.input-group {
  position: relative;
  display: flex;
}

.input-group__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #525252;
  pointer-events: none;
}
.input-group__icon + .form-input {
  padding-left: 2.5rem;
}

.input-group__icon--right {
  left: auto;
  right: 1rem;
}
.input-group__icon--right ~ .form-input {
  padding-right: 2.5rem;
  padding-left: 1rem;
}

.input-group__addon {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  background-color: #f5f5f5;
  border: 1px solid #e5e5e5;
  font-size: 0.875rem;
  color: #525252;
  white-space: nowrap;
}
.input-group__addon:first-child {
  border-right: none;
  border-radius: 0.75rem 0 0 0.75rem;
}
.input-group__addon:last-child {
  border-left: none;
  border-radius: 0 0.75rem 0.75rem 0;
}

.input-group .form-input {
  flex: 1;
}
.input-group .form-input:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group .form-input:first-child {
  border-radius: 0.75rem 0 0 0.75rem;
}
.input-group .form-input:last-child {
  border-radius: 0 0.75rem 0.75rem 0;
}

.form-file {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border: 2px dashed #e5e5e5;
  border-radius: 1rem;
  background-color: #fafafa;
  cursor: pointer;
  transition: all 150ms ease;
  text-align: center;
}
.form-file:hover {
  border-color: #8b5cf6;
  background-color: #f5f3ff;
}
.form-file input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-file__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: #525252;
}

.form-file__text {
  font-size: 0.875rem;
  color: #525252;
}
.form-file__text strong {
  color: #8b5cf6;
}

.form-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .form-card {
    padding: 2rem;
  }
}

.form-card__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.form-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 0.5rem;
}

.form-card__subtitle {
  font-size: 0.875rem;
  color: #525252;
}

.form-card__actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e5e5;
}
@media (min-width: 768px) {
  .form-card__actions {
    justify-content: flex-end;
  }
}

.form-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}
.form-steps::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #e5e5e5;
  z-index: 0;
}

.form-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.form-step__indicator {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background-color: #ffffff;
  border: 2px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #525252;
  margin-bottom: 0.5rem;
  transition: all 150ms ease;
}

.form-step__label {
  font-size: 0.75rem;
  color: #525252;
  text-align: center;
}
@media (min-width: 768px) {
  .form-step__label {
    font-size: 0.875rem;
  }
}

.form-step--active .form-step__indicator {
  border-color: #8b5cf6;
  background-color: #8b5cf6;
  color: #ffffff;
}
.form-step--active .form-step__label {
  color: #171717;
  font-weight: 500;
}

.form-step--completed .form-step__indicator {
  border-color: #22c55e;
  background-color: #22c55e;
  color: #ffffff;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  border-radius: 9999px;
  white-space: nowrap;
}

.badge--neutral {
  background-color: #f5f5f5;
  color: #404040;
}

.badge--primary {
  background-color: #ede9fe;
  color: #6d28d9;
}

.badge--success {
  background-color: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.badge--warning {
  background-color: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

.badge--error {
  background-color: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.badge--info {
  background-color: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

.badge--primary-solid {
  background-color: #8b5cf6;
  color: #ffffff;
}

.badge--success-solid {
  background-color: #22c55e;
  color: #ffffff;
}

.badge--error-solid {
  background-color: #ef4444;
  color: #ffffff;
}

.badge--sm {
  padding: 2px 0.5rem;
  font-size: 10px;
}

.badge--lg {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.badge--outline {
  background-color: transparent;
  border: 1px solid currentColor;
}

.badge--dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background-color: currentColor;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: #f5f5f5;
  color: #404040;
  border-radius: 0.5rem;
  transition: all 150ms ease;
}

.tag--interactive {
  cursor: pointer;
}
.tag--interactive:hover {
  background-color: #e5e5e5;
}

.tag--selected {
  background-color: #ede9fe;
  color: #6d28d9;
}

.tag--removable {
  padding-right: 0.5rem;
}

.tag__remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  background-color: transparent;
  color: currentColor;
  opacity: 0.6;
  transition: all 150ms ease;
  cursor: pointer;
}
.tag__remove:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.1);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
}

.status--valid {
  background-color: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}
.status--valid::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: #22c55e;
}

.status--used {
  background-color: #f5f5f5;
  color: #737373;
}
.status--used::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: #a3a3a3;
}

.status--expired {
  background-color: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
.status--expired::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: #ef4444;
}

.status--pending {
  background-color: rgba(245, 158, 11, 0.1);
  color: #d97706;
}
.status--pending::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: #f59e0b;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.alert {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .alert {
    padding: 1rem 1.25rem;
  }
}

.alert__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.alert__content {
  flex: 1;
  min-width: 0;
}

.alert__title {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.alert__message {
  opacity: 0.9;
}

.alert__close {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 150ms ease;
}
.alert__close:hover {
  opacity: 1;
}

.alert--info {
  background-color: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.alert--success {
  background-color: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.alert--warning {
  background-color: rgba(245, 158, 11, 0.1);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.alert--error {
  background-color: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert--subtle {
  border: none;
}

.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  max-width: 400px;
  padding: 1rem 1.25rem;
  background-color: #171717;
  color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1070;
  animation: toast-in 0.3s ease;
}

.toast--success {
  background-color: #16a34a;
}

.toast--error {
  background-color: #dc2626;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}
@media (min-width: 768px) {
  .empty-state {
    padding: 4rem 2rem;
  }
}

.empty-state__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  color: #d4d4d4;
}
@media (min-width: 768px) {
  .empty-state__icon {
    width: 120px;
    height: 120px;
  }
}

.empty-state__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .empty-state__title {
    font-size: 1.5rem;
  }
}

.empty-state__description {
  font-size: 1rem;
  color: #525252;
  max-width: 400px;
  margin-bottom: 1.5rem;
}

.empty-state__action {
  margin-top: 0.5rem;
}

.empty-state--compact {
  padding: 2rem 1rem;
}
.empty-state--compact .empty-state__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}
.empty-state--compact .empty-state__title {
  font-size: 1.125rem;
}
.empty-state--compact .empty-state__description {
  font-size: 0.875rem;
}

.spinner {
  width: 24px;
  height: 24px;
  border: 2px solid #e5e5e5;
  border-top-color: #8b5cf6;
  border-radius: 9999px;
  animation: spin 0.8s linear infinite;
}

.spinner--sm {
  width: 16px;
  height: 16px;
}

.spinner--lg {
  width: 40px;
  height: 40px;
  border-width: 3px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loading-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1040;
}

.skeleton {
  background: linear-gradient(90deg, #e5e5e5 25%, #f5f5f5 50%, #e5e5e5 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 0.5rem;
}

.skeleton--text {
  height: 1em;
  margin-bottom: 0.5rem;
}
.skeleton--text:last-child {
  width: 60%;
}

.skeleton--title {
  height: 1.5em;
  width: 50%;
  margin-bottom: 1rem;
}

.skeleton--avatar {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
}

.skeleton--image {
  aspect-ratio: 16/9;
  border-radius: 0.75rem;
}

.skeleton--button {
  height: 44px;
  width: 120px;
  border-radius: 0.75rem;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.progress {
  width: 100%;
  height: 8px;
  background-color: #e5e5e5;
  border-radius: 9999px;
  overflow: hidden;
}

.progress__bar {
  height: 100%;
  background-color: #8b5cf6;
  border-radius: 9999px;
  transition: width 0.3s ease;
}

.progress--success .progress__bar {
  background-color: #22c55e;
}

.progress--sm {
  height: 4px;
}

.progress--lg {
  height: 12px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #262626;
}

.header__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1024px) {
  .header__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 1024px) {
  .header__inner {
    height: 72px;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}
.header__logo img {
  height: 32px;
  width: auto;
}

.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.header__nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #a3a3a3;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 150ms ease;
}
.header__nav-link:hover, .header__nav-link.is-active {
  color: #ffffff;
}
.header__nav-link.is-active {
  position: relative;
}
.header__nav-link.is-active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #8b5cf6;
  border-radius: 9999px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .header__menu-btn {
    display: none;
  }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background-color: #ffffff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-nav.is-open {
  transform: translateX(0);
}
@media (min-width: 1024px) {
  .mobile-nav {
    display: none;
  }
}

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e5e5e5;
}

.mobile-nav__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #171717;
}

.mobile-nav__body {
  padding: 1rem;
  overflow-y: auto;
  height: calc(100vh - 64px);
}

.mobile-nav__link {
  display: block;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #171717;
  text-decoration: none;
  border-radius: 0.75rem;
}
.mobile-nav__link:hover, .mobile-nav__link.is-active {
  background-color: #f5f5f5;
}
.mobile-nav__link.is-active {
  color: #8b5cf6;
}

.mobile-nav__divider {
  height: 1px;
  background-color: #e5e5e5;
  margin: 1rem 0;
}

.mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer {
  background-color: #171717;
  color: #a3a3a3;
  padding: 1.5rem 0;
}

.footer__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1024px) {
  .footer__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer__logo img {
  height: 32px;
  width: auto;
}

.footer__description {
  font-size: 0.875rem;
  line-height: 1.625;
}

.footer__column-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}
.footer__links a {
  font-size: 0.875rem;
  color: #a3a3a3;
  text-decoration: none;
  transition: color 150ms ease;
}
.footer__links a:hover {
  color: #ffffff;
}

.footer__link {
  font-size: 0.875rem;
  color: #a3a3a3;
  text-decoration: none;
  transition: color 150ms ease;
}
.footer__link:hover {
  color: #ffffff;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom:only-child {
  padding: 0;
  border-top: none;
}

.footer__copyright {
  font-size: 0.875rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a3a3a3;
  background-color: #262626;
  border-radius: 9999px;
  transition: all 150ms ease;
}
.footer__social-link:hover {
  color: #ffffff;
  background-color: #404040;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #fafafa 0%, #f5f3ff 100%);
}
@media (min-width: 1024px) {
  .hero {
    padding: 6rem 1.5rem;
  }
}

.hero__logo {
  margin-bottom: 1.5rem;
}
.hero__logo img {
  height: 48px;
  width: auto;
}
@media (min-width: 1024px) {
  .hero__logo img {
    height: 64px;
  }
}

.hero__title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 3rem;
  }
}
.hero__title {
  max-width: 700px;
  margin-bottom: 1rem;
  color: #171717;
}

.hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.625;
  color: #525252;
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.features {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 1024px) {
  .features {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.features {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1024px) {
  .features {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  text-align: center;
}

.features__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
}

.features__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  color: #8b5cf6;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(139, 92, 246, 0.1);
  border-radius: 0.75rem;
  padding: 0.75rem;
}

.features__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 0.5rem;
}

.features__desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #525252;
  line-height: 1.625;
}

.cta-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 1024px) {
  .cta-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.cta-section {
  text-align: center;
  background-color: #f5f3ff;
  padding-left: 1rem;
  padding-right: 1rem;
}

.cta-section__title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.375;
}
@media (min-width: 1024px) {
  .cta-section__title {
    font-size: 1.875rem;
  }
}
.cta-section__title {
  max-width: 600px;
  margin: 0 auto 1rem;
}

.cta-section__text {
  font-size: 1.125rem;
  line-height: 1.625;
  color: #525252;
  margin-bottom: 1.5rem;
}

.cta-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 150ms ease;
}
.cta-section__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cta-section__btn {
  background-color: #8b5cf6;
  color: #ffffff;
}
.cta-section__btn:hover:not(:disabled) {
  background-color: #7c3aed;
}
.cta-section__btn:active:not(:disabled) {
  background-color: #6d28d9;
}
.cta-section__btn {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.carousel {
  position: relative;
  overflow: hidden;
  background-color: #171717;
}

.carousel__track {
  position: relative;
  width: 100%;
}

.carousel__item {
  display: none;
  position: relative;
}
.carousel__item.is-active {
  display: block;
}
.carousel__item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .carousel__item img {
    height: 500px;
  }
}

.carousel__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #ffffff;
}
@media (min-width: 1024px) {
  .carousel__caption {
    padding: 3rem 2rem;
  }
}

.carousel__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .carousel__title {
    font-size: 2.25rem;
  }
}

.carousel__subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .carousel__subtitle {
    font-size: 1rem;
  }
}

.carousel__controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .carousel__controls {
    padding: 0 1.5rem;
  }
}

.carousel__prev,
.carousel__next {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  cursor: pointer;
  transition: all 150ms ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border: none;
  color: #171717;
}
.carousel__prev:hover,
.carousel__next:hover {
  background-color: #ffffff;
  transform: scale(1.05);
}

.carousel__indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
@media (min-width: 1024px) {
  .carousel__indicators {
    bottom: 2rem;
  }
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 150ms ease;
}
.carousel__dot:hover {
  background-color: rgba(255, 255, 255, 0.7);
}
.carousel__dot.is-active {
  background-color: #ffffff;
  width: 28px;
}

.search-bar {
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.search-bar__input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.search-bar__icon {
  position: absolute;
  left: 1rem;
  color: #525252;
  pointer-events: none;
}

.search-bar__input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  font-size: 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 9999px;
  background-color: #ffffff;
  transition: all 150ms ease;
}
.search-bar__input:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}
.search-bar__input::placeholder {
  color: #525252;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .categories {
    gap: 0.75rem;
  }
}

.categories__btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #e5e5e5;
  border-radius: 9999px;
  background-color: #ffffff;
  color: #171717;
  cursor: pointer;
  transition: all 150ms ease;
}
.categories__btn:hover {
  border-color: #8b5cf6;
  color: #8b5cf6;
  background-color: #f5f3ff;
}
.categories__btn.is-active {
  background-color: #8b5cf6;
  border-color: #8b5cf6;
  color: #ffffff;
}

.events-grid {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1024px) {
  .events-grid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding-bottom: 3rem;
}

.evento {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1024px) {
  .evento {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.evento {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 1024px) {
  .evento {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.evento__layout {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .evento__layout {
    grid-template-columns: 1fr 380px;
    gap: 3rem;
  }
}

.evento__image {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.evento__image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.evento__main {
  min-width: 0;
}

.evento__category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #8b5cf6;
  margin-bottom: 0.75rem;
}

.evento__title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (min-width: 1024px) {
  .evento__title {
    font-size: 2.25rem;
  }
}
.evento__title {
  margin-bottom: 1rem;
}

.evento__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.evento__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #525252;
}
.evento__meta-item svg,
.evento__meta-item i {
  width: 16px;
  height: 16px;
  color: #8b5cf6;
}

.evento__description {
  font-size: 1rem;
  line-height: 1.5;
  color: #171717;
  margin-bottom: 2rem;
}
.evento__description h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.375;
}
@media (min-width: 1024px) {
  .evento__description h3 {
    font-size: 1.5rem;
  }
}
.evento__description h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.evento__description p {
  margin-bottom: 1rem;
  line-height: 1.625;
}
.evento__description ul, .evento__description ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.evento__description ul li, .evento__description ol li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.evento__sidebar {
  position: sticky;
  top: 88px;
  align-self: start;
}

.purchase-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e5e5e5;
  transition: all 200ms ease;
  padding: 1.5rem;
}

.purchase-card__price {
  font-size: 1.875rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 0.25rem;
}
.purchase-card__price small {
  font-size: 0.875rem;
  font-weight: 400;
  color: #525252;
}

.purchase-card__status {
  font-size: 0.875rem;
  color: #22c55e;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.purchase-card__dates {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.purchase-card__date-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: #171717;
}
.purchase-card__date-item svg, .purchase-card__date-item i {
  width: 16px;
  height: 16px;
  color: #525252;
}

.purchase-card__quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.purchase-card__quantity-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #171717;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  padding: 0.25rem;
}

.quantity-selector__btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  color: #171717;
  transition: background-color 150ms ease;
}
.quantity-selector__btn:hover {
  background-color: #f5f5f5;
}
.quantity-selector__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.quantity-selector__value {
  font-size: 1rem;
  font-weight: 500;
  min-width: 24px;
  text-align: center;
}

.purchase-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 150ms ease;
}
.purchase-card__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.purchase-card__btn {
  background-color: #8b5cf6;
  color: #ffffff;
}
.purchase-card__btn:hover:not(:disabled) {
  background-color: #7c3aed;
}
.purchase-card__btn:active:not(:disabled) {
  background-color: #6d28d9;
}
.purchase-card__btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.purchase-card__info {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: #525252;
}

.funciones {
  margin-bottom: 2rem;
}

.funciones__title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.375;
}
@media (min-width: 1024px) {
  .funciones__title {
    font-size: 1.5rem;
  }
}
.funciones__title {
  margin-bottom: 1rem;
}

.funcion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  transition: all 150ms ease;
}
.funcion-item:hover {
  border-color: #d4d4d4;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.funcion-item.is-selected {
  border-color: #8b5cf6;
  background-color: #f5f3ff;
}

.funcion-item__date {
  font-size: 0.875rem;
  font-weight: 500;
  color: #171717;
}

.funcion-item__time {
  font-size: 0.875rem;
  color: #525252;
}

.funcion-item__seats {
  font-size: 0.75rem;
  color: #525252;
}

.funcion-item__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 150ms ease;
}
.funcion-item__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.funcion-item__btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  background-color: #8b5cf6;
  color: #ffffff;
}
.funcion-item__btn:hover:not(:disabled) {
  background-color: #7c3aed;
}

.contacto {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .contacto {
    grid-template-columns: 1fr 1.5fr;
    align-items: start;
  }
}

.contacto__header {
  text-align: center;
  margin-bottom: 2rem;
}

.contacto__logo {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
}

.contacto__intro {
  font-size: 1.125rem;
  line-height: 1.625;
  color: #525252;
  margin-bottom: 1rem;
}
.contacto__intro a {
  color: #8b5cf6;
  font-weight: 500;
}

.contacto__info {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .contacto__info {
    margin-bottom: 0;
  }
}

.contacto__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 0.75rem;
}

.contacto__text {
  font-size: 1rem;
  line-height: 1.5;
  color: #525252;
  margin-bottom: 1.5rem;
  line-height: 1.625;
}

.contacto__details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contacto__detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #171717;
}
.contacto__detail-item svg {
  flex-shrink: 0;
  color: #8b5cf6;
}

.contacto__form {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e5e5e5;
}
@media (min-width: 768px) {
  .contacto__form {
    padding: 2rem;
  }
}

.contacto__success {
  display: none;
  text-align: center;
  padding: 3rem;
}
.contacto__success.is-visible {
  display: block;
}

.acerca {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1024px) {
  .acerca {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.acerca {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 1024px) {
  .acerca {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.acerca {
  max-width: 800px;
}

.acerca__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .acerca__title {
    font-size: 1.875rem;
  }
}

.acerca__content {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e5e5e5;
}
@media (min-width: 768px) {
  .acerca__content {
    padding: 2rem;
  }
}
.acerca__content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #171717;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.acerca__content h2:first-of-type {
  margin-top: 0;
}
.acerca__content p {
  font-size: 1rem;
  line-height: 1.5;
  color: #525252;
  margin-bottom: 1rem;
  line-height: 1.625;
}
.acerca__content p:last-child {
  margin-bottom: 0;
}
.acerca__content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.acerca__content ul li {
  font-size: 1rem;
  line-height: 1.5;
  color: #525252;
  line-height: 1.625;
  margin-bottom: 0.5rem;
  position: relative;
}
.acerca__content ul li::marker {
  color: #8b5cf6;
}
.acerca__content a {
  color: #8b5cf6;
  font-weight: 500;
}
.acerca__content a:hover {
  color: #7c3aed;
}

.terminos {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1024px) {
  .terminos {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.terminos {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 1024px) {
  .terminos {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.terminos {
  max-width: 800px;
}

.terminos__content {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e5e5e5;
}
@media (min-width: 768px) {
  .terminos__content {
    padding: 2rem;
  }
}
.terminos__content h5, .terminos__content h4, .terminos__content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #171717;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.terminos__content h5:first-child, .terminos__content h4:first-child, .terminos__content h3:first-child {
  margin-top: 0;
}
.terminos__content p {
  font-size: 1rem;
  line-height: 1.5;
  color: #171717;
  margin-bottom: 1rem;
  line-height: 1.625;
}

.terminos__version {
  text-align: right;
  font-size: 0.75rem;
  color: #525252;
  margin-top: 1rem;
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fafafa;
  padding: 1rem;
}

.auth-box {
  width: 100%;
  max-width: 420px;
}

.auth-card {
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}

.auth-card__header {
  text-align: center;
  padding: 2rem 1.5rem 1rem;
}

.auth-card__logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.auth-card__title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #171717;
}

.auth-card__body {
  padding: 1rem 1.5rem 2rem;
}

.auth-form .form-group {
  margin-bottom: 1rem;
}

.auth-form__input-group {
  position: relative;
  display: flex;
}
.auth-form__input-group .form-input {
  flex: 1;
  border-radius: 0.75rem 0 0 0.75rem;
}

.auth-form__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  background-color: #f5f5f5;
  border: 1px solid #e5e5e5;
  border-left: none;
  border-radius: 0 0.75rem 0.75rem 0;
  color: #525252;
}
.auth-form__icon svg, .auth-form__icon i {
  width: 16px;
  height: 16px;
}

.auth-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 150ms ease;
}
.auth-form__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.auth-form__submit {
  background-color: #8b5cf6;
  color: #ffffff;
}
.auth-form__submit:hover:not(:disabled) {
  background-color: #7c3aed;
}
.auth-form__submit:active:not(:disabled) {
  background-color: #6d28d9;
}
.auth-form__submit {
  width: 100%;
  margin-top: 0.5rem;
}

.auth-form__error {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background-color: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}
.auth-form__error:empty {
  display: none;
}

.auth-links {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #525252;
}
.auth-links a {
  color: #8b5cf6;
  font-weight: 500;
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid #e5e5e5;
}

.auth-tabs__item {
  flex: 1;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #525252;
  cursor: pointer;
  transition: all 150ms ease;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.auth-tabs__item:hover {
  color: #171717;
}
.auth-tabs__item.is-active {
  color: #8b5cf6;
  border-bottom-color: #8b5cf6;
}

.auth-tab-panel {
  display: none;
}
.auth-tab-panel.is-active {
  display: block;
}

.auth-info {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  background-color: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  text-align: center;
}
.auth-info b, .auth-info strong {
  font-weight: 700;
}

.panel {
  min-height: 100vh;
  background-color: #fafafa;
}

.panel__content {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1024px) {
  .panel__content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.panel__content {
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}
@media (min-width: 1024px) {
  .panel__content {
    padding-top: 2rem;
  }
}

.panel-header {
  background-color: #171717;
  border-bottom: none;
}
.panel-header .header__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1024px) {
  .panel-header .header__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.panel-header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.panel-header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.panel-header__brand img {
  height: 28px;
  width: auto;
}

.panel-header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .panel-header__nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}

.panel-header__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #a3a3a3;
  text-decoration: none;
  transition: color 150ms ease;
}
.panel-header__link:hover, .panel-header__link.is-active {
  color: #ffffff;
}

.panel-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.panel-header__icon-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a3a3a3;
  border-radius: 0.5rem;
  transition: all 150ms ease;
}
.panel-header__icon-btn:hover {
  color: #ffffff;
  background-color: #262626;
}

.panel-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.panel-events {
  margin-top: 0;
}

.panel-events__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.panel-events__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #171717;
}

.panel-events__empty {
  padding: 2rem;
  text-align: center;
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e5e5e5;
}
.panel-events__empty p {
  color: #525252;
  margin-bottom: 1rem;
}

.panel-table {
  width: 100%;
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}

.panel-table__head {
  background-color: #fafafa;
}
.panel-table__head th {
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #525252;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
}

.panel-table__body td {
  padding: 1rem;
  font-size: 0.875rem;
  color: #171717;
  border-bottom: 1px solid #e5e5e5;
  vertical-align: middle;
}
.panel-table__body tr:last-child td {
  border-bottom: none;
}
.panel-table__body tr:hover {
  background-color: #fafafa;
}

.panel-table__event {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.panel-table__event-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  flex-shrink: 0;
}
.panel-table__event-dot--active {
  background-color: #22c55e;
}
.panel-table__event-dot--warning {
  background-color: #f59e0b;
}

.panel-table__progress {
  width: 100%;
  max-width: 100px;
  height: 6px;
  background-color: #f5f5f5;
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 2px;
}

.panel-table__progress-bar {
  height: 100%;
  background-color: #8b5cf6;
  border-radius: 9999px;
  transition: width 0.3s ease;
}
.panel-table__progress-bar--warning {
  background-color: #f59e0b;
}

.panel-table__progress-text {
  font-size: 0.75rem;
  color: #525252;
}

.panel-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.panel-welcome__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #171717;
}

.panel-welcome__subtitle {
  font-size: 0.875rem;
  color: #525252;
  margin-top: 0.25rem;
}

.panel-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .panel-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.panel-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.panel-actions__title,
.panel-activity__title,
.panel-pages__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #171717;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.panel-actions__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.panel-action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 150ms ease;
}
.panel-action-card:hover {
  border-color: #8b5cf6;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}
.panel-action-card span {
  font-size: 0.75rem;
  font-weight: 500;
  color: #171717;
}

.panel-action-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  border-radius: 0.5rem;
}

.panel-activity__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  overflow: hidden;
}

.panel-activity__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e5e5;
}
.panel-activity__item:last-child {
  border-bottom: none;
}

.panel-activity__dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  flex-shrink: 0;
}
.panel-activity__dot--success {
  background-color: #22c55e;
}
.panel-activity__dot--primary {
  background-color: #8b5cf6;
}
.panel-activity__dot--warning {
  background-color: #f59e0b;
}

.panel-activity__info {
  flex: 1;
  min-width: 0;
}

.panel-activity__text {
  font-size: 0.875rem;
  color: #171717;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.panel-activity__time {
  font-size: 0.75rem;
  color: #525252;
}

.panel-activity__amount {
  font-size: 0.875rem;
  font-weight: 700;
  color: #22c55e;
  white-space: nowrap;
}

.panel-pages__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  overflow: hidden;
}

.panel-pages__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #171717;
  text-decoration: none;
  border-bottom: 1px solid #e5e5e5;
  transition: all 150ms ease;
}
.panel-pages__link:last-child {
  border-bottom: none;
}
.panel-pages__link:hover {
  background-color: #fafafa;
  color: #8b5cf6;
}
.panel-pages__link svg {
  color: #525252;
  flex-shrink: 0;
}
.panel-pages__link:hover svg {
  color: #8b5cf6;
}

.card-stat__icon--primary {
  color: #8b5cf6;
  background-color: rgba(139, 92, 246, 0.1);
}
.card-stat__icon--success {
  color: #22c55e;
  background-color: rgba(34, 197, 94, 0.1);
}
.card-stat__icon--warning {
  color: #f59e0b;
  background-color: rgba(245, 158, 11, 0.1);
}
.card-stat__icon--info {
  color: #3b82f6;
  background-color: rgba(59, 130, 246, 0.1);
}

.ew {
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  max-width: 360px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.ew__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.ew__body {
  padding: 1.25rem;
}

.ew__date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #8b5cf6;
  margin-bottom: 0.5rem;
}
.ew__date svg {
  width: 14px;
  height: 14px;
}

.ew__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ew__location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #525252;
  margin-bottom: 1rem;
}
.ew__location svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.ew__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ew__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #171717;
}
.ew__price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: #525252;
}

.ew__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 150ms ease;
}
.ew__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ew__btn {
  background-color: #8b5cf6;
  color: #ffffff;
}
.ew__btn:hover:not(:disabled) {
  background-color: #7c3aed;
}
.ew__btn:active:not(:disabled) {
  background-color: #6d28d9;
}
.ew__btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.ew--horizontal {
  display: flex;
  max-width: 100%;
}
.ew--horizontal .ew__image {
  width: 160px;
  min-height: 100%;
  aspect-ratio: auto;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .ew--horizontal .ew__image {
    width: 200px;
  }
}
.ew--horizontal .ew__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ew--minimal {
  border: none;
  background: transparent;
}
.ew--minimal .ew__body {
  padding: 0.75rem 0;
}

.td {
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  position: relative;
}

.td::before,
.td::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #fafafa;
  border-radius: 9999px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.td::before {
  left: -10px;
}

.td::after {
  right: -10px;
}

.td__divider {
  border: none;
  border-top: 2px dashed #e5e5e5;
  margin: 0 1.5rem;
}

.td__header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.td__event-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #171717;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.td__body {
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.td__info {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.td__info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.td__info-label {
  font-size: 0.75rem;
  color: #525252;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.td__info-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: #171717;
}

.td__qr {
  width: 100px;
  height: 100px;
  padding: 0.5rem;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .td__qr {
    width: 120px;
    height: 120px;
  }
}
.td__qr img, .td__qr svg, .td__qr canvas {
  width: 100%;
  height: 100%;
}

.td__footer {
  padding: 0.75rem 1.5rem;
  background-color: #fafafa;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #525252;
}

.td__code {
  font-family: monospace;
  letter-spacing: 0.1em;
}

.td--compact .td::before,
.td--compact .td::after {
  display: none;
}
.td--compact .td__body {
  padding: 1rem;
}
.td--compact .td__qr {
  width: 80px;
  height: 80px;
}

.td--validation {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}
.td--validation .td__body {
  flex-direction: column;
}
.td--validation .td__qr {
  width: 200px;
  height: 200px;
  margin: 0 auto;
}
.td--validation .td__info {
  grid-template-columns: 1fr;
  text-align: center;
  margin-top: 1rem;
}

.td--valid {
  border-color: #22c55e;
}
.td--valid .td__header {
  background-color: rgba(34, 197, 94, 0.05);
}

.td--invalid {
  border-color: #ef4444;
}
.td--invalid .td__header {
  background-color: rgba(239, 68, 68, 0.05);
}

.checkout {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1024px) {
  .checkout {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.checkout {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 1024px) {
  .checkout {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.checkout {
  max-width: 960px;
}

.checkout__layout {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .checkout__layout {
    grid-template-columns: 1fr 360px;
  }
}

.checkout__steps {
  margin-bottom: 2rem;
}

.checkout__form {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e5e5e5;
}
@media (min-width: 768px) {
  .checkout__form {
    padding: 2rem;
  }
}

.checkout__section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}
.checkout__section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.checkout__section-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 1rem;
}

.order-summary {
  position: sticky;
  top: 88px;
  align-self: start;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e5e5e5;
}

.order-summary__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e5e5;
}

.order-summary__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  font-size: 0.875rem;
}

.order-summary__item-name {
  color: #171717;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.order-summary__item-qty {
  font-size: 0.75rem;
  color: #525252;
  background-color: #f5f5f5;
  padding: 2px 0.5rem;
  border-radius: 0.25rem;
}

.order-summary__item-price {
  font-weight: 500;
  color: #171717;
}

.order-summary__divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 1rem 0;
}

.order-summary__subtotal,
.order-summary__fee {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #525252;
  padding: 0.5rem 0;
}

.order-summary__total {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 700;
  color: #171717;
  padding: 1rem 0;
  border-top: 2px solid #e5e5e5;
  margin-top: 0.75rem;
}

.order-summary__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 150ms ease;
}
.order-summary__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.order-summary__btn {
  background-color: #8b5cf6;
  color: #ffffff;
}
.order-summary__btn:hover:not(:disabled) {
  background-color: #7c3aed;
}
.order-summary__btn:active:not(:disabled) {
  background-color: #6d28d9;
}
.order-summary__btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  margin-top: 1rem;
}

.order-summary__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #525252;
}
.order-summary__secure svg {
  width: 14px;
  height: 14px;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 150ms ease;
}
.payment-method:hover {
  border-color: #d4d4d4;
}
.payment-method.is-selected {
  border-color: #8b5cf6;
  background-color: #f5f3ff;
}
.payment-method input[type=radio] {
  accent-color: #8b5cf6;
}

.payment-method__icon {
  width: 40px;
  height: 28px;
  object-fit: contain;
}

.payment-method__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #171717;
}

.payment-method__desc {
  font-size: 0.75rem;
  color: #525252;
}

.create-event {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1024px) {
  .create-event {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.create-event {
  max-width: 800px;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 1024px) {
  .create-event {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.create-event__header {
  margin-bottom: 2rem;
}

.create-event__title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.375;
}
@media (min-width: 1024px) {
  .create-event__title {
    font-size: 1.875rem;
  }
}
.create-event__title {
  margin-bottom: 0.5rem;
}

.create-event__subtitle {
  font-size: 1rem;
  line-height: 1.5;
  color: #525252;
}

.image-upload {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border: 2px dashed #e5e5e5;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 150ms ease;
  background-color: #fafafa;
  overflow: hidden;
}
.image-upload:hover {
  border-color: #8b5cf6;
  background-color: #f5f3ff;
}
.image-upload.has-image {
  border-style: solid;
  border-color: #e5e5e5;
}
.image-upload.has-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-upload input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.image-upload__icon {
  width: 48px;
  height: 48px;
  color: #525252;
}

.image-upload__text {
  font-size: 0.875rem;
  color: #525252;
  text-align: center;
}
.image-upload__text strong {
  color: #8b5cf6;
}

.datetime-group {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .datetime-group {
    grid-template-columns: 1fr 1fr;
  }
}

.ticket-types {
  margin-top: 1.5rem;
}

.ticket-types__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.ticket-types__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #171717;
}

.ticket-type-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem;
  background-color: #fafafa;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
}
@media (max-width: 767px) {
  .ticket-type-item {
    grid-template-columns: 1fr;
  }
}

.ticket-type-item__remove {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  border-radius: 0.5rem;
  transition: background-color 150ms ease;
}
.ticket-type-item__remove:hover {
  background-color: rgba(239, 68, 68, 0.1);
}

.ticket-types__add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 150ms ease;
}
.ticket-types__add:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ticket-types__add {
  width: 100%;
  padding: 0.75rem;
  border: 2px dashed #e5e5e5;
  color: #525252;
  border-radius: 0.75rem;
  justify-content: center;
}
.ticket-types__add:hover {
  border-color: #8b5cf6;
  color: #8b5cf6;
  background-color: #f5f3ff;
}

.sales-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.sales-chart {
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e5e5e5;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sales-chart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.sales-chart__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #171717;
}

.sales-chart__canvas {
  width: 100%;
  height: 240px;
}
@media (min-width: 1024px) {
  .sales-chart__canvas {
    height: 320px;
  }
}

.attendees {
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}

.attendees__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.attendees__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #171717;
}

.attendees__search {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #171717;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  transition: all 150ms ease;
}
.attendees__search::placeholder {
  color: #525252;
}
.attendees__search:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}
.attendees__search:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f5f5f5;
}
.attendees__search {
  max-width: 240px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}

.attendees__list {
  max-height: 400px;
  overflow-y: auto;
}

.attendee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid #e5e5e5;
  transition: background-color 150ms ease;
}
.attendee-item:last-child {
  border-bottom: none;
}
.attendee-item:hover {
  background-color: #fafafa;
}

.attendee-item__avatar {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background-color: #ede9fe;
  color: #8b5cf6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  flex-shrink: 0;
}

.attendee-item__info {
  flex: 1;
  min-width: 0;
}

.attendee-item__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #171717;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.attendee-item__email {
  font-size: 0.75rem;
  color: #525252;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scanner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #171717;
  padding: 1rem;
  color: #ffffff;
}

.scanner__header {
  text-align: center;
  margin-bottom: 2rem;
}

.scanner__logo {
  height: 32px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.scanner__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.scanner__event-name {
  font-size: 0.875rem;
  color: #a3a3a3;
  margin-top: 0.5rem;
}

.scanner__camera {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background-color: #262626;
}
.scanner__camera video, .scanner__camera canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scanner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.scanner__frame {
  width: 70%;
  height: 70%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 0.75rem;
  position: relative;
}
.scanner__frame::before, .scanner__frame::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: #8b5cf6;
  border-style: solid;
}
.scanner__frame::before {
  top: -1px;
  left: -1px;
  border-width: 3px 0 0 3px;
  border-radius: 0.25rem 0 0 0;
}
.scanner__frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 0.25rem 0;
}

.scanner__frame-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.scanner__frame-corners::before, .scanner__frame-corners::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: #8b5cf6;
  border-style: solid;
}
.scanner__frame-corners::before {
  top: -1px;
  right: -1px;
  border-width: 3px 3px 0 0;
  border-radius: 0 0.25rem 0 0;
}
.scanner__frame-corners::after {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 3px 3px;
  border-radius: 0 0 0 0.25rem;
}

.scanner__scan-line {
  position: absolute;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
  animation: scan-line 2s ease-in-out infinite;
}

@keyframes scan-line {
  0%, 100% {
    top: 20%;
  }
  50% {
    top: 75%;
  }
}
.scanner__result {
  width: 100%;
  max-width: 320px;
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  animation: result-in 0.3s ease;
}

.scanner__result--valid {
  background-color: rgba(34, 197, 94, 0.15);
  border: 2px solid #22c55e;
}
.scanner__result--valid .scanner__result-icon {
  color: #22c55e;
}

.scanner__result--invalid {
  background-color: rgba(239, 68, 68, 0.15);
  border: 2px solid #ef4444;
}
.scanner__result--invalid .scanner__result-icon {
  color: #ef4444;
}

.scanner__result--used {
  background-color: rgba(245, 158, 11, 0.15);
  border: 2px solid #f59e0b;
}
.scanner__result--used .scanner__result-icon {
  color: #f59e0b;
}

.scanner__result-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
}

.scanner__result-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.scanner__result-detail {
  font-size: 0.875rem;
  color: #a3a3a3;
}

@keyframes result-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.scanner__controls {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.scanner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 150ms ease;
}
.scanner__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.scanner__btn {
  background-color: #262626;
  color: #ffffff;
  border: 1px solid #404040;
}
.scanner__btn:hover:not(:disabled) {
  background-color: #404040;
}
.scanner__btn svg {
  width: 20px;
  height: 20px;
}

.scanner__btn--primary {
  background-color: #8b5cf6;
  border-color: #8b5cf6;
}
.scanner__btn--primary:hover:not(:disabled) {
  background-color: #7c3aed;
}

.scanner__stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background-color: #262626;
  border-radius: 0.75rem;
}

.scanner__stat {
  text-align: center;
}

.scanner__stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.scanner__stat-label {
  font-size: 0.75rem;
  color: #a3a3a3;
  margin-top: 0.25rem;
}

/*# sourceMappingURL=main.css.map */
