/* ============================================
   FORMAS DE PAGO — Lucas & Lola
   Self-contained · scope .llfp-
   Fonts: Poppins (display) + Plus Jakarta Sans (body)
   Mismo sistema visual que "Cambios y devoluciones"
   Enqueue: functions.php → ll-formas-de-pago
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

.llfp {
  --plum: #781562;
  --plum-dark: #5e0f4d;
  --ink: #1A1A1A;
  --muted: #6b6b6b;
  --rose: #fcb6b6;
  --rose-soft: #fdeef0;
  --paper: #fbf7f4;
  --line: #ece4e9;
  --white: #ffffff;

  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  line-height: 1.6;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-font-smoothing: antialiased;
}
.llfp * { box-sizing: border-box; }
.llfp h1, .llfp h2, .llfp h3, .llfp h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
}
.llfp p { margin: 0; }

/* ---------- HERO ---------- */
.llfp-hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
  padding: 50px 0 60px;
}
.llfp-hero__eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--plum);
  background: var(--rose-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.llfp-hero__title {
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.llfp-hero__title span { color: var(--plum); }
.llfp-hero__text {
  font-size: 17px;
  color: var(--muted);
  margin: 20px 0 32px;
  max-width: 480px;
}
.llfp-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.llfp-hero__card {
  background: linear-gradient(135deg, var(--rose-soft) 0%, var(--paper) 100%);
  border-radius: 24px;
  padding: 34px;
}
.llfp-hero__card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 18px;
}
.llfp-hero__points { list-style: none; padding: 0; margin: 0; }
.llfp-hero__points li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--ink);
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.llfp-hero__points li:last-child { border-bottom: none; }
.llfp-hero__points svg { width: 20px; height: 20px; stroke: var(--plum); flex-shrink: 0; margin-top: 1px; }

/* ---------- BUTTONS ---------- */
.llfp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
}
.llfp-btn--primary { background: var(--plum); color: #fff; }
.llfp-btn--primary:hover { background: var(--plum-dark); color: #fff; }
.llfp-btn--ghost { background: transparent; color: var(--plum); border-color: var(--plum); }
.llfp-btn--ghost:hover { background: var(--plum); color: #fff; }

/* ---------- SECTION TITLE ---------- */
.llfp-sec {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.llfp-sec-title {
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 12px;
}
.llfp-sec-text { font-size: 16px; color: var(--muted); }

.llfp-block { margin-bottom: 72px; }

/* ---------- MÉTODOS (3 cards) ---------- */
.llfp-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.llfp-method {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px;
}
.llfp-method__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--rose-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.llfp-method__icon svg { width: 28px; height: 28px; stroke: var(--plum); fill: none; }
.llfp-method__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.llfp-method__name { font-family: 'Poppins', sans-serif; font-size: 19px; font-weight: 600; color: var(--plum); }
.llfp-method__tag {
  font-family: 'Poppins', sans-serif;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .03em; text-transform: uppercase;
  color: var(--plum);
  background: var(--rose-soft);
  padding: 4px 10px;
  border-radius: 999px;
}
.llfp-method__text { font-size: 14.5px; color: var(--muted); }

/* ---------- CALLOUTS (2-up) ---------- */
.llfp-callouts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.llfp-callout {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  display: flex;
  gap: 18px;
}
.llfp-callout__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--rose-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.llfp-callout__icon svg { width: 24px; height: 24px; stroke: var(--plum); fill: none; }
.llfp-callout__body { flex: 1; min-width: 0; }
.llfp-callout__title { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.llfp-callout__text { font-size: 15px; color: var(--muted); margin-bottom: 14px; }
.llfp-callout__note {
  background: var(--rose-soft);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--plum-dark);
  font-weight: 500;
}

/* ---------- BANNER (seguridad / tienda física) ---------- */
.llfp-banner {
  display: flex;
  align-items: center;
  gap: 22px;
  background: linear-gradient(120deg, var(--rose-soft) 0%, var(--paper) 100%);
  border-radius: 18px;
  padding: 30px 36px;
}
.llfp-banner__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.llfp-banner__icon svg { width: 28px; height: 28px; stroke: var(--plum); fill: none; }
.llfp-banner__title { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.llfp-banner__text { font-size: 15px; color: var(--muted); }
.llfp-banner__text a { color: var(--plum); font-weight: 600; text-decoration: none; }
.llfp-banner__text a:hover { text-decoration: underline; }

/* ---------- FAQ ---------- */
.llfp-faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; }
.llfp-faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.llfp-faq summary {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.llfp-faq summary::-webkit-details-marker { display: none; }
.llfp-faq summary::after {
  content: '+';
  font-size: 22px;
  color: var(--plum);
  flex-shrink: 0;
  transition: transform .2s;
}
.llfp-faq details[open] summary::after { content: '−'; }
.llfp-faq__answer { font-size: 14px; color: var(--muted); padding-top: 12px; }

/* ---------- FINAL CTA ---------- */
.llfp-final {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  background: var(--rose-soft);
  border-radius: 22px;
  padding: 34px 40px;
  margin-bottom: 60px;
}
.llfp-final__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--plum);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.llfp-final__icon svg { width: 30px; height: 30px; stroke: #fff; fill: none; }
.llfp-final__title { font-size: 22px; font-weight: 600; margin-bottom: 6px; }
.llfp-final__text { font-size: 15px; color: var(--muted); }
.llfp-final__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================
   RESPONSIVE — mobile-first (76% traffico)
   ============================================ */
@media (max-width: 900px) {
  .llfp-hero { grid-template-columns: 1fr; gap: 30px; padding: 30px 0 40px; }
  .llfp-hero__title { font-size: 34px; }
  .llfp-methods { grid-template-columns: 1fr; gap: 16px; }
  .llfp-callouts { grid-template-columns: 1fr; }
  .llfp-faq__grid { grid-template-columns: 1fr; }
  .llfp-final { grid-template-columns: 1fr; text-align: center; gap: 18px; padding: 30px 24px; }
  .llfp-final__icon { margin: 0 auto; }
  .llfp-final__cta { justify-content: center; }
  .llfp-block { margin-bottom: 56px; }
  .llfp-sec-title { font-size: 24px; }
}
@media (max-width: 480px) {
  .llfp-hero__title { font-size: 28px; }
  .llfp-hero__cta { flex-direction: column; }
  .llfp-hero__cta .llfp-btn { justify-content: center; }
  .llfp-banner { flex-direction: column; text-align: center; }
  .llfp-banner__icon { margin: 0 auto; }
}