/* Variáveis escopadas ao widget (não vazam pro site). */
.chat-widget-container,
#toastContainer {
  --primary: #0066cc;
  --primary-dark: #004b99;
  --primary-light: #e6f2ff;
  --accent: #00b4d8;
  --accent-dark: #0096b7;
  --success: #10b981;
  --success-light: #d1fae5;
  --warning: #f59e0b;
  --danger: #ef4444;
  --bg-dark: #0a1628;
  --bg-panel: #ffffff;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.2);
  --shadow-glow-blue: 0 0 30px rgba(0, 102, 204, 0.25);
  --shadow-glow-green: 0 0 30px rgba(0, 180, 216, 0.2);
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 18px;
  --radius-xl: 22px;
  --radius-full: 50px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* Ponto pulsante (usado no cabeçalho "Consultores online"). */
.pulse-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--success);
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse-dot 2s infinite;
  vertical-align: middle;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(16, 185, 129, 0);
  }
}

/* ==================== CHAT WIDGET ==================== */
.chat-widget-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99999;
  font-family: var(--font);
}

/* FAB Button - estilo Nexservice */
.chat-fab {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066cc 0%, #004b99 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
  transition: all var(--transition);
  position: relative;
  z-index: 2;
  animation: float-gentle 5s ease-in-out infinite;
}

.chat-fab::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: ripple-fab 2.5s ease-out infinite;
  pointer-events: none;
}

@keyframes ripple-fab {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.chat-fab:hover {
  transform: scale(1.07);
  box-shadow:
    0 16px 44px rgba(0, 102, 204, 0.5),
    0 0 50px rgba(0, 180, 216, 0.3);
  background: linear-gradient(135deg, #0077e6 0%, #005cb8 100%);
}

.chat-fab:active {
  transform: scale(0.93);
  transition: 0.12s ease;
}

.chat-fab i {
  font-size: 27px;
  color: #fff;
  transition: transform var(--transition);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.chat-fab.active i {
  transform: rotate(90deg);
}

.chat-fab .fab-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 24px;
  height: 24px;
  background: #ef4444;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
  animation: badge-pop 0.5s var(--bounce);
}

@keyframes float-gentle {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes badge-pop {
  0% {
    transform: scale(0);
  }

  60% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

/* Painel Principal */
.chat-panel {
  position: absolute;
  bottom: 84px;
  right: 0;
  width: 420px;
  max-width: calc(100vw - 40px);
  height: 600px;
  max-height: calc(100vh - 150px);
  background: var(--bg-panel);
  border-radius: var(--radius-xl);
  box-shadow:
    var(--shadow-xl),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
}

.chat-panel.open {
  transform: scale(1);
  opacity: 1;
  pointer-events: all;
}

/* Header - estilo Nexservice */
.chat-header {
  background: #0a1628;
  padding: 18px 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.chat-header::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -25%;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(0, 180, 216, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.chat-header::after {
  content: "";
  position: absolute;
  bottom: -35%;
  left: -15%;
  width: 140px;
  height: 140px;
  background: radial-gradient(
    circle,
    rgba(0, 102, 204, 0.25) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.chat-header-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0, 180, 216, 0.5);
  overflow: hidden;
}

.chat-header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-header-avatar .status-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 13px;
  height: 13px;
  background: #10b981;
  border-radius: 50%;
  border: 2.5px solid #0a1628;
  animation: pulse-dot 2s infinite;
}

.chat-header-info {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}

.chat-header-info h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #fff;
}

.chat-header-info span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.chat-header-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.chat-header-close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(90deg);
}

/* Tabs */
.chat-tabs {
  display: flex;
  background: #fff;
  border-bottom: 1px solid var(--border);
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  flex-shrink: 0;
}

.chat-tabs::-webkit-scrollbar {
  display: none;
}

.chat-tab {
  flex: 1;
  min-width: fit-content;
  padding: 13px 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition);
  position: relative;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  letter-spacing: -0.01em;
}

.chat-tab i {
  font-size: 14px;
}

.chat-tab:hover {
  color: var(--primary);
  background: rgba(0, 102, 204, 0.03);
}

.chat-tab.active {
  color: var(--primary);
  font-weight: 700;
}

.chat-tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 45%;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
  transition: all var(--transition);
}

.chat-tab .tab-badge {
  font-size: 0.62rem;
  background: #ef4444;
  color: #fff;
  padding: 2px 7px;
  border-radius: 20px;
  font-weight: 700;
}

.chat-tab .tab-highlight {
  font-size: 0.62rem;
  background: #f59e0b;
  color: #fff;
  padding: 2px 7px;
  border-radius: 20px;
  font-weight: 700;
  animation: pulse-badge 1.8s infinite;
}

@keyframes pulse-badge {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

/* Corpo */
.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fafbfc;
  scroll-behavior: smooth;
}

.chat-body::-webkit-scrollbar {
  width: 4px;
}

.chat-body::-webkit-scrollbar-track {
  background: transparent;
}

.chat-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

/* Mensagens */
.message {
  display: flex;
  gap: 10px;
  animation: msg-in 0.35s var(--bounce);
  max-width: 92%;
}

.message.bot {
  align-self: flex-start;
}

.message.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

@keyframes msg-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.msg-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
}

