:root {
  --bg: #050507;
  --bg-alt: #0E0E12;
  --bg-card: #0A0C10;
  --ink: #FFFFFF;
  --ink-dim: #6E7280;
  --accent: #C8FF00;
  --accent-soft: rgba(200, 255, 0, 0.12);
  --accent-glow: rgba(200, 255, 0, 0.35);
  --cyan: #1FB8E0;
  --cyan-soft: rgba(31, 184, 224, 0.15);
  --red: #FF5577;
  --line: rgba(31, 184, 224, 0.18);
  --bubble-user: #0F1418;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Geist', sans-serif;
  height: 100vh;
  overflow: hidden;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(31, 184, 224, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 184, 224, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.03 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
}

.app {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
header {
  padding: 24px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.brand { display: flex; align-items: center; gap: 14px; }

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--bg);
  font-size: 18px;
}

.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--cyan);
}

.brand-sub {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 500;
}

.status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.18em;
  font-weight: 500;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }

/* CHAT */
.chat {
  flex: 1;
  overflow-y: auto;
  padding: 32px 4px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.chat::-webkit-scrollbar { width: 4px; }
.chat::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }

.msg {
  margin-bottom: 24px;
  opacity: 0;
  animation: msgIn 0.5s ease forwards;
}

@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.msg-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

.msg-meta::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--accent);
}

.msg.user .msg-meta { color: var(--ink-dim); }
.msg.user .msg-meta::before { background: var(--ink-dim); }

.msg-content {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  font-weight: 300;
  max-width: 640px;
  white-space: pre-wrap;
}
.msg-content .hl-green {
  color: var(--accent);
  font-weight: 500;
}

.msg.ai .msg-content, .msg.admin .msg-content {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: -0.005em;
  line-height: 1.6;
}

.msg.user .msg-content {
  background: var(--bubble-user);
  padding: 12px 18px;
  border-radius: 4px;
  border-left: 2px solid var(--accent);
  font-size: 14px;
  line-height: 1.55;
  font-family: 'Geist', sans-serif;
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--accent);
  vertical-align: text-bottom;
  margin-left: 2px;
  animation: blink 0.9s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.typing-indicator {
  display: flex;
  gap: 5px;
  padding: 8px 0;
  align-items: center;
}
.typing-indicator span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: typing 1.4s infinite ease-in-out;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: scale(0.6); opacity: 0.4; }
  30% { transform: scale(1); opacity: 1; }
}

/* QUICK REPLIES */
.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  opacity: 0;
  animation: msgIn 0.5s ease 0.3s forwards;
}

.chip {
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 9px 16px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.chip:hover {
  border-color: var(--accent);
  color: var(--bg);
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

/* Botões iniciais em 2 colunas */
.initial-options { margin-top: 16px; }
.io-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.io-col { display: flex; flex-direction: column; }
.io-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.io-label-blue { color: var(--cyan); }
.io-label-green { color: var(--accent); }
.io-label .io-dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.io-list { display: flex; flex-direction: column; gap: 10px; }
.io-list .chip { width: 100%; }

/* Chip verde (coluna empresa) */
.chip-green {
  border-color: var(--accent);
  color: var(--accent);
}
.chip-green:hover {
  border-color: var(--accent);
  color: var(--bg);
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.io-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--bg-alt);
  color: var(--ink-dim);
  font-size: 13px;
  text-align: center;
  line-height: 1.5;
}

/* Botões grandes do menu inicial (Orçamento / Conhecer a Empresa) */
.io-big {
  width: 100%;
  padding: 16px 18px;
  font-size: 14.5px;
  font-weight: 600;
}

/* Botão Voltar (laranja) */
.io-voltar {
  margin-top: 14px;
  border-color: #FF9500;
  color: #FF9500;
  font-weight: 500;
}
.io-voltar:hover {
  background: #FF9500;
  border-color: #FF9500;
  color: var(--bg);
  box-shadow: 0 0 18px rgba(255,149,0,.35);
}

/* Mobile: colunas empilham */
@media (max-width: 600px) {
  .io-cols { grid-template-columns: 1fr; gap: 20px; }
}

/* CARD DE ORÇAMENTO */
.budget-card {
  margin-top: 18px;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 0 32px var(--accent-soft);
  opacity: 0;
  animation: msgIn 0.5s ease 0.2s forwards;
}

.budget-title {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 500;
}

.budget-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 300;
  margin-bottom: 16px;
}

