/* =========================
   RESERVAS – Play Fan (reservas.css)
   1 BLOQUE HTML + CSS POR PÁGINA
========================= */

:root{
  --pf-res-max: 1200px;
  --pf-res-pad: 20px;

  /* ancho visual único para TODOS los bloques */
  --pf-res-block: 1120px;

  /* ancho de cada columna (imagen + card) */
  --pf-res-col: 560px;

  --pf-res-radius: 28px;
  --pf-res-shadow: 0 26px 60px rgba(15,23,42,.12);

  --pf-red: #ff4d4d;
  --pf-blue: #1e40af;
  --pf-green: #16a34a;
}

/* =========================
   OCULTAR TÍTULO NATIVO DE LA PÁGINA (SOLO ESTA PÁGINA)
   Reemplazá REEMPLAZAR por el ID real (page-id-XXX)
========================= */
body.page-id-REEMPLAZAR .entry-title,
body.page-id-REEMPLAZAR .wp-block-post-title,
body.page-id-REEMPLAZAR header.entry-header,
body.page-id-REEMPLAZAR .entry-header{
  display:none !important;
  height:0 !important;
  margin:0 !important;
  padding:0 !important;
}

/* =========================
   HERO
========================= */
.pf-res-hero{
  position: relative;
  overflow:hidden;
  padding: 84px var(--pf-res-pad) 54px;
  background:
    radial-gradient(900px 420px at 18% 20%, rgba(99,102,241,.14), transparent 60%),
    radial-gradient(800px 380px at 85% 55%, rgba(34,197,94,.12), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #fbfbff 70%, #ffffff 100%);
}

.pf-res-hero__shade{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 420px at 30% 20%, rgba(255,77,77,.08), transparent 55%),
    radial-gradient(900px 420px at 78% 40%, rgba(34,197,94,.08), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.03) 0%, rgba(0,0,0,0) 70%);
}

.pf-res-hero__inner{
  position: relative;
  z-index: 2;
  max-width: var(--pf-res-max);
  margin: 0 auto;
}

.pf-res-hero__top{
  text-align:center;
  max-width: 860px;
  margin: 0 auto 34px;
}

.pf-res-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
  font-weight: 950;
  color:#0f172a;
  margin-bottom: 14px;
}

.pf-res-title{
  margin: 0 0 10px;
  font-weight: 1100;
  letter-spacing:-0.02em;
  color:#0f172a;
  font-size: clamp(40px, 4.8vw, 62px);
  line-height: 1.06;
}

.pf-res-sub{
  margin: 0 auto 18px;
  max-width: 760px;
  font-weight: 900;
  color:#475569;
  font-size: 18px;
  line-height: 1.6;
}

.pf-res-hero__cta{
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.pf-res-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 1000;
  text-decoration:none !important;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.80);
  color: #0f172a !important;
  box-shadow: 0 12px 26px rgba(15,23,42,.08);
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}
.pf-res-btn:hover{ transform: translateY(-1px); opacity:.97; }

.pf-res-btn--primary{
  background: var(--pf-red);
  border-color: rgba(255,77,77,.35);
  box-shadow: 0 16px 34px rgba(255,77,77,.20);
  color:#fff !important;
}

.pf-res-btn--ghost{
  background: rgba(255,255,255,.82);
}

.pf-res-btn--whatsapp{
  background: #0b8f5a;
  border-color: rgba(11,143,90,.35);
  box-shadow: 0 16px 34px rgba(11,143,90,.20);
  color:#fff !important;
}

/* =========================
   OFERTAS (2 BLOQUES GRANDES)
========================= */
.pf-res-offers{
  display:grid;
  gap: 28px;
  margin-top: 26px;
}

/* Cada “fila” (imagen + card) */
.pf-res-offer{
  display:grid;
  grid-template-columns: var(--pf-res-col) var(--pf-res-col);
  gap: 24px;
  justify-content:center;
  align-items: stretch;
}

/* ✅ IMPORTANTE: aunque el HTML esté “flip”, forzamos imagen IZQ y card DER */
.pf-res-offer--flip .pf-res-offer__media{ order: 1; }
.pf-res-offer--flip .pf-res-offer__card{ order: 2; }

.pf-res-offer__media{
  width: var(--pf-res-col);
  border-radius: var(--pf-res-radius);
  overflow:hidden;
  box-shadow: var(--pf-res-shadow);
  background:#fff;
}

.pf-res-offer__media img{
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;
}

.pf-res-offer__card{
  width: var(--pf-res-col);
  background:#fff;
  border-radius: var(--pf-res-radius);
  padding: 30px;
  box-shadow: var(--pf-res-shadow);
  position: relative;
  display:flex;
  flex-direction: column;
  justify-content: center;
  overflow:hidden;
}

