.cenie-virtual-onboarding {
  color: #171717;
  font-family: var(--font-primary, "Work Sans", sans-serif);
}

/* Botón lanzador: arriba a la izquierda */
.cenie-vo-launcher {
  align-items: center;
  background: transparent;
  border: 0;
  color: #171717;
  cursor: pointer;
  display: inline-flex;
  gap: 10px;
  left: 24px;
  padding: 0;
  position: fixed;
  top: 24px;
  z-index: 9000;
}

.cenie-vo-launcher.is-hidden {
  display: none;
}

.cenie-vo-launcher-icon {
  background-color: var(--color-brown, #b7b6a5);
  background-image: var(--cenie-vo-arrow-icon);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;
  display: inline-flex;
  flex-shrink: 0;
  height: 35px;
  width: 35px;
}

.cenie-vo-launcher-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.cenie-vo-launcher:hover .cenie-vo-launcher-icon,
.cenie-vo-launcher:focus-visible .cenie-vo-launcher-icon {
  background-color: #000000;
}

.cenie-vo-overlay {
  background: rgba(0, 0, 0, 0.42);
  inset: 0;
  opacity: 1;
  position: fixed;
  transition: opacity 360ms ease;
  z-index: 8998;
}

.cenie-vo-highlight {
  border: 3px solid #00a7b5;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.42), 0 10px 32px rgba(0, 0, 0, 0.22);
  pointer-events: none;
  position: absolute;
  transition:
    top 520ms cubic-bezier(0.4, 0, 0.2, 1),
    left 520ms cubic-bezier(0.4, 0, 0.2, 1),
    width 520ms cubic-bezier(0.4, 0, 0.2, 1),
    height 520ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 8999;
}

.cenie-vo-panel {
  background: #ffffff;
  border: 1px solid #171717;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  padding: 24px;
  position: fixed;
  transition:
    top 520ms cubic-bezier(0.4, 0, 0.2, 1),
    left 520ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 280ms ease;
  z-index: 9001;
}

.cenie-vo-panel.is-transitioning .cenie-vo-content {
  opacity: 0;
  transform: translateY(8px);
}

.cenie-vo-content {
  transition: opacity 280ms ease, transform 280ms ease;
}

.cenie-vo-close {
  background: transparent;
  border: 0;
  color: #171717;
  cursor: pointer;
  font-size: 28px;
  height: 32px;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 12px;
  top: 10px;
  width: 32px;
}

.cenie-vo-close:hover,
.cenie-vo-close:focus-visible {
  opacity: 0.65;
}

.cenie-vo-kicker {
  color: #007b86;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 36px 10px 0;
  text-transform: uppercase;
}

.cenie-vo-title {
  color: #171717;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 12px;
}

.cenie-vo-body {
  color: #333333;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  margin: 0 0 18px;
}

.cenie-vo-progress {
  color: #666666;
  font-size: 13px;
  margin-bottom: 18px;
}

.cenie-vo-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* Estilo de botones alineado con la web (bodybutton) */
.cenie-vo-btn {
  align-items: center;
  background: transparent;
  border: 0;
  color: #171717;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 400;
  gap: 0;
  line-height: 1.25rem;
  padding: 0;
  text-decoration: none;
  transition: color 180ms ease;
}

.cenie-vo-btn::before {
  background-color: var(--color-brown, #b7b6a5);
  background-image: var(--cenie-vo-arrow-icon);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;
  content: " ";
  display: inline-flex;
  flex-shrink: 0;
  height: 30px;
  margin-right: 0.5rem;
  transition: background-color 180ms ease;
  width: 30px;
}

.cenie-vo-btn--secondary::before {
  background-color: #ffffff;
  background-image: var(--cenie-vo-arrow-icon-light);
  border: 1px solid var(--color-brown, #b7b6a5);
}

.cenie-vo-btn--shortcut::before {
  display: none;
}

.cenie-vo-btn--launcher::before {
  display: none;
}

.cenie-vo-btn:hover::before,
.cenie-vo-btn:focus-visible::before {
  background-color: #000000;
}

.cenie-vo-btn--secondary:hover,
.cenie-vo-btn--secondary:focus-visible {
  color: #000000;
}

.cenie-vo-shortcuts {
  align-items: center;
  border-top: 1px solid #e5e5e5;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
  padding-top: 14px;
}

.cenie-vo-btn--shortcut {
  border: 1px solid var(--color-brown, #b7b6a5);
  font-size: 0.8125rem;
  justify-content: center;
  min-width: 148px;
  padding: 8px 12px;
  text-align: center;
}

.cenie-vo-btn--shortcut:hover,
.cenie-vo-btn--shortcut:focus-visible {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  .cenie-vo-btn {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .cenie-vo-btn::before {
    height: 35px;
    width: 35px;
  }
}

@media (max-width: 640px) {
  .cenie-vo-launcher {
    left: 16px;
    top: 16px;
  }

  .cenie-vo-launcher-text {
    display: none;
  }

  .cenie-vo-panel {
    bottom: 12px;
    left: 12px !important;
    max-height: calc(100vh - 24px);
    overflow: auto;
    padding: 20px;
    right: 12px;
    top: auto !important;
    width: auto !important;
  }

  .cenie-vo-actions {
    justify-content: stretch;
  }

  .cenie-vo-primary,
  .cenie-vo-secondary {
    flex: 1;
    justify-content: center;
  }

  .cenie-vo-shortcuts {
    flex-direction: column;
  }

  .cenie-vo-btn--shortcut {
    width: 100%;
  }
}