.budget-input-row {
  display: flex;
  gap: 8px;
}
.budget-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--accent);
  padding: 12px 16px;
  border-radius: 4px;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 500;
  outline: none;
}
.budget-input:focus { border-color: var(--accent); }
.budget-skip, .budget-submit {
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.budget-skip {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  padding: 0 16px;
  font-size: 12px;
}
.budget-skip:hover { color: var(--ink); border-color: var(--ink-dim); }
.budget-submit {
  background: var(--accent);
  color: var(--bg);
  padding: 0 20px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 16px var(--accent-glow);
}
.budget-submit:hover { transform: translateY(-1px); }

/* PROMESSAS */
.promise-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
  opacity: 0;
  animation: msgIn 0.5s ease 0.5s forwards;
}
.promise {
  font-size: 10.5px;
  color: var(--cyan);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}
.promise.gold { color: var(--accent); border-color: rgba(200, 255, 0, 0.3); }

/* GALLERY */
.gallery {
  display: grid;
  /* Adapta colunas conforme largura do chat. No mobile fica 2 col, desktop 3-4 col. */
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 6px;
  margin-top: 14px;
}

.gallery-item {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #0a1419, #050a0d);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 0.1em;
  border: 1px solid var(--line);
  text-align: center;
  padding: 8px;
  transition: all 0.25s ease;
  opacity: 0;
  animation: msgIn 0.4s ease forwards;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 14px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.service-card:hover { border-color: var(--cyan); }
.service-card.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.service-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  flex-shrink: 0;
  transition: all 0.2s;
  position: relative;
}
.service-card.selected .service-check {
  background: var(--accent);
  border-color: var(--accent);
}
.service-card.selected .service-check::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid var(--bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.service-name { color: var(--ink); flex: 1; }
.service-card.selected .service-name { color: var(--accent); font-weight: 500; }

.confirm-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  align-items: center;
  justify-content: flex-end;
}
.confirm-btn {
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: 11px 22px;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 16px var(--accent-glow);
  transition: all 0.2s;
}
.confirm-btn:hover { transform: translateY(-1px); }
.confirm-btn:disabled {
  background: var(--ink-dim);
  color: var(--bg);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.5;
}
.selected-count {
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* COMMENT CARD */
.comment-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--cyan);
  border-radius: 4px;
  padding: 14px 18px;
  margin-top: 8px;
  opacity: 0;
  animation: msgIn 0.5s ease forwards;
}
.comment-stars {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.comment-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
  font-weight: 300;
  margin-bottom: 10px;
}
.comment-author {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.comment-oab {
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 0.15em;
  margin-top: 2px;
}

/* SITE LINKS */
.site-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 16px;
  margin-top: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  opacity: 0;
  animation: msgIn 0.4s ease forwards;
}
.site-link:hover {
  border-color: var(--accent);
  box-shadow: 0 0 16px var(--accent-soft);
}
.site-name { color: var(--ink); font-size: 14px; font-weight: 500; }
.site-arrow { color: var(--accent); font-size: 16px; }

/* ACTION BUTTONS */
.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 4px;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 14px;
  box-shadow: 0 0 24px var(--accent-glow);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 32px var(--accent-glow);
}
.action-btn.cyan {
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan-soft);
}
.action-btn.red {
  background: transparent;
  color: var(--red);
  border: 1px solid var(--red);
  box-shadow: 0 0 12px rgba(255, 85, 119, 0.2);
}
.action-btn.red:hover {
  background: var(--red);
  color: var(--bg);
  box-shadow: 0 0 24px rgba(255, 85, 119, 0.5);
}
.action-btn.outline-cyan {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
  box-shadow: none;
}
.action-btn.outline-cyan:hover {
  background: var(--cyan);
  color: var(--bg);
  box-shadow: 0 0 20px var(--cyan-soft);
}

/* PAYMENT CARD */
.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 20px;
  margin-top: 14px;
  box-shadow: 0 0 40px var(--accent-soft);
}
.payment-label {
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.payment-value {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
}
.payment-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.payment-actions .action-btn {
  margin-top: 0;
  flex: 1 1 auto;
  justify-content: center;
  text-align: center;
  font-size: 11.5px;
  padding: 12px 16px;
}
.payment-actions .action-btn.primary {
  flex: 1 1 100%;
  font-size: 13px;
  padding: 14px 24px;
}

/* INPUT */
.composer {
  padding: 16px 0 22px;
  border-top: 1px solid var(--line);
  opacity: 0;
  animation: fadeIn 0.8s ease 1s forwards;
}

.composer-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--cyan);
  border-radius: 4px;
  padding: 4px 4px 4px 18px;
  transition: all 0.25s ease;
}
.composer-wrap:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
}