/* ✅ CÍRCULO SOLO para estas 2 cards grandes */
.pf-res-offer__card:before{
  content:"";
  position:absolute;
  inset:-60px -60px auto auto;
  width:220px;
  height:220px;
  border-radius:50%;
  pointer-events:none;
}
.pf-res-offer__card--free:before{
  background: radial-gradient(circle at 30% 30%, rgba(255,77,77,.18), transparent 70%);
}
.pf-res-offer__card--party:before{
  background: radial-gradient(circle at 30% 30%, rgba(30,64,175,.16), transparent 70%);
}

.pf-res-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius:999px;
  background:#fff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
  font-weight: 1000;
  width: fit-content;
  margin-bottom: 12px;
}

.pf-res-pill--free{ color: var(--pf-red); }
.pf-res-pill--party{ color: var(--pf-blue); }

.pf-res-h2{
  font-size: 40px;
  font-weight: 1100;
  margin: 0 0 8px;
  color:#0f172a;
  line-height: 1.08;
}

.pf-res-lead{
  font-size: 18px;
  font-weight: 950;
  margin: 0 0 14px;
  color:#334155;
}

.pf-res-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
  font-size: 17px;
  font-weight: 950;
  color:#0f172a;
  line-height: 1.5;
}

.pf-res-note{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 1000;
  font-size: 14px;
  width: fit-content;
  border: 1px solid rgba(22,163,74,.25);
  background: rgba(22,163,74,.10);
  color:#166534;
}

.pf-res-mini{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.pf-res-divider{
  height:1px;
  width:100%;
  background: rgba(15,23,42,.10);
  margin: 14px 0 10px;
}

.pf-res-strong{
  font-weight: 1050;
  color:#0f172a;
  margin-top: 6px;
}

.pf-res-foot{
  margin-top: 6px;
  font-size: 12px;
  font-weight: 900;
  color:#64748b;
}

/* =========================
   BLOQUE INFO / CONDICIONES (SIN CÍRCULO, ADORNO DIFERENTE)
========================= */
.pf-res-legal{
  padding: 54px var(--pf-res-pad);
  background: #ffffff;
}

.pf-res-legal__inner{
  max-width: var(--pf-res-block);
  margin: 0 auto;
}

.pf-res-legal__title{
  text-align:center;
  font-weight: 1100;
  color:#0f172a;
  margin: 0 0 18px;
  font-size: clamp(28px, 3.2vw, 40px);
}

/* Caja principal */
.pf-res-alert{
  position: relative;
  border-radius: var(--pf-res-radius);
  background: #fff;
  box-shadow: var(--pf-res-shadow);
  border: 1px solid rgba(15,23,42,.06);
  padding: 26px 26px;
  overflow:hidden;
}

/* ✅ adorno: “cinta” diagonal suave (no puntitos) */
.pf-res-alert:before{
  content:"";
  position:absolute;
  inset:-60px -220px auto auto;
  width: 520px;
  height: 220px;
  transform: rotate(12deg);
  background: linear-gradient(90deg, rgba(255,77,77,.12), rgba(34,197,94,.10), rgba(59,130,246,.10));
  border-radius: 80px;
  pointer-events:none;
}

.pf-res-alert__big{
  text-align:center;
  font-weight: 1200;
  color:#b91c1c;
  background: rgba(255,77,77,.08);
  border: 1px solid rgba(255,77,77,.18);
  border-radius: 18px;
  padding: 16px 16px;
  margin: 0 auto 14px;
  max-width: 920px;
  font-size: 18px;
  line-height: 1.35;
}

.pf-res-alert__imp{
  text-align:center;
  font-weight: 1200;
  color:#b91c1c;
  text-decoration: underline;
  margin: 8px 0 14px;
  letter-spacing: .06em;
}

.pf-res-legal__list{
  margin: 0;
  padding: 0;
  list-style:none;
  display:grid;
  gap: 10px;
  font-weight: 950;
  color:#0f172a;
  line-height: 1.6;
}

/* =========================
   PRECIOS (SIN CÍRCULO, ADORNO DIFERENTE)
========================= */
.pf-res-prices{
  padding: 54px var(--pf-res-pad);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfbff 100%);
}

.pf-res-prices__inner{
  max-width: var(--pf-res-block);
  margin: 0 auto;
}

.pf-res-prices__title{
  text-align:center;
  margin: 0 0 10px;
  font-weight: 1100;
  color:#0f172a;
  font-size: clamp(26px, 3vw, 38px);
}

.pf-res-prices__warn{
  text-align:center;
  font-weight: 950;
  color:#334155;
  margin: 0 auto 22px;
  max-width: 860px;
}

/* ✅ tarjetas una debajo de la otra */
.pf-res-pricegrid{
  display:grid;
  gap: 18px;
}

.pf-res-pricecard{
  position: relative;
  border-radius: var(--pf-res-radius);
  background:#fff;
  box-shadow: var(--pf-res-shadow);
  border: 1px solid rgba(15,23,42,.06);
  padding: 24px 24px;
  overflow:hidden;
}

