/* ============================================================
   RESET & TOKENS
============================================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; -webkit-tap-highlight-color:transparent; }

:root {
  --gold:       #C49A2A;
  --gold-light: #f9f5ec;
  --black:      #111111;
  --gray-1:     #444444;
  --gray-2:     #777777;
  --gray-3:     #aaaaaa;
  --gray-4:     #dddddd;
  --gray-5:     #f5f5f5;
  --white:      #ffffff;
  --border:     #ececec;
  --radius-sm:  10px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-pill:999px;
  --font:       'Inter', sans-serif;
  --topbar-h:   76px;
  --content-max: 1180px;
}

html, body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  min-height: 100vh;
  scroll-behavior: smooth;
}

button, input, textarea { font-family: var(--font); }

/* ============================================================
   APP SHELL — sem phone-shell, ocupa a janela inteira
============================================================ */
#app { min-height: 100vh; background: var(--white); }

.view { display: none; }
.view.active { display: block; }

/* ============================================================
   TOPBAR
============================================================ */
.topbar {
  position: sticky; top: 0; z-index: 50;
  height: var(--topbar-h);
  display: none;
  align-items: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.topbar.show { display: flex; }
.topbar-inner {
  width: 100%; max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.topbar-brand { display: flex; align-items: center; cursor: pointer; flex-shrink: 0; }
.topbar-logo { height: 48px; width: auto; display: block; }

.steps { display: flex; align-items: center; gap: 0; }
.step-pill {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 500; color: var(--gray-3);
  padding: 0 18px; position: relative;
}
.step-pill::after {
  content: ''; width: 28px; height: 1px; background: var(--border);
  margin-left: 18px;
}
.step-pill:last-child::after { display: none; }
.step-pill .dot {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid var(--gray-4);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 600; color: var(--gray-3);
  flex-shrink: 0; transition: all 0.2s;
}
.step-pill.active { color: var(--black); }
.step-pill.active .dot { border-color: var(--black); color: var(--black); }
.step-pill.done { color: var(--gray-1); }
.step-pill.done .dot { border-color: var(--gold); background: var(--gold); color: var(--white); }
.step-pill.done .dot svg { width: 10px; height: 10px; }

.topbar-link {
  flex-shrink: 0;
  background: none; border: none; cursor: pointer;
  font-size: 13px; font-weight: 500; color: var(--gray-1);
  display: flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  transition: border-color 0.15s, color 0.15s;
}
.topbar-link:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 880px) {
  .steps { display: none; }
  .topbar-inner { padding: 0 20px; }
}
@media (max-width: 540px) {
  .topbar-link span { display: none; }
}

/* ============================================================
   BUTTONS (sistema compartilhado)
============================================================ */
.btn {
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.12s, background 0.15s, color 0.15s, border-color 0.15s;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; letter-spacing: 0.1px;
  border: none; padding: 0 26px; height: 50px;
}
.btn:active { transform: scale(0.98); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-black  { background: var(--black); color: var(--white); }
.btn-black:hover:not(:disabled) { background: #2a2a2a; }
.btn-outline { background: var(--white); color: var(--gold); border: 1px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-ghost { background: none; color: var(--gray-1); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--gray-3); }
.btn-full { width: 100%; }

/* ============================================================
   LANDING
============================================================ */
#view-landing { background: var(--gray-5); }

.landing-mobile { display: flex; flex-direction: column; }
.landing-desktop { display: none; }

.lm-hero { height: 56vh; min-height: 360px; position: relative; overflow: hidden; }
.lm-hero img.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; }
.lm-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(245,245,245,0) 72%, var(--gray-5) 100%); }
.lm-body { padding: 30px 24px 44px; background: var(--gray-5); }

.lm-hero-brand {
  position: absolute; top: 0; left: 0; right: 0; z-index: 2;
  display: flex; align-items: center;
  padding: max(18px, env(safe-area-inset-top)) 22px 36px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0));
}
.hero-brand-logo { height: 78px; width: auto; display: block; }

.headline { font-size: 27px; font-weight: 400; color: var(--black); line-height: 1.3; letter-spacing: -0.3px; margin-bottom: 22px; }

