/* ============================================================ */
/* BLOQUE: FINAL CTA v2.0                                       */
/* Burbujas de chat (✕ roja / ✔ verde) + botón dorado shimmer   */
/* Depende de: variables.css, base.css                          */
/* ============================================================ */

.final-cta {
  background: var(--bg-primary);
  overflow: hidden;
  text-align: center;
}

.final-cta__glow {
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255, 59, 48, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* === BURBUJAS DE CHAT (estilo referencia de video) === */
.final-cta__bubbles {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 620px;
  margin: 0 auto var(--space-2xl);
}

.final-cta__bubble {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: left;
  border: 1px solid;
}

.final-cta__bubble p {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.final-cta__bubble-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  font-size: var(--text-lg);
  font-weight: 800;
}

.final-cta__bubble--no {
  align-self: flex-start;
  max-width: 85%;
  background: rgba(255, 59, 48, 0.08);
  border-color: rgba(255, 59, 48, 0.4);
  border-bottom-left-radius: var(--radius-sm);
  color: #FF8A80;
  animation: bubble-wobble 4s ease-in-out infinite;
}

.final-cta__bubble--no .final-cta__bubble-icon {
  background: var(--accent-primary);
  color: #fff;
  box-shadow: 0 0 16px rgba(255, 59, 48, 0.5);
}

.final-cta__bubble--yes {
  align-self: flex-end;
  max-width: 85%;
  background: rgba(48, 209, 88, 0.08);
  border-color: rgba(48, 209, 88, 0.4);
  border-bottom-right-radius: var(--radius-sm);
  color: #7CE89A;
  animation: bubble-wobble 4s ease-in-out 2s infinite;
}

.final-cta__bubble--yes .final-cta__bubble-icon {
  background: var(--success);
  color: #0A0A0A;
  box-shadow: 0 0 16px rgba(48, 209, 88, 0.5);
}

@keyframes bubble-wobble {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

@media (prefers-reduced-motion: reduce) {
  .final-cta__bubble--no,
  .final-cta__bubble--yes { animation: none; }
}

/* === TICKET === */
.final-cta__ticket {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-xl);
  box-shadow: var(--shadow-md), 0 0 80px var(--accent-glow-strong);
}

.final-cta__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-lg);
}

.final-cta__subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto var(--space-xl);
}

.final-cta__button { margin-bottom: var(--space-lg); }

/* === BOTÓN DORADO CON SHIMMER (referencia de video) === */
.btn--gold {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #B8860B 0%, #FFD700 35%, #FFF3B0 50%, #FFD700 65%, #B8860B 100%);
  background-size: 250% 100%;
  color: #1A1200;
  font-weight: 800;
  border: none;
  box-shadow: 0 4px 28px rgba(255, 215, 0, 0.35);
  animation: gold-shimmer 2.8s linear infinite;
}

.btn--gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 40px rgba(255, 215, 0, 0.55);
}

.btn--gold:active { transform: translateY(0); }

@keyframes gold-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 250% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .btn--gold { animation: none; }
}

.final-cta__divider {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.final-cta__trust {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.final-cta__alt {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.final-cta__alt a {
  color: var(--whatsapp);
  font-weight: 600;
  text-decoration: none;
}

.final-cta__alt a:hover { text-decoration: underline; }

@media (max-width: 767px) {
  .final-cta__ticket { padding: var(--space-2xl) var(--space-lg); }
  .final-cta__trust { flex-direction: column; gap: var(--space-xs); align-items: center; }
  .final-cta__bubble--no,
  .final-cta__bubble--yes { max-width: 100%; }
}