/* ✅ adorno: “confetti” suave con degradados (sin puntos) */
.pf-res-pricecard:before{
  content:"";
  position:absolute;
  inset:auto -60px -60px auto;
  width: 260px;
  height: 260px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,77,77,.14), transparent 60%),
    radial-gradient(circle at 70% 40%, rgba(34,197,94,.12), transparent 60%),
    radial-gradient(circle at 55% 70%, rgba(59,130,246,.10), transparent 60%);
  transform: rotate(-8deg);
  border-radius: 60px;
  pointer-events:none;
}

.pf-res-pricecard__h{
  text-align:center;
  font-weight: 1100;
  color:#0f172a;
  font-size: 24px;
  margin-bottom: 10px;
}

.pf-res-priceband{
  text-align:center;
  font-weight: 1000;
  color:#0f172a;
  background: rgba(59,130,246,.08);
  border: 1px solid rgba(59,130,246,.18);
  border-radius: 14px;
  padding: 12px 14px;
  margin: 0 auto 12px;
  max-width: 980px;
}

.pf-res-priceband--danger{
  background: rgba(255,77,77,.08);
  border-color: rgba(255,77,77,.18);
  color:#b91c1c;
}

.pf-res-pricecard__list{
  margin: 0;
  padding: 0;
  list-style:none;
  display:grid;
  gap: 10px;
  font-weight: 950;
  color:#0f172a;
  line-height: 1.6;

  /* ✅ centrar texto de precios como pediste */
  text-align:center;
}

.pf-res-whatsbox{
  margin-top: 12px;
  border-radius: 18px;
  padding: 16px 16px;
  background: rgba(22,163,74,.08);
  border: 1px solid rgba(22,163,74,.20);
  display:flex;
  flex-direction: column;
  align-items:center;
  gap: 12px;
}

.pf-res-whatsbox__title{
  text-align:center;
  font-weight: 1100;
  color:#0f172a;
}

/* =========================
   RESERVAR PASE (BOOKLY) – ANCHO + ESPACIADO + ADORNO DIFERENTE
========================= */
.pf-res-book{
  padding: 54px var(--pf-res-pad) 70px;
  background:#ffffff;
}

.pf-res-book__inner{
  max-width: var(--pf-res-block);
  margin: 0 auto;
}

/* ✅ menos interlineado entre “Reserve aquí” y “su pase libre” */
.pf-res-book__title{
  text-align:center;
  font-weight: 1200;
  color:#0f172a;
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08; /* ✅ antes estaba más abierto */
}
.pf-res-book__title br{ line-height: 0; }

/* Caja texto: mismo ancho que los demás + “respiro” arriba/abajo */
.pf-res-book__text{
  position: relative;
  border-radius: var(--pf-res-radius);
  background:#fff;
  box-shadow: var(--pf-res-shadow);
  border: 1px solid rgba(15,23,42,.06);
  padding: 22px 24px; /* ✅ respiro */
  margin: 0 auto 18px;
  overflow:hidden;
}

/* ✅ adorno: “ondas” suaves (sin puntitos, sin círculo) */
.pf-res-book__text:before{
  content:"";
  position:absolute;
  inset:-40px auto auto -140px;
  width: 420px;
  height: 220px;
  background:
    radial-gradient(circle at 30% 60%, rgba(255,77,77,.12), transparent 62%),
    radial-gradient(circle at 70% 40%, rgba(34,197,94,.10), transparent 62%),
    linear-gradient(90deg, rgba(59,130,246,.08), rgba(255,255,255,0));
  transform: rotate(-10deg);
  border-radius: 100px;
  pointer-events:none;
}

.pf-res-book__text p{
  margin: 0 0 10px;
  font-weight: 950;
  color:#0f172a;
  line-height: 1.7;
}
.pf-res-book__danger{
  color:#b91c1c;
  font-weight: 1200;
}
.pf-res-book__foot{
  margin-top: 8px;
  color:#334155;
}

/* Bookly embed */
.pf-res-embed{
  border-radius: var(--pf-res-radius);
  background:#fff;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: var(--pf-res-shadow);
  padding: 18px;
  overflow:hidden;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1120px){
  :root{
    --pf-res-block: 100%;
    --pf-res-col: 560px;
  }

  .pf-res-hero{ padding-top: 70px; }
}

@media (max-width: 980px){
  .pf-res-offer{
    grid-template-columns: 1fr;
    justify-items:center;
  }

  .pf-res-offer__media,
  .pf-res-offer__card{
    width: 100%;
    max-width: 720px;
  }

  .pf-res-h2{ font-size: 34px; }
  .pf-res-legal, .pf-res-prices, .pf-res-book{ padding: 44px var(--pf-res-pad); }
}

@media (max-width: 520px){
  .pf-res-offer__card{ padding: 22px; }
  .pf-res-pricecard{ padding: 18px; }
  .pf-res-book__text{ padding: 18px; }
}