.intro-lead { font-size: 15px; font-weight: 400; color: var(--black); line-height: 1.65; }
.intro-list { list-style: none; margin: 2px 0 10px; }
.intro-list li { font-size: 15px; font-weight: 700; color: var(--gold); text-transform: uppercase; line-height: 1.8; letter-spacing: 0.2px; }
.intro-list li::before { content: '•  '; }
.intro-list li.more { color: var(--gray-2); font-weight: 500; text-transform: none; letter-spacing: 0; }
.intro-list li.more::before { content: none; }
.intro-tail { font-size: 15px; font-weight: 300; color: var(--black); line-height: 1.65; max-width: 480px; }

.btn-main {
  display: block; width: 100%; height: 56px; margin: 30px 0 36px;
  border-radius: var(--radius-pill); border: none; background: var(--gold);
  font-family: var(--font); font-size: 13px; font-weight: 600; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--white); cursor: pointer;
  transition: opacity 0.18s, transform 0.12s;
}
.btn-main:hover { opacity: 0.88; }
.btn-main:active { transform: scale(0.98); }

.access-label { display: block; font-size: 14.5px; font-weight: 600; color: var(--black); margin-bottom: 13px; }
.access-row { display: flex; gap: 10px; align-items: center; }
.access-input {
  flex: 1; height: 54px; padding: 0 20px;
  border: 1px solid var(--border); border-radius: var(--radius-pill);
  font-family: var(--font); font-size: 14px; color: var(--black);
  background: var(--white); transition: border-color 0.15s;
}
.access-input::placeholder { color: var(--gold); opacity: 0.7; }
.access-input:focus { outline: none; border-color: var(--gold); }
.access-btn { width: 54px; height: 54px; border-radius: var(--radius-pill); border: 1px solid var(--border); background: var(--white); display: flex; align-items: center; justify-content: center; color: var(--gold); cursor: pointer; flex-shrink: 0; transition: background 0.15s, opacity 0.15s; }
.access-btn svg { width: 18px; height: 18px; }
.access-btn:hover { background: var(--gold-light); }

@media (min-width: 980px) {
  .landing-mobile { display: none; }
  .landing-desktop { display: flex; height: 100vh; }

  .ld-media { width: 50%; position: relative; overflow: hidden; flex-shrink: 0; }
  .ld-media img.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
  .ld-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(245,245,245,0) 78%, var(--gray-5) 100%); }
  .ld-media .hero-brand-logo { height: 114px; }

  .ld-panel { flex: 1; display: flex; align-items: center; justify-content: center; overflow-y: auto; background: var(--gray-5); }
  .ld-content { width: 100%; max-width: 600px; padding: 0 56px; }

  .ld-headline { font-size: 30px; font-weight: 400; color: var(--black); line-height: 1.35; letter-spacing: -0.2px; margin-bottom: 28px; }

  .ld-intro .intro-lead, .ld-intro .intro-list li, .ld-intro .intro-tail { font-size: 16px; }
}
@media (min-width: 1400px) {
  .ld-content { max-width: 640px; padding: 0 72px; }
  .ld-headline { font-size: 33px; }
}

/* ============================================================
   BOOKING — layout fluido com painel resumo
============================================================ */
.booking-shell {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 40px 40px 96px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 980px) {
  .booking-shell { grid-template-columns: 1fr; padding: 24px 20px 64px; gap: 24px; }
}

.booking-main { display: flex; flex-direction: column; gap: 28px; min-width: 0; }

.step-block {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  background: var(--white);
}
.step-block.locked { display: none; }
.step-block.revealed { animation: blockIn 0.45s ease; }
@keyframes blockIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

@media (max-width: 600px) { .step-block { padding: 22px; } }

.block-head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.block-num {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: var(--black);
  flex-shrink: 0;
}
.block-title { font-size: 18px; font-weight: 600; color: var(--black); letter-spacing: -0.2px; }
.block-sub { font-size: 12.5px; font-weight: 300; color: var(--gray-2); margin-top: 2px; }

