.cta-demo {
  position: fixed;
  top: 50%;
  right: -1px;
  transform: translate(0, -50%);
  z-index: 9999;
  
  /* Fondo y forma */
  background: linear-gradient(135deg, #ff6a00, #ff2d00);
  border-radius: 20px 0 0 20px;
  box-shadow: 0 8px 25px rgba(255, 60, 0, 0.4);
  
  transition: all 0.3s ease;
  animation: pulseDemo 2s infinite;
}

.cta-demo a {
  display: flex;
  /* Alineación en una sola línea */
  flex-direction: row-reverse; 
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 10px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  /* font-weight: 600; */
  letter-spacing: 1px;
  
  /* EVITA QUE SE SEPARE EL TEXTO */
  white-space: nowrap;

  /* TEXTO DE ABAJO HACIA ARRIBA */
  writing-mode: vertical-rl;
  transform: rotate(180deg); 
}

.cta-demo a i {
  font-size: 13px;
  /* El icono se hereda rotado, así que se verá derecho respecto al texto */
}

/* Hover suave */
.cta-demo:hover {
   transform: translateY(-50%) translateX(-2px);
  box-shadow: 0 12px 30px rgba(255, 60, 0, 0.6);
   /* padding: 25px 12px 20px 20px; */
}

@keyframes pulseDemo {
  0% { box-shadow: 0 8px 25px rgba(255, 60, 0, 0.4), 0 0 0 0 rgba(255, 60, 0, 0.7); }
  70% { box-shadow: 0 8px 25px rgba(255, 60, 0, 0.4), 0 0 0 15px rgba(255, 60, 0, 0); }
  100% { box-shadow: 0 8px 25px rgba(255, 60, 0, 0.4), 0 0 0 0 rgba(255, 60, 0, 0); }
}

/* Móvil */
@media (max-width: 768px) {
    .cta-demo {
  right: -5px;
}

  .cta-demo a {
    padding: 20px 8px;
    font-size: 13px;
    gap: 8px;
  }
}