/* ============================================================================
   PATA AMARILLA — hazte-pata.css
   ============================================================================
   Estilos de la página "Hazte Pata" (page-hazte-pata.php).

   HERO: usa .pa-page-hero de style.css (componente compartido).
   Identico a Stream, Aula Amarilla, Acerca de y Nuestra Tienda.

   SECCIONES:
     1. .pa-hazte-pata-hero   — fondo negro con dot pattern + grid de membresías
     2. .pa-membership-grid   — 3 cards (Patita, Patita Dorada, Pata de Plata)
     3. .pa-donate-other      — CTA "donar otra cantidad"
     4. .pa-publicita         — sección full-bleed con imagen de fondo
     5. .pa-text-section      — bloque reutilizable titulo + parrafos + boton

   Full-width: solo padding-left/right en #content.site-content
   (identico a acerca-de.css — no tocar padding-top).

   @package PataAmarilla
   @version 1.3.0
   ============================================================================ */

/* ── FULL-WIDTH RESET (ID 22446 = /hazte-pata/) ─────────────────── */
/* Quita el padding lateral de GeneratePress sin tocar el padding-top */
.page-id-22446 #content.site-content {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ── 1. HERO + SECCION MEMBRESÍAS (fondo claro premium) ────────── */
.pa-hazte-pata-hero {
  background-color: #f9f9f7;
  background-image: none;
  padding: 64px 24px 80px;
  border-top: 1px solid #e5e7eb;
}
.pa-monthly-header {
  text-align: center;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.pa-monthly-header h2 {
  font-family: var(--pa-font-titulo);
  font-size: var(--pa-font-display);
  font-weight: 900;
  color: var(--pa-negro);
  margin: 0;
  letter-spacing: -.01em;
}
.pa-monthly-header-line {
  width: 48px;
  height: 4px;
  background: var(--pa-amarillo);
  border-radius: 2px;
}
.pa-monthly-header p {
  font-size: var(--pa-font-body);
  color: #6b7280;
  margin: 0;
}

/* ── 2. TARJETAS DE MEMBRESÍA ───────────────────────────────── */
.pa-membership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 300px));
  justify-content: center;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  align-items: end;
}
.pa-membership-card {
  background: var(--pa-blanco);
  border-radius: 20px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.pa-membership-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #e5e7eb;
  transition: background .3s ease;
}
.pa-membership-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
}
.pa-membership-card.pa-featured {
  background: var(--pa-negro);
  border: 1.5px solid var(--pa-amarillo);
  padding-top: 24px;
  transform: translateY(-16px);
  box-shadow: 0 8px 40px rgba(0,0,0,.2), 0 0 0 1px rgba(245,197,24,.3);
  z-index: 2;
}
.pa-membership-card.pa-featured::before {
  background: var(--pa-amarillo);
  height: 4px;
}
.pa-membership-card.pa-featured:hover {
  transform: translateY(-22px);
  box-shadow: 0 16px 56px rgba(0,0,0,.25);
}
.pa-membership-featured-badge { display: none; }
.pa-featured .pa-membership-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--pa-amarillo);
  color: var(--pa-negro);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.pa-membership-badge {
  width: 96px;
  height: 96px;
  margin-bottom: 20px;
}
.pa-membership-badge img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.pa-membership-badge-placeholder {
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 2px dashed #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 10px;
  text-align: center;
  padding: 8px;
  background: #f9f9f7;
}
.pa-featured .pa-membership-badge-placeholder {
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.04);
}
.pa-featured .pa-membership-badge { width: 108px; height: 108px; }
.pa-membership-divider {
  width: 40px; height: 2px;
  background: #e5e7eb;
  border-radius: 2px;
  margin: 0 auto 16px;
}
.pa-featured .pa-membership-divider { background: var(--pa-amarillo); opacity: .5; }

/* Nombre */
.pa-membership-name {
  font-family: var(--pa-font-titulo);
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--pa-negro);
  margin: 0 0 4px;
}
.pa-featured .pa-membership-name { color: var(--pa-amarillo); }

/* Tagline */
.pa-membership-tagline {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #9ca3af;
  margin: 0 0 20px;
}
.pa-featured .pa-membership-tagline { color: rgba(255,255,255,.5); }

/* Precio */
.pa-membership-price {
  font-size: 48px;
  font-weight: 900;
  color: var(--pa-negro);
  margin: 0 0 4px;
  line-height: 1;
  letter-spacing: -.02em;
}
.pa-featured .pa-membership-price { color: var(--pa-amarillo); }
.pa-membership-price span {
  font-size: 18px;
  font-weight: 400;
  color: #9ca3af;
  letter-spacing: 0;
}
.pa-featured .pa-membership-price span { color: rgba(255,255,255,.4); }