.message.bot .msg-avatar {
  background: linear-gradient(135deg, #0066cc, #00b4d8);
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.message.user .msg-avatar {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.msg-bubble {
  padding: 10px 15px;
  border-radius: 18px;
  font-size: 0.85rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  word-break: break-word;
}

.message.bot .msg-bubble {
  background: #fff;
  color: var(--text-primary);
  border-bottom-left-radius: 6px;
  box-shadow: var(--shadow-xs);
  border: 1px solid #f1f5f9;
}

.message.user .msg-bubble {
  background: var(--primary);
  color: #fff;
  border-bottom-right-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 102, 204, 0.25);
}

.msg-time {
  font-size: 0.65rem;
  color: #94a3b8;
  margin-top: 3px;
  padding: 0 4px;
}

.message.user .msg-time {
  text-align: right;
}

/* Cards de Ação (Planos, Demo, etc.) */
.action-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.action-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-xs);
}

.action-card:hover {
  border-color: var(--primary);
  box-shadow:
    var(--shadow-sm),
    0 0 0 3px rgba(0, 102, 204, 0.05);
  transform: translateY(-2px);
}

.action-card .ac-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ac-icon.blue {
  background: #e6f2ff;
  color: #0066cc;
}

.ac-icon.teal {
  background: #e0f7fa;
  color: #00b4d8;
}

.ac-icon.green {
  background: #d1fae5;
  color: #10b981;
}

.ac-icon.amber {
  background: #fef3c7;
  color: #f59e0b;
}

.action-card .ac-info {
  flex: 1;
  min-width: 0;
}

.action-card .ac-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.action-card .ac-info span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.action-card .ac-arrow {
  color: #cbd5e1;
  font-size: 14px;
  transition: all var(--transition);
}

.action-card:hover .ac-arrow {
  color: var(--primary);
  transform: translateX(3px);
}

/* Planos / Pricing */
.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.pricing-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.06);
  background: #f8faff;
}

.pricing-card .popular-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.pricing-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.pricing-card .price {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0a1628;
  letter-spacing: -0.02em;
}

.pricing-card .price span {
  font-size: 0.7rem;
  font-weight: 500;
  color: #64748b;
}

.pricing-card .features-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  font-size: 0.75rem;
  color: #64748b;
  text-align: left;
}

.pricing-card .features-list li {
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pricing-card .features-list li i {
  color: #10b981;
  font-size: 11px;
}

.btn-plan {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.btn-plan:hover {
  background: #0052a3;
  box-shadow: 0 4px 14px rgba(0, 102, 204, 0.4);
}

.btn-plan.outline {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-plan.outline:hover {
  background: #f0f7ff;
}

/* Demonstração */
.demo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 10px 0;
  width: 100%;
}

.demo-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066cc, #00b4d8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.35);
  animation: float-gentle 4s ease-in-out infinite;
}

.demo-section h4 {
  font-weight: 700;
  color: #1e293b;
  font-size: 1rem;
}

.demo-section p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
}

.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.35);
  border: none;
  cursor: pointer;
}

.btn-demo:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 102, 204, 0.5);
  background: #0052a3;
}

.btn-demo i {
  font-size: 16px;
}

/* WhatsApp */
.whatsapp-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 10px 0;
  width: 100%;
}

.whatsapp-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  animation: float-gentle 3.5s ease-in-out infinite;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
  background: #1ebe57;
}

/* Formulário de Contato Rápido */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.contact-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-size: 0.85rem;
  font-family: inherit;
  transition: all var(--transition);
  background: #fff;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.contact-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.06);
}

.contact-form .btn-submit {
  padding: 12px;
  border-radius: 25px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-form .btn-submit:hover {
  background: #0052a3;
  box-shadow: 0 6px 18px rgba(0, 102, 204, 0.35);
  transform: translateY(-1px);
}

/* Input área (chat ao vivo) */
.chat-input-area {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: #fff;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.chat-input-area input {
  flex: 1;
  padding: 11px 16px;
  border-radius: 25px;
  border: 1.5px solid var(--border);
  font-size: 0.85rem;
  font-family: inherit;
  transition: all var(--transition);
  background: #f8fafc;
  letter-spacing: -0.01em;
}

.chat-input-area input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.06);
}

.chat-input-area .btn-send {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0, 102, 204, 0.3);
}

.chat-input-area .btn-send:hover {
  background: #0052a3;
  transform: scale(1.07);
  box-shadow: 0 6px 18px rgba(0, 102, 204, 0.4);
}

/* Toast */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #1e293b;
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 999999;
  letter-spacing: -0.01em;
  animation:
    toast-in 0.4s var(--bounce),
    toast-out 0.3s ease 2.8s forwards;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast.success {
  background: #10b981;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toast-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* Responsivo */
/* Honeypot anti-spam: escondido de gente, robôs preenchem. */
.chat-body .lead-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Consentimento (LGPD) no formulário de lead */
.chat-body .lead-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
  cursor: pointer;
}

.chat-body .lead-consent input {
  width: auto;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Dica/aviso centralizado no corpo do chat */
.chat-body .chat-hint {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
  padding: 12px 10px;
}

.chat-body .chat-hint a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.chat-body .chat-hint a:hover {
  text-decoration: underline;
}

/* Selo de trial no card de plano */
.chat-body .plan-trial {
  display: inline-block;
  background: var(--success-light);
  color: var(--success);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

@media (max-width: 480px) {
  .chat-panel {
    width: calc(100vw - 16px);
    right: -2px;
    height: 540px;
    max-height: calc(100vh - 130px);
    border-radius: var(--radius-lg);
    bottom: 76px;
  }

  .chat-fab {
    width: 54px;
    height: 54px;
  }

  .chat-fab i {
    font-size: 23px;
  }

  .chat-tab {
    font-size: 0.68rem;
    padding: 10px 5px;
  }

  .chat-tab i {
    font-size: 12px;
  }

  .chat-header {
    padding: 14px 16px;
  }

  .chat-header-info h3 {
    font-size: 0.9rem;
  }

  .demo-hero h1 {
    font-size: 1.6rem;
  }
}
