/* =============================================
   BTS WORLD TOUR — TICKETMASTER CLONE
   ============================================= */

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

:root {
  --blue:       #0046BE;
  --blue-dark:  #003399;
  --blue-light: #e8f0ff;
  --white:      #ffffff;
  --gray-50:    #f8f8f8;
  --gray-100:   #f0f0f0;
  --gray-200:   #e0e0e0;
  --gray-400:   #999999;
  --gray-600:   #666666;
  --gray-800:   #333333;
  --dark:       #1a1a2e;
  --green:      #00A550;
  --green-light:#e6f7ee;
  --red:        #d32f2f;
  --red-light:  #fdecea;
  --gold:       #f5c518;
  --radius:     8px;
  --radius-lg:  12px;
  --shadow:     0 2px 8px rgba(0,0,0,0.1);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.12);
  --transition: all 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.5;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, select, textarea { font-family: inherit; outline: none; }

/* ─── UTILITIES ─────────────────────────────── */
.container { max-width: 900px; margin: 0 auto; padding: 0 16px; }
.hidden { display: none !important; }

/* ─── NAVBAR ─────────────────────────────────── */
.navbar {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.nav-inner {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 28px; display: block; }
.nav-logo svg { height: 28px; width: auto; }
.nav-menu-btn {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
}
.nav-user-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-user-link {
  color: white;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: var(--transition);
}
.nav-user-link:hover { background: rgba(255,255,255,0.1); }

/* ─── HERO BANNER ─────────────────────────────── */
.hero {
  width: 100%;
  position: relative;
  background: #111;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-overlay {
  display: none;
}

/* ─── MAIN LAYOUT ─────────────────────────────── */
.main-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px 60px;
}

/* ─── EVENT TITLE BLOCK ──────────────────────── */
.event-title-block {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 24px 0 16px;
  box-shadow: var(--shadow);
}
.event-category {
  font-size: 12px;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.event-title-block h1 {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}
.event-date-venue {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--gray-600);
}
.event-date-venue span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─── SECTION HEADER ─────────────────────────── */
.section-header {
  padding: 20px 0 12px;
}
.section-header h2 {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-left: 4px solid var(--blue);
  padding-left: 12px;
}

