html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden; /* Evita el desbordamiento horizontal */
}

body {
  height: calc(var(--real-vh, 1vh) * 100);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.cta-button {
  background: linear-gradient(to right, #0f8e24 0%, #14b52f 20%, #15d53d 50%, #14b52f 80%, #0f8e24 100%);
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  border: solid;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  font-family: 'Arial Black', sans-serif;
  margin-bottom: 20px;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background: linear-gradient(to right, #13b62d, #34f267, #13b62d);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

.click-pointer {
  width: 60px;
  height: auto;
  margin-top: -20px;
  margin-left: 160px; /* Mueve el dedo hacia la derecha del botón */
  animation: tapUpDown 2.5s linear infinite; /* Movimiento constante y fluido */
  filter: drop-shadow(2px 2px 2px #000);
}

/* Animación de toque continuo con velocidad constante */
@keyframes tapUpDown {
  0% {
    transform: translateY(0); /* Empieza en la posición original */
  }
  50% {
    transform: translateY(-20px); /* Subir hasta -20px (ajustado para bajar menos) */
  }
  100% {
    transform: translateY(0); /* Vuelve a la posición original */
  }
}