/* ── Serviços ── */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px; }
.svc-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex; flex-direction: column; gap: 12px;
  cursor: pointer; transition: border-color 0.18s;
  background: var(--white);
}
.svc-card.active { border-color: var(--gold); }
.svc-card:hover:not(.active) { border-color: var(--gray-4); }
.svc-icon { width: 38px; height: 38px; border-radius: var(--radius-sm); background: var(--gray-5); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.svc-icon svg { width: 18px; height: 18px; stroke: var(--gray-3); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.svc-card.active .svc-icon { background: var(--gold-light); }
.svc-card.active .svc-icon svg { stroke: var(--gold); }
.svc-name { font-size: 14px; font-weight: 500; color: var(--black); margin-bottom: 3px; }
.svc-desc { font-size: 12px; font-weight: 300; color: var(--gray-2); line-height: 1.45; }
.svc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 4px; }
.svc-price { font-size: 14px; font-weight: 500; color: var(--gray-3); }
.svc-price.active { color: var(--gold); }
.svc-price.free { color: var(--gray-3); }
.svc-dur { font-size: 11px; font-weight: 300; color: var(--gray-3); }

/* ── Profissional — cartão com foto + glass effect ── */
.doctor-card { display: flex; flex-direction: column; }

.doc-media {
  position: relative; height: 360px; flex-shrink: 0;
  border-radius: var(--radius-xl); overflow: hidden;
  background: var(--gray-5);
}
.doc-photo-wrap { position: absolute; inset: 0; }
.doc-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; animation: docPhotoIn 0.35s ease; }
.doc-photo-fallback {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 64px; font-weight: 300; color: var(--gray-3); background: var(--gold-light);
}
@keyframes docPhotoIn { from { opacity: 0; transform: scale(1.02); } to { opacity: 1; transform: none; } }
.doc-media::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.12) 42%, rgba(0,0,0,0) 64%);
}
.doc-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.22); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 16px; cursor: pointer; transition: background 0.15s;
}
.doc-nav:hover { background: rgba(255,255,255,0.36); }
.doc-nav.prev { left: 14px; }
.doc-nav.next { right: 14px; }
.doc-info { position: absolute; left: 22px; bottom: 56px; right: 70px; z-index: 2; }
.doc-name { font-size: 21px; font-weight: 500; color: var(--white); letter-spacing: -0.2px; margin-bottom: 2px; }
.doc-spec { font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,0.85); }
.doc-dots { position: absolute; left: 22px; bottom: 36px; z-index: 2; display: flex; gap: 5px; }
.doc-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.4); transition: background 0.15s, width 0.15s; }
.doc-dot.active { background: var(--gold); width: 14px; border-radius: 3px; }

.doc-glass {
  position: relative; z-index: 2; margin: -36px 14px 0;
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(17,17,17,0.07);
  padding: 30px 22px 26px;
}
@media (max-width: 600px) { .doc-glass { margin: -36px 0 0; padding: 26px 18px 22px; } }

.doc-step.hidden { display: none; }
.doc-step.entering { animation: docStepIn 0.32s ease; }
@keyframes docStepIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.doc-back {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font); font-size: 12.5px; font-weight: 500; color: var(--gray-2);
  margin-bottom: 16px; padding: 0;
}
.doc-back:hover { color: var(--gold); }

.cal-empty { font-size: 12.5px; font-weight: 300; color: var(--gray-3); padding: 6px 0 4px; }

.cal-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.cal-title { font-size: 11px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-3); }
.cal-nav { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 500; color: var(--black); }
.cal-nav button { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border); background: var(--white); cursor: pointer; font-size: 13px; color: var(--gray-1); }
.cal-nav button:hover { border-color: var(--gray-3); }

.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-label { font-size: 10px; font-weight: 500; color: var(--gray-3); text-align: center; padding-bottom: 6px; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 400; color: var(--gray-4); border-radius: 50%; cursor: default; }
.cal-day.has-slot { color: var(--black); cursor: pointer; background: rgba(255,255,255,0.5); }
.cal-day.has-slot:hover { background: var(--white); }
.cal-day.active { background: var(--black); color: var(--white); }
.cal-day.empty { visibility: hidden; }

