/* ============================================
   PELUQUERÍA CANINA — Lucas & Lola
   Self-contained · scope .llpc-
   Fonts: Poppins (display) + Plus Jakarta Sans (body)
   Mismo sistema visual que las páginas funcionales (.llcd / .llfp)
   Enqueue: functions.php → ll-peluqueria-canina
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

.llpc {
  --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;
}
.llpc * { box-sizing: border-box; }
.llpc h1, .llpc h2, .llpc h3, .llpc h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
}
.llpc p { margin: 0; }

/* ---------- HERO ---------- */
.llpc-hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
  padding: 50px 0 60px;
}
.llpc-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;
}
.llpc-hero__title { font-size: 46px; font-weight: 600; letter-spacing: -0.5px; }
.llpc-hero__title span { color: var(--plum); }
.llpc-hero__text { font-size: 17px; color: var(--muted); margin: 20px 0 32px; max-width: 480px; }
.llpc-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.llpc-hero__card {
  background: linear-gradient(135deg, var(--rose-soft) 0%, var(--paper) 100%);
  border-radius: 24px; padding: 34px;
}
.llpc-hero__card-title { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 600; color: var(--plum); margin-bottom: 18px; }
.llpc-hero__points { list-style: none; padding: 0; margin: 0; }
.llpc-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);
}
.llpc-hero__points li:last-child { border-bottom: none; }
.llpc-hero__points svg { width: 20px; height: 20px; stroke: var(--plum); fill: none; flex-shrink: 0; margin-top: 1px; }

/* ---------- BUTTONS ---------- */
.llpc-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;
}
.llpc-btn--primary { background: var(--plum); color: #fff; }
.llpc-btn--primary:hover { background: var(--plum-dark); color: #fff; }
.llpc-btn--ghost { background: transparent; color: var(--plum); border-color: var(--plum); }
.llpc-btn--ghost:hover { background: var(--plum); color: #fff; }

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

/* ---------- BENEFICIOS (3 cards) ---------- */
.llpc-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.llpc-benefit {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 18px; padding: 28px 24px; text-align: center;
}
.llpc-benefit__icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--rose-soft);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.llpc-benefit__icon svg { width: 26px; height: 26px; stroke: var(--plum); fill: none; }
.llpc-benefit__title { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 600; color: var(--plum); margin-bottom: 8px; }
.llpc-benefit__text { font-size: 14px; color: var(--muted); }

/* ---------- CHECKLIST PANEL (servicios / cuándo conviene) ---------- */
.llpc-checklist {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 18px; padding: 32px 34px;
}
.llpc-checklist__title { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 600; color: var(--plum); margin-bottom: 20px; }
.llpc-checklist ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 30px;
}
.llpc-checklist li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 15px; color: var(--ink);
}
.llpc-checklist svg { width: 19px; height: 19px; stroke: var(--plum); fill: none; flex-shrink: 0; margin-top: 2px; }

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

/* ---------- LOCAL MADRID (bloque de conversión) ---------- */
.llpc-local {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px;
  align-items: center;
  background: linear-gradient(120deg, var(--rose-soft) 0%, var(--paper) 100%);
  border-radius: 22px; padding: 44px;
}
.llpc-local__title { font-size: 26px; font-weight: 600; margin-bottom: 10px; }
.llpc-local__text { font-size: 15px; color: var(--muted); margin-bottom: 22px; }
.llpc-local__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.llpc-local__card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; padding: 26px 28px;
}
.llpc-local__row { display: flex; align-items: flex-start; gap: 13px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.llpc-local__row:last-child { border-bottom: none; }
.llpc-local__row svg { width: 20px; height: 20px; stroke: var(--plum); fill: none; flex-shrink: 0; margin-top: 2px; }
.llpc-local__label { font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); margin-bottom: 2px; }
.llpc-local__value { font-size: 15px; color: var(--ink); }
.llpc-local__value a { color: var(--plum); text-decoration: none; font-weight: 600; }
.llpc-local__value a:hover { text-decoration: underline; }