/* ─── DATE CARDS (VENDA GERAL) ──────────────── */
.dates-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.date-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.date-card:last-child { border-bottom: none; }
.date-card:hover { background: var(--gray-50); }
.date-card-icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: white;
  font-style: italic;
  flex-shrink: 0;
  letter-spacing: -1px;
  font-family: Georgia, serif;
}
.date-card-info { flex: 1; min-width: 0; }
.date-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}
.date-card-sub {
  font-size: 13px;
  color: var(--gray-600);
}
.date-card-status {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.badge-green {
  background: var(--green-light);
  color: var(--green);
}
.badge-green::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.badge-red {
  background: var(--red-light);
  color: var(--red);
}
.badge-red::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.date-card-arrow {
  width: 32px;
  height: 32px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
  transition: var(--transition);
}
.date-card:hover .date-card-arrow { background: var(--blue-dark); }

/* ─── SECTORS IMAGE ──────────────────────────── */
.sectors-image-block {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.sectors-image-block img {
  width: 100%;
  display: block;
}

/* ─── ABOUT BTS ──────────────────────────────── */
.about-block {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.about-block p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 12px;
}
.about-block p:last-child { margin-bottom: 0; }
.about-read-more {
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-top: 4px;
}
.about-extra { display: none; }
.about-extra.open { display: block; }

/* ─── VIDEO ──────────────────────────────────── */
.video-block {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── MAP ────────────────────────────────────── */
.map-block {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.map-block iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}
.map-venue-info {
  padding: 16px 20px;
  border-top: 1px solid var(--gray-100);
}
.map-venue-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}
.map-venue-address { font-size: 13px; color: var(--gray-600); }
.map-venue-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  font-size: 13px;
  color: var(--gray-600);
}
.map-venue-rating .stars { color: var(--gold); letter-spacing: -1px; }

/* ─── FAQ ────────────────────────────────────── */
.faq-block {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover { background: var(--blue-light); }
.faq-chevron {
  font-size: 18px;
  color: var(--blue);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ─── CART STICKY BAR ────────────────────────── */
.cart-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--blue);
  color: white;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.cart-bar.visible { transform: translateY(0); }
.cart-bar-info { }
.cart-bar-count { font-size: 13px; opacity: 0.85; }
.cart-bar-total { font-size: 20px; font-weight: 800; }
.cart-bar-btn {
  background: white;
  color: var(--blue);
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}
.cart-bar-btn:hover { background: var(--gray-100); }

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--dark);
  color: white;
  padding: 40px 16px;
  margin-top: 40px;
}
.footer-inner { max-width: 900px; margin: 0 auto; }
.footer-section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.footer-links li a {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.footer-links li a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 12px;
  color: var(--gray-400);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
.footer-payments { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.payment-chip {
  padding: 3px 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

/* ─── TOAST ──────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--dark);
  color: white;
  border-radius: var(--radius);
  min-width: 260px;
  max-width: 360px;
  pointer-events: all;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--blue);
  animation: slideIn 0.3s ease;
}
.toast.success { border-left-color: var(--green); }
.toast.error   { border-left-color: var(--red); }
.toast.warning { border-left-color: var(--gold); }
@keyframes slideIn { from { transform: translateX(110%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOut { from { opacity: 1; } to { opacity: 0; transform: translateX(110%); } }
.toast.toast-exit { animation: slideOut 0.3s ease forwards; }
.toast-content { flex: 1; }
.toast-title { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.toast-msg { font-size: 12px; color: rgba(255,255,255,0.7); }

/* ─── SPINNER ─────────────────────────────────── */
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── MODAL ──────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
@media (min-width: 600px) { .modal-overlay { align-items: center; } }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: white;
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 32px 24px;
  transform: translateY(40px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
@media (min-width: 600px) {
  .modal { border-radius: var(--radius-lg); transform: scale(0.95); }
  .modal-overlay.open .modal { transform: scale(1); }
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header { text-align: center; margin-bottom: 24px; }
.modal-icon { font-size: 48px; margin-bottom: 8px; }
.modal-title { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.modal-desc { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
.modal-actions { display: flex; gap: 10px; margin-top: 24px; }
.modal-actions .btn { flex: 1; }

/* ─── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: white;
}
.btn-primary:hover { background: var(--blue-dark); }
.btn-outline {
  background: white;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue-light); }
.btn-danger {
  background: var(--red);
  color: white;
}
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-lg { padding: 14px 28px; font-size: 15px; }

/* ─── FORMS ──────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--gray-800); }
.form-input {
  width: 100%;
  padding: 12px 14px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  color: var(--gray-800);
  font-size: 14px;
  transition: var(--transition);
}
.form-input:focus { border-color: var(--blue); background: white; }
.form-input::placeholder { color: var(--gray-400); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-600);
  cursor: pointer;
}
.form-check input[type="checkbox"] { accent-color: var(--blue); width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; }
.form-hint { font-size: 12px; color: var(--gray-400); margin-top: 4px; }
.form-error { font-size: 12px; color: var(--red); margin-top: 4px; }

/* ─── AUTH PAGE ──────────────────────────────── */
.auth-page {
  min-height: 100vh;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}
.auth-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
}
.auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.auth-logo svg { height: 32px; }
.auth-title { font-size: 22px; font-weight: 800; text-align: center; color: var(--dark); margin-bottom: 6px; }
.auth-subtitle { font-size: 14px; color: var(--gray-600); text-align: center; margin-bottom: 24px; }
.auth-tabs {
  display: flex;
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 4px;
  margin-bottom: 24px;
}
.auth-tab {
  flex: 1;
  padding: 9px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}
.auth-tab.active { background: var(--blue); color: white; }
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  font-size: 12px;
  color: var(--gray-400);
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
.auth-footer { text-align: center; margin-top: 20px; font-size: 13px; color: var(--gray-600); }
.auth-footer a { color: var(--blue); font-weight: 600; }
.auth-alert {
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.auth-alert.success { background: var(--green-light); color: var(--green); }
.auth-alert.error { background: var(--red-light); color: var(--red); }

/* ─── CHECKOUT PAGE ──────────────────────────── */
.checkout-page { background: var(--gray-50); min-height: 100vh; padding-bottom: 40px; }
.checkout-header {
  background: var(--blue);
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.checkout-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 0 auto;
}
.checkout-steps .active { color: white; font-weight: 700; }
.checkout-steps .sep { font-size: 10px; }
.checkout-inner { max-width: 900px; margin: 0 auto; padding: 24px 16px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 340px; gap: 20px; align-items: start; }
.checkout-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.checkout-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
}
.step-num {
  width: 26px;
  height: 26px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.checkout-card-head-title { font-size: 15px; font-weight: 700; color: var(--dark); }
.checkout-card-body { padding: 20px; }

/* payment methods */
.payment-methods { display: flex; flex-direction: column; gap: 10px; }
.payment-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.payment-method.selected { border-color: var(--blue); background: var(--blue-light); }
.payment-method input[type="radio"] { accent-color: var(--blue); width: 17px; height: 17px; }
.payment-method-icon { font-size: 22px; }
.payment-method-info { flex: 1; }
.payment-method-name { font-size: 14px; font-weight: 600; color: var(--dark); }
.payment-method-desc { font-size: 12px; color: var(--gray-600); }
.badge-blue { background: var(--blue-light); color: var(--blue); padding: 2px 8px; border-radius: 10px; font-size: 11px; font-weight: 700; }

/* order summary */
.order-summary { background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; position: sticky; top: 76px; }
.order-summary-head { padding: 16px 20px; border-bottom: 1px solid var(--gray-100); font-size: 14px; font-weight: 700; color: var(--dark); }
.order-items { }
.order-item { display: flex; justify-content: space-between; align-items: flex-start; padding: 14px 20px; border-bottom: 1px solid var(--gray-100); font-size: 14px; gap: 12px; }
.order-item-name { font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.order-item-meta { font-size: 12px; color: var(--gray-600); }
.order-item-price { font-weight: 700; color: var(--blue); white-space: nowrap; }
.order-totals { padding: 14px 20px; }
.order-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--gray-600); padding: 5px 0; }
.order-row.total { font-size: 17px; font-weight: 800; color: var(--dark); padding-top: 10px; border-top: 2px solid var(--gray-200); margin-top: 4px; }
.order-row.discount { color: var(--green); }

/* PIX */
.pix-box {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  margin-top: 14px;
}
.pix-qr {
  width: 160px;
  height: 160px;
  background: white;
  border-radius: var(--radius);
  margin: 12px auto;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pix-qr canvas { width: 100% !important; height: 100% !important; }
.pix-code-row { display: flex; gap: 8px; margin-top: 12px; }
.pix-code-input {
  flex: 1;
  padding: 10px 12px;
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 12px;
  color: var(--gray-600);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* card fields */
.card-fields { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; }
.card-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.installments-select {
  width: 100%;
  padding: 12px 14px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  color: var(--gray-800);
  font-size: 14px;
  cursor: pointer;
}
.installments-select option { background: white; }

/* pix progress */
.pix-progress-bar {
  width: 100%;
  height: 4px;
  background: var(--gray-200);
  border-radius: 4px;
  margin-top: 14px;
  overflow: hidden;
}
.pix-progress-fill {
  height: 100%;
  background: var(--blue);
  border-radius: 4px;
  width: 0%;
  transition: width 1s linear;
}

/* ─── ACCOUNT PAGE ───────────────────────────── */
.account-page { background: var(--gray-50); min-height: 100vh; padding-bottom: 40px; }
.account-inner { max-width: 900px; margin: 0 auto; padding: 24px 16px; }
.account-grid { display: grid; grid-template-columns: 240px 1fr; gap: 20px; align-items: start; }
.account-sidebar-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 16px;
  position: sticky;
  top: 76px;
}
.account-profile-header {
  background: var(--blue);
  padding: 24px 20px;
  text-align: center;
}
.profile-avatar {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.2);
  border: 3px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: white;
}
.profile-name { font-size: 15px; font-weight: 700; color: white; }
.profile-email { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 3px; }
.account-nav { }
.account-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer;
  transition: var(--transition);
}
.account-nav-item:last-child { border-bottom: none; }
.account-nav-item:hover { background: var(--gray-50); color: var(--dark); }
.account-nav-item.active { color: var(--blue); background: var(--blue-light); font-weight: 700; }
.account-nav-item.danger { color: var(--red); }
.account-nav-item.danger:hover { background: var(--red-light); }
.nav-icon { font-size: 18px; width: 22px; }
.account-panel { display: none; }
.account-panel.active { display: block; }
.panel-header { margin-bottom: 20px; }
.panel-title { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.panel-desc { font-size: 14px; color: var(--gray-600); }

/* stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.stat-card {
  background: white;
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-value { font-size: 28px; font-weight: 800; color: var(--blue); line-height: 1; }
.stat-label { font-size: 12px; color: var(--gray-600); margin-top: 4px; }

/* tickets */
.my-tickets { display: flex; flex-direction: column; gap: 12px; }
.my-ticket-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  transition: var(--transition);
}
.my-ticket-card:hover { box-shadow: var(--shadow-lg); }
.ticket-band { width: 6px; flex-shrink: 0; }
.ticket-body {
  flex: 1;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.ticket-info { flex: 1; min-width: 180px; }
.ticket-event-name { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.ticket-event-sub { font-size: 13px; color: var(--gray-600); }
.ticket-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 12px; }
.ticket-meta-item { }
.ticket-meta-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); margin-bottom: 2px; }
.ticket-meta-value { font-size: 14px; font-weight: 600; color: var(--dark); }
.ticket-qr-block { text-align: center; flex-shrink: 0; }
.ticket-qr {
  width: 80px;
  height: 80px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ticket-qr canvas { width: 100% !important; height: 100% !important; }
.ticket-id { font-size: 10px; color: var(--gray-400); margin-top: 4px; font-family: monospace; }
.ticket-actions { display: flex; gap: 8px; margin-top: 10px; }
.empty-state {
  text-align: center;
  padding: 60px 24px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.empty-icon { font-size: 56px; margin-bottom: 12px; }
.empty-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.empty-desc { font-size: 14px; color: var(--gray-600); margin-bottom: 20px; }

/* breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--gray-400); }

/* ─── TICKET SELECTION SECTION ───────────────── */
.ticket-selection-section {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.ticket-sector-card {
  border-bottom: 1px solid var(--gray-100);
  padding: 20px;
  transition: var(--transition);
}
.ticket-sector-card:last-child { border-bottom: none; }
.ticket-sector-card:hover { background: var(--gray-50); }
.ticket-sector-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.sector-color-dot {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
}
.sector-name { font-size: 15px; font-weight: 700; color: var(--dark); }
.sector-prices {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.sector-price-item { }
.sector-price-label { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.sector-price-value { font-size: 18px; font-weight: 800; color: var(--dark); }
.sector-price-installments { font-size: 11px; color: var(--gray-400); }
.sector-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 6px 10px;
}
.qty-btn {
  width: 28px;
  height: 28px;
  background: var(--blue);
  color: white;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  line-height: 1;
}
.qty-btn:hover { background: var(--blue-dark); }
.qty-value { font-size: 16px; font-weight: 700; min-width: 20px; text-align: center; color: var(--dark); }
.half-check {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--gray-600);
  cursor: pointer;
}
.half-check input { accent-color: var(--blue); width: 15px; height: 15px; }

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 700px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .account-grid { grid-template-columns: 1fr; }
  .account-sidebar-card { position: static; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .card-field-row { grid-template-columns: 1fr; }
  .ticket-body { flex-direction: column; }
  .auth-card { padding: 28px 20px; }
  .hero img { height: auto; }
}

/* ═══════════════════════════════════════════════
   REFACTOR v2 — NEW COMPONENTS
   ═══════════════════════════════════════════════ */

/* ─── FORM VALIDATION STATES ─────────────────── */
.form-input.valid {
  border-color: var(--green);
  background: #f0fdf4;
}
.form-input.invalid {
  border-color: var(--red);
  background: #fff5f5;
}
.field-feedback {
  font-size: 12px;
  margin-top: 4px;
  min-height: 16px;
  transition: all 0.2s ease;
}
.field-feedback.field-error { color: var(--red); }
.field-feedback.field-ok    { color: var(--green); }

/* ─── PASSWORD STRENGTH ──────────────────────── */
.pw-strength-wrap {
  margin-top: 6px;
}
.pw-strength-track {
  height: 4px;
  background: var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 4px;
}
.pw-strength-fill {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  transition: width 0.35s ease, background 0.35s ease;
}
.pw-strength-fill.pw-1 { background: var(--red);   width: 20%; }
.pw-strength-fill.pw-2 { background: #f97316;       width: 40%; }
.pw-strength-fill.pw-3 { background: var(--gold);   width: 60%; }
.pw-strength-fill.pw-4 { background: #84cc16;       width: 80%; }
.pw-strength-fill.pw-5 { background: var(--green);  width: 100%; }
.pw-strength-label {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
}

/* ─── SKELETON LOADERS ───────────────────────── */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius);
}
.skeleton-title { height: 20px; width: 60%; margin-bottom: 10px; }
.skeleton-text  { height: 14px; width: 100%; margin-bottom: 8px; }
.skeleton-card  { padding: 20px; background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* ─── NAV AVATAR (SMALL) ─────────────────────── */
.nav-avatar-sm {
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.25);
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.nav-user-link {
  color: white;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
  text-decoration: none;
}
.nav-user-link:hover { background: rgba(255,255,255,0.12); }
.nav-logout-btn {
  font-size: 12px;
  padding: 6px 12px;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.4);
  background: transparent;
}
.nav-logout-btn:hover { background: rgba(255,255,255,0.1); color: white; }

/* ─── TOAST IMPROVEMENTS ─────────────────────── */
.toast-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.9;
}
.toast-icon svg { width: 100%; height: 100%; }
.toast-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  cursor: pointer;
  padding: 2px 4px;
  flex-shrink: 0;
  transition: color 0.15s;
}
.toast-close:hover { color: white; }

/* ─── BUTTON STATES ──────────────────────────── */
.btn-success-state {
  background: var(--green) !important;
  color: white !important;
  opacity: 1 !important;
}
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ─── TICKET SECTOR CARD (v2) ────────────────── */
.ticket-sector-card {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  display: flex;
  transition: box-shadow 0.2s ease;
}
.ticket-sector-card:hover { box-shadow: var(--shadow-lg); }
.ticket-sector-card.urgent { border: 1.5px solid #fde68a; }
.sector-color-strip {
  width: 5px;
  flex-shrink: 0;
}
.sector-card-body {
  flex: 1;
  padding: 18px 20px;
}
.sector-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.sector-name { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 3px; }
.sector-desc { font-size: 13px; color: var(--gray-600); }
.sector-avail { flex-shrink: 0; }
.avail-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 12px;
  white-space: nowrap;
}
.avail-ok       { background: var(--green-light); color: var(--green); }
.avail-low      { background: #fef3c7; color: #92400e; }
.avail-critical { background: var(--red-light); color: var(--red); }
.sector-prices {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
}
.sector-price-col {
  flex: 1;
  padding: 12px 16px;
  border-right: 1px solid var(--gray-200);
  transition: background 0.2s;
}
.sector-price-col:last-child { border-right: none; }
.sector-price-col.active { background: var(--blue-light); }
.sector-price-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-400); margin-bottom: 4px; font-weight: 600; }
.sector-price-value { font-size: 20px; font-weight: 800; color: var(--dark); line-height: 1.2; }
.sector-price-inst  { font-size: 11px; color: var(--gray-400); margin-top: 2px; }
.sector-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.sector-add-btn { min-width: 100px; }
.sector-add-btn:disabled { opacity: 0.4; }

/* half toggle */
.half-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}
.half-toggle input { display: none; }
.half-toggle-track {
  width: 36px;
  height: 20px;
  background: var(--gray-200);
  border-radius: 10px;
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s;
}
.half-toggle-track::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 14px; height: 14px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.half-toggle input:checked + .half-toggle-track { background: var(--blue); }
.half-toggle input:checked + .half-toggle-track::after { transform: translateX(16px); }
.half-toggle-label { font-size: 13px; color: var(--gray-600); font-weight: 500; }

/* qty controls (v2) */
.qty-controls {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
}
.qty-btn {
  width: 36px;
  height: 36px;
  background: var(--gray-50);
  color: var(--blue);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  font-size: 16px;
  flex-shrink: 0;
}
.qty-btn:hover:not(:disabled) { background: var(--blue-light); }
.qty-btn:disabled { color: var(--gray-200); cursor: default; }
.qty-value {
  min-width: 36px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  padding: 0 4px;
}

/* sector in-cart indicator */
.sector-in-cart {
  margin-top: 12px;
  padding: 10px 14px;
  background: var(--green-light);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.remove-link {
  background: none;
  border: none;
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

/* ─── CART BAR (v2) ──────────────────────────── */
.cart-bar-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.cart-bar-item {
  font-size: 11px;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 4px;
}
.cart-bar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── MY TICKET CARD (v2) ────────────────────── */
.my-ticket-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  transition: box-shadow 0.2s;
  margin-bottom: 12px;
}
.my-ticket-card:hover { box-shadow: var(--shadow-lg); }
.my-ticket-band { width: 6px; flex-shrink: 0; }
.my-ticket-body { flex: 1; padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.my-ticket-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.my-ticket-event-name { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 3px; }
.my-ticket-event-sub  { font-size: 13px; color: var(--gray-600); }
.my-ticket-meta {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}
.my-ticket-meta-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); margin-bottom: 2px; font-weight: 600; }
.my-ticket-meta-value { font-size: 14px; font-weight: 600; color: var(--dark); }
.my-ticket-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 4px;
  border-top: 1px solid var(--gray-100);
  flex-wrap: wrap;
}
.my-ticket-qr-wrap { text-align: center; flex-shrink: 0; }
.my-ticket-qr {
  width: 80px;
  height: 80px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}
.my-ticket-qr-id { font-size: 9px; color: var(--gray-400); margin-top: 4px; font-family: monospace; letter-spacing: 0.05em; }
.my-ticket-btns { display: flex; gap: 8px; flex-wrap: wrap; }

/* ─── ORDER HISTORY (v2) ─────────────────────── */
.order-history-list { display: flex; flex-direction: column; gap: 10px; }
.order-history-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  transition: box-shadow 0.2s;
}
.order-history-card:hover { box-shadow: var(--shadow-lg); }
.order-history-id   { font-weight: 700; color: var(--dark); margin-bottom: 3px; font-size: 14px; }
.order-history-meta { font-size: 12px; color: var(--gray-400); margin-bottom: 8px; }
.order-history-items { display: flex; flex-wrap: wrap; gap: 6px; }
.order-history-item-badge {
  font-size: 11px;
  background: var(--blue-light);
  color: var(--blue);
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}
.order-history-right { text-align: right; flex-shrink: 0; }
.order-history-total { font-size: 20px; font-weight: 800; color: var(--blue); margin-bottom: 6px; }

/* ─── EMPTY STATE (v2) ───────────────────────── */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.empty-state-icon { margin-bottom: 16px; display: flex; justify-content: center; }
.empty-state-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.empty-state-desc  { font-size: 14px; color: var(--gray-600); max-width: 320px; margin: 0 auto; line-height: 1.7; }

/* ─── PROFILE FORM ACTIONS ───────────────────── */
.profile-form-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

/* ─── PIX MODAL (v2) ─────────────────────────── */
.pix-timer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}
#pix-timer-label {
  font-size: 12px;
  color: var(--gray-400);
  transition: color 0.3s, font-weight 0.3s;
}
#pix-countdown {
  font-size: 13px;
  font-weight: 700;
  font-family: monospace;
  color: var(--dark);
}
.pix-info-box {
  background: var(--green-light);
  border: 1.5px solid #a3d9b8;
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.pix-info-icon {
  background: var(--green);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 6px;
  border-radius: 4px;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.pix-info-title { font-weight: 700; color: #1a6b3c; margin-bottom: 4px; font-size: 14px; }
.pix-info-desc  { font-size: 13px; color: #2d7a4a; line-height: 1.7; }
.pix-icon {
  background: var(--green);
  color: white;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.card-icon {
  background: var(--blue);
  color: white;
  font-size: 8px;
  font-weight: 800;
  padding: 3px 5px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* ─── ORDER ITEM DOT ─────────────────────────── */
.order-item-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ─── BADGE GOLD ─────────────────────────────── */
.badge-gold {
  background: #fef3c7;
  color: #92400e;
}
.badge-gold::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f59e0b;
  flex-shrink: 0;
}

/* ─── SUCCESS MODAL ──────────────────────────── */
.success-detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 5px 0;
  border-bottom: 1px solid var(--gray-100);
}
.success-detail-row:last-child { border-bottom: none; }
.success-detail-label { color: var(--gray-600); }
.success-detail-value { font-weight: 600; color: var(--dark); }

/* ─── RESPONSIVE v2 ──────────────────────────── */
@media (max-width: 700px) {
  .sector-prices { flex-direction: row; }
  .my-ticket-meta { grid-template-columns: 1fr 1fr; }
  .my-ticket-actions { flex-direction: column; align-items: flex-start; }
  .sector-controls { gap: 8px; }
  .profile-form-actions { flex-direction: column; }
  .order-history-card { flex-direction: column; }
  .order-history-right { text-align: left; }
  .cart-bar { padding: 10px 16px; }
  .cart-bar-total { font-size: 18px; }
}
@media (max-width: 480px) {
  .ticket-sector-card { flex-direction: column; }
  .sector-color-strip { width: 100%; height: 5px; }
  .auth-card { border-radius: 0; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
}