.time-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.time-title { font-size: 11px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-3); }
.time-count { font-size: 12px; font-weight: 400; color: var(--gold); }
.time-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 8px; }
.time-slot { padding: 11px 0; text-align: center; border: 1px solid var(--border); border-radius: var(--radius-pill); font-size: 13px; font-weight: 400; color: var(--gray-1); cursor: pointer; transition: border-color 0.15s, background 0.15s; background: rgba(255,255,255,0.5); }
.time-slot:hover { border-color: var(--gray-3); background: var(--white); }
.time-slot.active { background: var(--black); border-color: var(--black); color: var(--white); }
.time-slot.off { color: var(--gray-4); border-color: var(--border); cursor: not-allowed; text-decoration: line-through; }

@media (min-width: 760px) {
  .doctor-card { flex-direction: row; align-items: stretch; min-height: 460px; }
  .doc-media { width: 46%; height: auto; flex-shrink: 0; }
  .doc-glass { flex: 1; margin: 0 0 0 -64px; padding: 40px 38px 34px 88px; display: flex; flex-direction: column; justify-content: flex-start; }
  .doc-info { right: 22px; bottom: 30px; }
  .doc-dots { bottom: 14px; }
}

/* ── Dados pessoais ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field.full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

.field-label { display: block; font-size: 10.5px; font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase; color: var(--gray-3); margin-bottom: 7px; }
.field-input {
  width: 100%; height: 48px; padding: 0 16px;
  border: 1px solid var(--border); border-radius: var(--radius-md);
  font-family: var(--font); font-size: 14px; color: var(--black);
  background: var(--white); transition: border-color 0.15s;
}
.field-input:focus { outline: none; border-color: var(--gold); }
textarea.field-input { height: auto; padding: 12px 16px; resize: vertical; min-height: 84px; }
.field-hint { font-size: 11px; font-weight: 300; color: var(--gray-3); margin-top: 6px; }

.form-submit { display: flex; justify-content: flex-end; margin-top: 26px; }
@media (max-width: 560px) { .form-submit .btn { width: 100%; } }

/* ── Resumo (sticky) ── */
.summary-card {
  position: sticky; top: calc(var(--topbar-h) + 24px);
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 26px; background: var(--white);
}
@media (max-width: 980px) { .summary-card { position: static; } }