.composer input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  padding: 12px 0;
  outline: none;
  font-weight: 300;
}
.composer input::placeholder { color: var(--ink-dim); }

.send-btn {
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: 11px 20px;
  border-radius: 3px;
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 0 16px var(--accent-glow);
}
.send-btn:hover { box-shadow: 0 0 28px var(--accent); transform: translateY(-1px); }

.composer-hint {
  font-size: 10px;
  color: var(--cyan);
  margin-top: 8px;
  letter-spacing: 0.12em;
  display: flex;
  justify-content: space-between;
  opacity: 0.6;
}

/* CAPTURA DE DADOS */
.captura-card {
  margin-top: 14px;
  background: var(--bg-card);
  border: 1px solid var(--red);
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 0 28px rgba(255, 85, 119, 0.15);
}
.captura-card .budget-title { color: var(--red); }
.captura-card input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  margin-bottom: 10px;
}
.captura-card input:focus { border-color: var(--red); }
.captura-card .captura-btn {
  width: 100%;
  background: var(--red);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 6px;
}

@keyframes fadeIn { to { opacity: 1; } }

/* MOBILE */
@media (max-width: 640px) {
  .app { padding: 0 16px; }
  header { padding: 18px 0 14px; }
  .brand-mark { width: 32px; height: 32px; font-size: 15px; }
  .brand-name { font-size: 15px; }
  .brand-sub { font-size: 9px; }
  .status { font-size: 9px; }
  .msg.ai .msg-content, .msg.admin .msg-content { font-size: 15px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .quick-replies { gap: 6px; }
  .chip { font-size: 11.5px; padding: 8px 12px; }
  .budget-card { padding: 16px; }
  .payment-value { font-size: 24px; }
  .payment-actions .action-btn { flex: 1 1 100%; }
}

/* ============== SELO + GARANTIA + WHATSAPP FLUTUANTE ============== */

.header-right { display: flex; align-items: center; gap: 16px; }

.selo-advogados {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--accent);
  background: rgba(200, 255, 0, 0.08);
  border: 1px solid rgba(200, 255, 0, 0.3);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.selo-icon { color: var(--accent); font-size: 11px; }

.garantia-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(31, 184, 224, 0.08);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: var(--cyan);
  font-weight: 500;
}
.garantia-icon {
  background: var(--accent);
  color: var(--bg);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

/* WhatsApp Flutuante */
.whats-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 100;
  text-decoration: none;
  transition: all 0.25s ease;
  animation: whatsPulse 2.5s ease-in-out infinite;
}
.whats-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}
.whats-label {
  position: absolute;
  right: 70px;
  background: var(--bg-card);
  color: var(--accent);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
  border: 1px solid var(--line);
  pointer-events: none;
}
.whats-float:hover .whats-label { opacity: 1; }

@keyframes whatsPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.7); }
}

@media (max-width: 640px) {
  .selo-advogados .selo-text { display: none; }
  .selo-advogados { padding: 5px 8px; }
  .whats-float { width: 52px; height: 52px; right: 16px; bottom: 80px; }
  .whats-label { display: none; }
  .garantia-bar { font-size: 11px; padding: 6px 10px; }
}

/* CARD DE PAGAMENTO COM PARCELAMENTO */
.payment-parcels {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  font-size: 12px;
  color: var(--cyan);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.payment-parcels b { color: var(--accent); }
.payment-pix-discount {
  color: var(--accent);
  font-weight: 500;
}

/* CAPTURA DADOS PARA PAGAMENTO */
.captura-pagamento {
  margin-top: 14px;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 0 28px rgba(200, 255, 0, 0.15);
}
.captura-pagamento .budget-title { color: var(--accent); }
.captura-pagamento input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  margin-bottom: 10px;
}
.captura-pagamento input:focus { border-color: var(--accent); }
.captura-pagamento button {
  width: 100%;
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: 14px;
  border-radius: 4px;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.captura-pagamento .small-text {
  font-size: 11px;
  color: var(--ink-dim);
  margin-top: 8px;
  text-align: center;
}
