/* =====================================================================
   CDE SHARED — estilos comunes de las landings Tailwind (default/fmc/ftc/fesumin)
   El embudo multi-paso vive en cde-funnel.css
   ===================================================================== */

body {
  background-color: #fffdf9;
  color: #1b1b1b;
}

.spinner {
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-left-color: #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: cde-spin 1s linear infinite;
}

@keyframes cde-spin {
  to {
    transform: rotate(360deg);
  }
}

.cde-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
}

.form-locked {
  opacity: 0.6;
  pointer-events: none;
}

.benefit-card {
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(1200px 200px at 50% 0%, rgba(217, 165, 102, 0.35), transparent 55%),
    linear-gradient(135deg, rgba(138, 46, 30, 0.1), rgba(217, 165, 102, 0.12));
  pointer-events: none;
}

.benefit-card > * {
  position: relative;
  z-index: 1;
}

#confetti-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.faq-icon {
  transition: transform 0.2s ease;
}

.faq-item.open .faq-icon,
.faq-toggle[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

/* Trust bar — línea editorial, sin tarjetas ni iconos */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0;
  text-align: center;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #6b2a1a;
  line-height: 1.3;
  padding: 0 0.85rem;
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(107, 42, 26, 0.22);
}

@media (max-width: 639px) {
  .trust-strip {
    flex-direction: column;
    gap: 0.55rem;
  }

  .trust-item + .trust-item {
    border-left: 0;
  }
}

.cde-video-frame > .yt-embed,
.yt-embed {
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