/* Beneficios */
.pa-membership-benefits {
  list-style: none;
  margin: 16px 0 24px;
  padding: 0;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pa-membership-benefits li {
  font-size: 14px;
  color: #6b7280;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.pa-membership-benefits li::before {
  content: '✓';
  color: var(--pa-amarillo);
  font-weight: 800;
  font-size: 13px;
  background: rgba(245,197,24,.12);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
}
.pa-featured .pa-membership-benefits li { color: rgba(255,255,255,.8); }
.pa-featured .pa-membership-benefits li::before {
  background: rgba(245,197,24,.2);
}

/* Botones */
.pa-btn-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 24px;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  border: 1.5px solid #e5e7eb;
  cursor: default;
  letter-spacing: .02em;
  transition: background .2s ease;
}
.pa-membership-card .pa-btn-disabled { width: 100%; }
.pa-featured .pa-btn-disabled {
  background: var(--pa-amarillo);
  color: var(--pa-negro);
  border-color: var(--pa-amarillo);
  font-size: 17px;
}

/* ── 3. CTA SECUNDARIO ────────────────────────────────────────── */
.pa-donate-other {
  text-align: center;
  margin-top: 48px;
  padding-bottom: 8px;
}
.pa-donate-other p {
  font-family: var(--pa-font-titulo);
  font-size: 26px;
  font-weight: 700;
  color: var(--pa-negro);
  margin: 0 0 14px;
}
.pa-donate-other .pa-btn-disabled {
  background: var(--pa-negro);
  color: var(--pa-blanco);
  border-color: var(--pa-negro);
  font-size: 16px;
  font-weight: 800;
  width: auto;
  padding: 13px 32px;
  border-radius: 10px;
}

/* ── 4. PUBLICITA ──────────────────────────────────────────── */
.pa-publicita {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  background-color: #0f0f0f;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.pa-publicita::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.72) 45%, rgba(0,0,0,.3) 100%);
  z-index: 1;
}
.pa-publicita::after { content: none; }
.pa-publicita-content {
  position: relative;
  z-index: 3;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}
.pa-publicita-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pa-amarillo);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pa-publicita-eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--pa-amarillo);
  border-radius: 1px;
}
.pa-publicita-title {
  font-family: var(--pa-font-titulo);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900;
  color: var(--pa-blanco);
  margin: 0 0 16px;
  line-height: 1.1;
  max-width: 520px;
}
.pa-publicita-desc {
  color: rgba(255,255,255,.7);
  font-size: 18px;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 0 32px;
}
.pa-publicita .pa-btn-disabled {
  background: var(--pa-amarillo);
  color: var(--pa-negro);
  border-color: var(--pa-amarillo);
  font-size: 16px;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 8px;
  width: auto;
  letter-spacing: .03em;
}

/* ── 5. BLOQUES DE TEXTO (Financiación + ¿Qué es ser Pata?) ────── */
.pa-text-section {
  padding: 88px 24px;
  text-align: center;
  position: relative;
}
.pa-text-section-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Eyebrow line sobre el título */
.pa-text-section-inner::before {
  content: '';
  display: block;
  width: 44px;
  height: 4px;
  border-radius: 2px;
  margin-bottom: 24px;
  background: var(--pa-negro);
  opacity: .15;
}
/* Sección amarilla: la línea en negro */
.pa-text-section[style*='amarillo'] .pa-text-section-inner::before {
  background: var(--pa-negro);
  opacity: .25;
}
/* Sección blanca: la línea en amarillo */
.pa-text-section[style*='blanco'] .pa-text-section-inner::before {
  background: var(--pa-amarillo);
  opacity: 1;
}
.pa-text-section h2 {
  font-family: var(--pa-font-titulo);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900;
  margin: 0 0 24px;
  line-height: 1.1;
  color: var(--pa-negro);
}
.pa-text-section p {
  font-size: 18px;
  line-height: 1.85;
  margin: 0 0 16px;
  max-width: 640px;
  color: #4b5563;
}
.pa-text-section p:last-of-type { margin-bottom: 0; }
/* Botón base */
.pa-text-section .pa-btn-disabled {
  margin-top: 28px;
  background: var(--pa-negro);
  color: var(--pa-blanco);
  border: none;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 36px;
  border-radius: 8px;
  width: auto;
  letter-spacing: .02em;
}
/* Sección amarilla: botón negro con texto amarillo */
.pa-text-section[style*='amarillo'] .pa-btn-disabled {
  background: var(--pa-negro);
  color: var(--pa-amarillo);
}
/* Sección blanca: botón negro con texto blanco */
.pa-text-section[style*='blanco'] .pa-btn-disabled {
  background: var(--pa-negro);
  color: var(--pa-blanco);
}

/* ============================================================================
   MÓVIL — ≤ 900px
   ============================================================================ */
@media (max-width: 900px) {
  .pa-membership-grid { grid-template-columns: minmax(0, 320px); align-items: start; }
  .pa-membership-card.pa-featured { transform: none; box-shadow: 0 0 48px rgba(245,197,24,.12), 0 8px 32px rgba(0,0,0,.4); }
  .pa-publicita { min-height: 360px; padding: 40px 0; }
  .pa-publicita-content { padding: 0 28px; }
  .pa-publicita-title { font-size: clamp(28px, 7vw, 40px); }
  .pa-publicita-desc { max-width: 100%; font-size: 16px; }
  .pa-text-section { padding: 56px 20px; }
  .pa-text-section p { font-size: 17px; }
}