/* ---------- FAQ ---------- */
.llpc-faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; }
.llpc-faq details { border-bottom: 1px solid var(--line); padding: 16px 0; }
.llpc-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;
}
.llpc-faq summary::-webkit-details-marker { display: none; }
.llpc-faq summary::after { content: '+'; font-size: 22px; color: var(--plum); flex-shrink: 0; transition: transform .2s; }
.llpc-faq details[open] summary::after { content: '−'; }
.llpc-faq__answer { font-size: 14px; color: var(--muted); padding-top: 12px; }

/* ---------- FINAL CTA ---------- */
.llpc-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;
}
.llpc-final__icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--plum);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.llpc-final__icon svg { width: 30px; height: 30px; stroke: #fff; fill: none; }
.llpc-final__title { font-size: 22px; font-weight: 600; margin-bottom: 6px; }
.llpc-final__text { font-size: 15px; color: var(--muted); }
.llpc-final__cta { display: flex; gap: 12px; flex-wrap: wrap; }

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

/* ---------- SEDES (hub principal → Madrid / Málaga) ---------- */
.llpc-sedes { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.llpc-sede {
  background: linear-gradient(135deg, var(--rose-soft) 0%, var(--paper) 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 32px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.llpc-sede__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.llpc-sede__icon svg { width: 26px; height: 26px; stroke: var(--plum); fill: none; }
.llpc-sede__city { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.llpc-sede__addr { font-size: 14.5px; color: var(--muted); margin-bottom: 4px; }
.llpc-sede__phone { font-size: 14.5px; color: var(--ink); margin-bottom: 22px; }
.llpc-sede__phone a { color: var(--plum); text-decoration: none; font-weight: 600; }
.llpc-sede__phone a:hover { text-decoration: underline; }
.llpc-sede .llpc-btn { width: 100%; justify-content: center; }
@media (max-width: 900px) {
  .llpc-sedes { grid-template-columns: 1fr; gap: 16px; }
}
.llpc-price{
  --pl: var(--plum, #b06a78);
  --cream: var(--cream, #F5F0EA);
  --beige: var(--beige, #E8DDD4);
  --ink: var(--ink, #1A1410);
  --pink: var(--pink, #fcb6b6);
}
.llpc-price__factors{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-bottom:28px;
}
.llpc-price__factor{
  background:#fff;
  border:1px solid var(--beige);
  border-radius:16px;
  padding:26px 22px;
  text-align:center;
}
.llpc-price__icon{
  width:52px;height:52px;
  margin:0 auto 14px;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;
  background:var(--cream);
  color:var(--pl);
}
.llpc-price__icon svg{width:26px;height:26px;stroke:currentColor;}
.llpc-price__title{
  font-size:1.05rem;
  margin:0 0 8px;
  color:var(--ink);
}
.llpc-price__text{
  font-size:.92rem;
  line-height:1.55;
  margin:0;
  opacity:.8;
}
.llpc-price__cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
  background:var(--cream);
  border:1px solid var(--beige);
  border-radius:18px;
  padding:28px 30px;
}
.llpc-price__cta-body{flex:1 1 320px;}
.llpc-price__cta-title{
  font-size:1.25rem;
  margin:0 0 6px;
  color:var(--ink);
}
.llpc-price__cta-text{
  font-size:.95rem;
  line-height:1.55;
  margin:0;
  opacity:.85;
}
.llpc-price__cta-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
@media (max-width:760px){
  .llpc-price__factors{grid-template-columns:1fr;}
  .llpc-price__cta{flex-direction:column;align-items:stretch;text-align:center;}
  .llpc-price__cta-actions{flex-direction:column;}
  .llpc-price__cta-actions .llpc-btn{width:100%;text-align:center;}
}