.summary-label { font-size: 11px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gray-3); margin-bottom: 18px; }
.summary-row { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--gray-5); }
.summary-row:last-of-type { border-bottom: none; }
.summary-icon { width: 30px; height: 30px; border-radius: var(--radius-sm); background: var(--gray-5); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.summary-icon svg { width: 14px; height: 14px; stroke: var(--gray-3); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.summary-text { min-width: 0; }
.summary-key { font-size: 10.5px; font-weight: 500; letter-spacing: 0.6px; text-transform: uppercase; color: var(--gray-3); margin-bottom: 2px; }
.summary-val { font-size: 13.5px; font-weight: 500; color: var(--black); }
.summary-val.muted { color: var(--gray-3); font-weight: 400; }

.summary-total { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--border); }
.summary-total-label { font-size: 13px; font-weight: 500; color: var(--black); }
.summary-total-val { font-size: 18px; font-weight: 600; color: var(--gold); }

/* ============================================================
   CONFIRMAÇÃO
============================================================ */
#view-confirm.active { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 60px 20px; background: var(--white); }
.confirm-box { width: 100%; max-width: 480px; text-align: center; }
.confirm-check {
  width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 50%;
  background: var(--gold-light); display: flex; align-items: center; justify-content: center;
}
.confirm-check svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.confirm-title { font-size: 24px; font-weight: 600; color: var(--black); letter-spacing: -0.3px; margin-bottom: 10px; }
.confirm-sub { font-size: 14px; font-weight: 300; color: var(--gray-2); line-height: 1.6; margin-bottom: 28px; }
.confirm-sub strong { font-weight: 500; color: var(--black); }

.detail-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 8px 20px; text-align: left; margin-bottom: 22px; }
.detail-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--gray-5); }
.detail-row:last-child { border-bottom: none; }
.detail-row svg { width: 18px; height: 18px; stroke: var(--gray-3); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.detail-text { flex: 1; min-width: 0; }
.detail-label { font-size: 10.5px; font-weight: 500; letter-spacing: 0.6px; text-transform: uppercase; color: var(--gray-3); margin-bottom: 2px; }
.detail-value { font-size: 13.5px; font-weight: 500; color: var(--black); }
.detail-badge { font-size: 13px; font-weight: 500; color: var(--gold); }
.confirm-note { font-size: 12px; font-weight: 300; color: var(--gray-3); line-height: 1.6; margin-bottom: 26px; }
.confirm-actions .btn { width: 100%; }

/* ============================================================
   MODAL — acesso por e-mail
============================================================ */
.modal-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(17,17,17,0.45); display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.active { display: flex; }
.modal-card { background: var(--white); border-radius: var(--radius-lg); width: 100%; max-width: 400px; padding: 30px 26px; }
.modal-title { font-size: 17px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.modal-sub { font-size: 13px; font-weight: 300; color: var(--gray-2); line-height: 1.55; margin-bottom: 20px; }
.modal-actions { display: flex; gap: 10px; margin-top: 18px; }
.modal-actions .btn { flex: 1; }

/* ============================================================
   TOAST
============================================================ */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: #fff; padding: 11px 22px; border-radius: 999px; font-size: 13px;
  z-index: 9999; white-space: nowrap; max-width: 90vw; text-align: center;
}


/* ============================================================
   MEUS AGENDAMENTOS
============================================================ */
#view-conta.active { max-width: var(--content-max); margin: 0 auto; padding: 44px 40px 96px; }
.btn-sm { height: 38px; padding: 0 18px; font-size: 13px; }
.conta-box { width: 100%; }
.conta-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 32px; }
.conta-lista { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
@media (min-width: 760px) {
  .conta-lista { grid-template-columns: 1fr 1fr; }
}

.conta-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 2px rgba(17,17,17,0.03), 0 10px 24px -10px rgba(17,17,17,0.08);
  padding: 24px 26px;
  text-align: left;
}
.conta-item-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.conta-item-data-wrap { display: flex; align-items: center; gap: 14px; }
.conta-item-icon { width: 36px; height: 36px; padding: 8px; box-sizing: border-box; border-radius: 10px; background: var(--gold-light); stroke: var(--gold); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.conta-item-data { font-size: 15px; font-weight: 600; color: var(--black); text-transform: capitalize; line-height: 1.3; }
.conta-item-hora { font-size: 13px; color: var(--gray-2); margin-top: 1px; }

.conta-status { font-size: 11px; font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase; padding: 5px 12px; border-radius: var(--radius-pill); white-space: nowrap; }
.conta-status.s-confirmado { background: var(--gold-light); color: var(--gold); }
.conta-status.s-pendente_pagamento { background: var(--gray-5); color: var(--gray-2); }
.conta-status.s-cancelado { background: var(--gray-5); color: var(--gray-3); }
.conta-status.s-concluido { background: var(--black); color: var(--white); }
.conta-status.s-nao_compareceu { background: var(--gray-5); color: var(--gray-3); }

.conta-item-body { display: flex; flex-direction: column; gap: 12px; padding-top: 16px; border-top: 1px solid var(--gray-5); }
.conta-item-linha { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-1); }
.conta-item-linha svg { width: 16px; height: 16px; stroke: var(--gray-3); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.conta-item-valor { margin-left: auto; font-weight: 500; color: var(--black); }

.conta-item-acoes { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--gray-5); }
.conta-item-acoes .btn-sm { color: var(--gray-2); }
.conta-item-acoes .btn-sm:hover { color: var(--black); border-color: var(--gray-3); }
.conta-vazio { text-align: center; color: var(--gray-3); font-size: 14px; padding: 48px 0; grid-column: 1 / -1; }

@media (max-width: 600px) {
  #view-conta.active { padding: 28px 18px 64px; }
  .conta-header { flex-direction: column; gap: 16px; }
  .conta-lista { gap: 16px; }
  .conta-item { padding: 20px 18px; }
}