/* Componentes Reutilizables: Botones, Tarjetas, Animaciones y Formas */

/* --- BOTÓN CTA NARANJA Y ANIMACIÓN PULSE --- */
.btn-orange-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  padding: 15px 20px;
  background-color: var(--color-orange);
  color: var(--color-text-dark);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
  margin-top: 3rem;
  gap: 6px;
}

.btn-orange-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-pulse);
}

.btn-orange-card p:first-child {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: center;
}

.btn-orange-card p:last-child {
  font-size: 18px;
  line-height: 1.2;
  color: var(--color-text-dark);
  text-align: center;
}

.efecto-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.98);
    box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.7);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 15px rgba(255, 152, 0, 0);
  }
  100% {
    transform: scale(0.98);
    box-shadow: 0 0 0 0 rgba(255, 152, 0, 0);
  }
}

/* --- CONTENEDOR DE FORMULARIO SENDPULSE --- */
.form-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
}
