/* Golf Júndiz · Correspondencias · Frontend CSS
   Diseño completo: Hero, InfoBand, CommunityGrid, PdfBox, Socios, Campos, CTA
   ----------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400&family=Montserrat:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --gjc-green-900: #122a1f;
  --gjc-green-800: #1b3a2d;
  --gjc-green-700: #224a36;
  --gjc-green-600: #2d6a4f;
  --gjc-green-400: #52b788;
  --gjc-green-50:  #f2f7f3;
  --gjc-green-100: #e8f1ec;
  --gjc-gold-600:  #b08b32;
  --gjc-gold-500:  #c9a84c;
  --gjc-gold-400:  #dec074;
  --gjc-paper:     #f8f6f0;
  --gjc-paper-2:   #efece3;
  --gjc-line:      #e5e1d5;
  --gjc-ink-900:   #1c1c1c;
  --gjc-ink-700:   #2f2f2f;
  --gjc-ink-500:   #6b7280;
  --gjc-ink-300:   #b6b3a8;
  --gjc-r-sm:      6px;
  --gjc-r-md:      8px;
  --gjc-r-lg:      14px;
  --gjc-r-xl:      22px;
  --gjc-shadow-sm: 0 1px 2px rgba(20,30,22,.06), 0 1px 3px rgba(20,30,22,.04);
  --gjc-shadow-md: 0 6px 18px rgba(20,30,22,.08), 0 2px 6px rgba(20,30,22,.05);
  --gjc-shadow-lg: 0 24px 60px -16px rgba(20,30,22,.22);
  --gjc-f-display: "Playfair Display", serif;
  --gjc-f-ui:      "Montserrat", system-ui, sans-serif;
  --gjc-f-body:    "Inter", system-ui, sans-serif;
  --gjc-maxw:      1240px;
  --gjc-pad-x:     clamp(20px, 5vw, 56px);
}

/* ── Reset básico para la app ──────────────────────────────── */
html, body { margin: 0; padding: 0; background: var(--gjc-paper) !important; }

/* ── Wrapper general ───────────────────────────────────────── */
.gjc-page {
  background: var(--gjc-paper);
  font-family: var(--gjc-f-body);
  color: var(--gjc-ink-900);
  -webkit-font-smoothing: antialiased;
}
.gjc-wrap {
  width: 100%;
  max-width: var(--gjc-maxw);
  margin: 0 auto;
  padding: 0 var(--gjc-pad-x);
}

/* ── Eyebrow ──────────────────────────────────────────────── */
.gjc-eyebrow {
  font-family: var(--gjc-f-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gjc-green-600);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.gjc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gjc-gold-500);
  flex-shrink: 0;
}

/* ================================================================
   HERO
   ================================================================ */
.gjc-hero {
  background:
    radial-gradient(circle at 80% 10%, rgba(201,168,76,.18), transparent 50%),
    linear-gradient(180deg, var(--gjc-green-800) 0%, var(--gjc-green-900) 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.gjc-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.022) 0 1px, transparent 1px 80px);
  mask-image: radial-gradient(circle at 60% 50%, #000 0%, transparent 70%);
  pointer-events: none;
}
.gjc-hero__wrap {
  position: relative;
  max-width: var(--gjc-maxw);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) var(--gjc-pad-x);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.gjc-hero__crumbs {
  font-family: var(--gjc-f-ui);
  font-size: 12.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 22px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.gjc-hero__crumbs a { color: rgba(255,255,255,.65); text-decoration: none; }
.gjc-hero__crumbs a:hover { color: var(--gjc-gold-400); }
.gjc-hero__sep { opacity: .4; }
.gjc-hero__curr { color: var(--gjc-gold-400); }
.gjc-hero__h1 {
  font-family: var(--gjc-f-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.04;
  letter-spacing: -.015em;
  margin: 0 0 24px;
}
.gjc-hero__h1 em { font-style: italic; color: var(--gjc-gold-400); }
.gjc-hero__sub {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,.82);
  max-width: 540px;
  margin: 0 0 32px;
}
.gjc-hero__cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.gjc-hero__viz {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--gjc-r-lg);
  background: linear-gradient(140deg, var(--gjc-green-700), var(--gjc-green-900));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: var(--gjc-shadow-lg);
}
.gjc-hero__viz svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.gjc-hero__pin {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--gjc-green-900);
  box-shadow: 0 0 0 6px rgba(201,168,76,.18);
  transform: translate(-50%, -50%);
}
.gjc-hero__pin::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.45);
  animation: gjc-ping 2.4s ease-out infinite;
}
.gjc-hero__pin:nth-child(2)::after { animation-delay: .6s; }
.gjc-hero__pin:nth-child(3)::after { animation-delay: 1.2s; }
@keyframes gjc-ping {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(3); opacity: 0; }
}
.gjc-hero__viz-meta {
  position: absolute;
  left: 24px; bottom: 24px; right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: rgba(255,255,255,.85);
  font-family: var(--gjc-f-ui);
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.gjc-hero__viz-meta strong {
  display: block;
  font-family: var(--gjc-f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -.01em;
  color: #fff;
  text-transform: none;
  margin-bottom: 4px;
}
@media (max-width: 880px) {
  .gjc-hero__wrap { grid-template-columns: 1fr; }
  .gjc-hero__viz  { aspect-ratio: 5/4; }
}

/* ================================================================
   BUTTONS (globales)
   ================================================================ */
.gjc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  font-family: var(--gjc-f-ui);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.gjc-btn:hover { transform: translateY(-1px); }
.gjc-btn:active { transform: none; }
.gjc-btn--gold  { background: var(--gjc-gold-500); color: var(--gjc-green-900); border-color: var(--gjc-gold-500); }
.gjc-btn--gold:hover:not(:disabled) { background: var(--gjc-gold-400); border-color: var(--gjc-gold-400); }
.gjc-btn--gold:disabled { opacity: .45; cursor: not-allowed; }
.gjc-btn--green { background: var(--gjc-green-600); color: #fff; border-color: var(--gjc-green-600); }
.gjc-btn--green:hover { background: var(--gjc-green-700); border-color: var(--gjc-green-700); }
.gjc-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.gjc-btn--ghost:hover { border-color: var(--gjc-gold-400); color: var(--gjc-gold-400); }
.gjc-btn--sm  { padding: 8px 14px; font-size: 12.5px; }
.gjc-btn--lg  { padding: 16px 28px; font-size: 15px; }
.gjc-btn--block { width: 100%; justify-content: center; }

.gjc-btn-logout {
  font-family: var(--gjc-f-ui);
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
  background: none; border: 0;
  cursor: pointer; padding: 0;
}
.gjc-btn-logout:hover { color: var(--gjc-gold-400); }

/* ================================================================
   INFO BAND
   ================================================================ */
.gjc-infoband {
  background: var(--gjc-paper-2);
  padding: clamp(56px, 7vw, 96px) 0;
}
.gjc-infoband__inner {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.gjc-infoband__h2 {
  font-family: var(--gjc-f-display);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 14px 0 0;
}
.gjc-infoband__h2 em { font-style: italic; color: var(--gjc-green-600); }
.gjc-infoband__body p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--gjc-ink-700);
  margin: 0 0 28px;
  max-width: 56ch;
}
.gjc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gjc-stat {
  background: #fff;
  border: 1px solid var(--gjc-line);
  border-radius: var(--gjc-r-md);
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
}
.gjc-stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--gjc-gold-500);
}
.gjc-stat__num {
  font-family: var(--gjc-f-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  color: var(--gjc-green-800);
  letter-spacing: -.02em;
}
.gjc-stat__num small {
  font-family: var(--gjc-f-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--gjc-ink-500);
  margin-left: 4px;
  vertical-align: middle;
}
.gjc-stat__lab {
  font-family: var(--gjc-f-ui);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gjc-ink-500);
  margin-top: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
@media (max-width: 880px) {
  .gjc-infoband__inner { grid-template-columns: 1fr; }
  .gjc-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .gjc-stats { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   COMMUNITY GRID
   ================================================================ */
.gjc-commsec {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--gjc-paper);
}
.gjc-commsec__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.gjc-commsec__h2 {
  font-family: var(--gjc-f-display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  margin: 12px 0 0;
  letter-spacing: -.01em;
}
.gjc-commsec__sub {
  color: var(--gjc-ink-500);
  font-size: 14.5px;
  max-width: 36ch;
  margin: 0;
}
.gjc-comm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .gjc-comm-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .gjc-comm-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

.gjc-comm {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--gjc-r-md);
  overflow: hidden;
  background: var(--gjc-green-700);
  cursor: pointer;
  isolation: isolate;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
  border: 1px solid rgba(20,30,22,.04);
}
.gjc-comm:hover { transform: translateY(-3px); }
.gjc-comm__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.gjc-comm:hover .gjc-comm__img { transform: scale(1.08); }
.gjc-comm__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,42,31,.05) 0%, rgba(18,42,31,.65) 75%, rgba(18,42,31,.85) 100%);
  transition: background .3s;
}
.gjc-comm:hover .gjc-comm__shade {
  background: linear-gradient(180deg, rgba(45,106,79,.15) 0%, rgba(18,42,31,.7) 75%, rgba(18,42,31,.92) 100%);
}
.gjc-comm__body {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  color: #fff;
  z-index: 2;
}
.gjc-comm__name {
  font-family: var(--gjc-f-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -.005em;
  margin: 0;
}
.gjc-comm__count {
  font-family: var(--gjc-f-ui);
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 4px;
}
.gjc-comm__arrow {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--gjc-green-800);
  display: grid; place-items: center;
  opacity: 0;
  transform: translate(6px, -6px);
  transition: all .25s;
  z-index: 2;
}
.gjc-comm:hover .gjc-comm__arrow { opacity: 1; transform: translate(0, 0); }
.gjc-comm.is-active { outline: 2px solid var(--gjc-gold-500); outline-offset: 2px; }

/* ================================================================
   PDF BOX
   ================================================================ */
.gjc-pdfbox-wrap {
  padding: 0 0 clamp(40px, 5vw, 64px);
  background: var(--gjc-paper);
}
.gjc-pdfbox {
  background: linear-gradient(135deg, var(--gjc-green-50) 0%, #e2efd9 100%);
  border: 1px solid var(--gjc-green-400);
  border-radius: var(--gjc-r-lg);
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.gjc-pdfbox::before {
  content: "";
  position: absolute;
  right: -40px; bottom: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,183,136,.25), transparent 70%);
  pointer-events: none;
}
.gjc-pdfbox__eye {
  font-family: var(--gjc-f-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gjc-green-600);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.gjc-pdfbox__eye::before {
  content: "";
  width: 24px; height: 1.5px;
  background: var(--gjc-green-600);
}
.gjc-pdfbox__h3 {
  font-family: var(--gjc-f-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--gjc-green-900);
}
.gjc-pdfbox__p {
  margin: 0;
  color: var(--gjc-ink-700);
  font-size: 15.5px;
  line-height: 1.6;
}
.gjc-pdfbox__cta {
  display: flex; flex-direction: column; gap: 10px;
  align-items: stretch;
  position: relative; z-index: 1;
}
.gjc-pdfbox__meta {
  font-family: var(--gjc-f-ui);
  font-size: 12px;
  color: var(--gjc-ink-500);
  text-align: center;
}
@media (max-width: 720px) {
  .gjc-pdfbox { grid-template-columns: 1fr; }
}

/* ================================================================
   ZONA DE SOCIOS (login / stepper)
   ================================================================ */
.gjc-member-section {
  background: var(--gjc-green-800);
  padding: clamp(48px, 7vw, 96px) 0;
}
.gjc-member-section .gjc-wrap { max-width: 900px; }
.gjc-card {
  background: #fff;
  border-radius: var(--gjc-r-xl);
  box-shadow: var(--gjc-shadow-lg);
  overflow: hidden;
}

/* ── Login ──────────────────────────────────────────────── */
.gjc-login { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 680px) { .gjc-login { grid-template-columns: 1fr; } }
.gjc-login__left  { background: var(--gjc-green-800); color: #fff; padding: 48px 40px; }
.gjc-login__title {
  font-family: var(--gjc-f-display);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  margin: 12px 0 14px;
  letter-spacing: -.01em;
}
.gjc-login__title em { color: var(--gjc-gold-500); font-style: italic; }
.gjc-login__sub   { color: rgba(255,255,255,.65); font-family: var(--gjc-f-body); font-size: 14.5px; line-height: 1.6; margin: 0 0 24px; }
.gjc-bullets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.gjc-bullets li { display: flex; align-items: center; gap: 10px; font-family: var(--gjc-f-ui); font-size: 13.5px; color: rgba(255,255,255,.8); }
.gjc-bullets svg { color: var(--gjc-gold-500); flex-shrink: 0; }
.gjc-loginform { padding: 48px 40px; display: flex; flex-direction: column; gap: 20px; background: #fff; }
.gjc-loginform h3 { font-family: var(--gjc-f-display); font-weight: 500; font-size: 22px; margin: 0 0 4px; color: var(--gjc-green-800); }
@media (max-width: 480px) {
  .gjc-loginform { padding: 28px 20px; }
  .gjc-login__left { padding: 32px 24px; }
}

/* ── Fields ─────────────────────────────────────────────── */
.gjc-field { display: flex; flex-direction: column; gap: 5px; }
.gjc-field label { font-family: var(--gjc-f-ui); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--gjc-ink-500); }
.gjc-field input, .gjc-field select {
  border: 1.5px solid var(--gjc-line);
  border-radius: var(--gjc-r-md);
  padding: 11px 14px;
  font-size: 15px;
  background: #fafaf8;
  transition: border-color .15s, box-shadow .15s;
  outline: none;
  width: 100%;
}
.gjc-field input:focus, .gjc-field select:focus {
  border-color: var(--gjc-green-600);
  box-shadow: 0 0 0 3px rgba(45,106,79,.12);
}
.gjc-field--error input { border-color: #e53e3e; }
.gjc-field__err  { font-size: 13px; color: #e53e3e; font-family: var(--gjc-f-ui); }
.gjc-field__hint { font-size: 12.5px; color: var(--gjc-ink-500); font-family: var(--gjc-f-ui); }

/* ── Stepper ────────────────────────────────────────────── */
.gjc-stepper { padding: 36px 40px; display: flex; flex-direction: column; gap: 28px; }
@media (max-width: 600px) { .gjc-stepper { padding: 24px 20px; } }
.gjc-stepper__head { display: flex; flex-direction: column; gap: 14px; padding-bottom: 24px; border-bottom: 1px solid var(--gjc-line); }
.gjc-member-bar { display: flex; align-items: center; gap: 12px; }
.gjc-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gjc-green-800); color: var(--gjc-gold-500); font-family: var(--gjc-f-ui); font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; }
.gjc-member-bar strong { font-family: var(--gjc-f-ui); font-size: 15px; display: block; }
.gjc-member-sub { font-family: var(--gjc-f-ui); font-size: 12px; color: var(--gjc-ink-500); }
.gjc-member-bar .gjc-btn-logout { margin-left: auto; }
.gjc-progress { display: flex; align-items: center; gap: 12px; font-family: var(--gjc-f-ui); font-size: 12.5px; color: var(--gjc-ink-500); }
.gjc-progress__bar  { flex: 1; height: 4px; background: var(--gjc-line); border-radius: 2px; }
.gjc-progress__fill { height: 100%; background: var(--gjc-gold-500); border-radius: 2px; transition: width .3s ease; }

.gjc-step__title { display: flex; align-items: center; gap: 10px; font-family: var(--gjc-f-ui); font-size: 13.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--gjc-ink-500); margin: 0 0 14px; }
.gjc-step__num   { width: 24px; height: 24px; border-radius: 50%; background: var(--gjc-green-800); color: var(--gjc-gold-500); font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ── Search ─────────────────────────────────────────────── */
.gjc-search-row   { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.gjc-search-input { flex: 1; min-width: 200px; display: flex; align-items: center; gap: 8px; border: 1.5px solid var(--gjc-line); border-radius: var(--gjc-r-md); padding: 9px 14px; background: #fafaf8; }
.gjc-search-input svg { color: var(--gjc-ink-500); flex-shrink: 0; }
.gjc-search-input input { border: 0; background: none; outline: none; font-size: 14px; width: 100%; padding: 0; }
.gjc-select { border: 1.5px solid var(--gjc-line); border-radius: var(--gjc-r-md); padding: 9px 14px; font-size: 13.5px; background: #fafaf8; font-family: var(--gjc-f-ui); outline: none; cursor: pointer; }
.gjc-count-line { font-family: var(--gjc-f-ui); font-size: 13px; color: var(--gjc-ink-500); margin-bottom: 12px; }

/* ── Mini cards de campos (dentro del stepper) ──────────── */
.gjc-minicards  { display: flex; flex-direction: column; gap: 6px; max-height: 380px; overflow-y: auto; padding-right: 4px; }
.gjc-minicards::-webkit-scrollbar { width: 4px; }
.gjc-minicards::-webkit-scrollbar-thumb { background: var(--gjc-line); border-radius: 2px; }
.gjc-minicard { display: flex; flex-direction: column; gap: 4px; text-align: left; background: #fff; border: 1.5px solid var(--gjc-line); border-radius: var(--gjc-r-md); padding: 12px 16px; cursor: pointer; transition: all .12s; width: 100%; }
.gjc-minicard:hover   { border-color: var(--gjc-green-600); background: var(--gjc-paper); }
.gjc-minicard.is-selected { border-color: var(--gjc-green-700); background: #f0f7f3; box-shadow: 0 0 0 3px rgba(34,74,54,.1); }
.gjc-minicard__body  { display: flex; flex-direction: column; gap: 3px; }
.gjc-minicard__name  { font-family: var(--gjc-f-ui); font-weight: 600; font-size: 14px; color: var(--gjc-ink-900); }
.gjc-minicard__meta  { font-family: var(--gjc-f-ui); font-size: 12.5px; color: var(--gjc-ink-500); display: flex; align-items: center; gap: 4px; }
.gjc-minicard__price { display: flex; gap: 6px; margin-top: 4px; }

.gjc-badge       { font-family: var(--gjc-f-ui); font-size: 12px; font-weight: 600; padding: 2px 9px; border-radius: 20px; background: #f0f0ee; color: var(--gjc-ink-500); }
.gjc-badge--gold { background: rgba(201,168,76,.15); color: #7a5e1a; }

/* ── Date row ───────────────────────────────────────────── */
.gjc-date-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .gjc-date-row { grid-template-columns: 1fr; } }
.gjc-club-summary { background: var(--gjc-green-800); border-radius: var(--gjc-r-md); padding: 18px 20px; color: #fff; display: flex; flex-direction: column; gap: 6px; }
.gjc-club-summary__name  { font-family: var(--gjc-f-display); font-size: 16px; font-weight: 500; }
.gjc-club-summary__loc   { font-family: var(--gjc-f-ui); font-size: 12.5px; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 4px; }
.gjc-club-summary__price { font-family: var(--gjc-f-ui); font-size: 18px; font-weight: 700; color: var(--gjc-gold-500); margin-top: 6px; }

/* ── Summary / confirmación ─────────────────────────────── */
.gjc-summary { background: #fafaf8; border: 1px solid var(--gjc-line); border-radius: var(--gjc-r-lg); overflow: hidden; margin-bottom: 18px; }
.gjc-summary__row { display: grid; grid-template-columns: 140px 1fr; gap: 12px; padding: 13px 18px; border-bottom: 1px solid var(--gjc-line); }
.gjc-summary__row:last-child { border-bottom: 0; }
.gjc-summary__k   { font-family: var(--gjc-f-ui); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--gjc-ink-500); padding-top: 2px; }
.gjc-summary__v   { font-size: 14.5px; color: var(--gjc-ink-900); }
.gjc-summary__sub { display: block; font-size: 12.5px; color: var(--gjc-ink-500); margin-top: 2px; }
.gjc-summary__cond { font-size: 13px; color: var(--gjc-ink-500); line-height: 1.5; }

/* ── Checkbox ───────────────────────────────────────────── */
.gjc-checkrow { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-family: var(--gjc-f-body); font-size: 13.5px; line-height: 1.5; padding: 14px 18px; color: var(--gjc-ink-900); }
.gjc-checkrow input[type=checkbox] { display: none; }
.gjc-check-box { width: 18px; height: 18px; border: 2px solid var(--gjc-line); border-radius: 4px; flex-shrink: 0; margin-top: 1px; transition: all .12s; display: block; }
.gjc-checkrow input:checked ~ .gjc-check-box { background: var(--gjc-green-700); border-color: var(--gjc-green-700); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

.gjc-stepper__cta { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; padding-top: 8px; }
@media (max-width: 480px) {
  .gjc-stepper__cta { flex-direction: column; }
  .gjc-stepper__cta .gjc-btn { width: 100%; }
  .gjc-summary__row { grid-template-columns: 1fr; gap: 2px; }
}

/* ── Success ────────────────────────────────────────────── */
.gjc-success { text-align: center; padding: 56px 40px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.gjc-success__icon { width: 64px; height: 64px; border-radius: 50%; background: var(--gjc-green-700); color: #fff; font-size: 28px; display: flex; align-items: center; justify-content: center; }
.gjc-success h4    { font-family: var(--gjc-f-display); font-size: 26px; font-weight: 500; margin: 0; color: var(--gjc-green-800); }
.gjc-success p     { color: var(--gjc-ink-500); font-size: 15px; max-width: 38ch; margin: 0; }
.gjc-success__email { font-size: 13.5px !important; }
.gjc-success__actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }

/* ── Loading / error / utilities ────────────────────────── */
.gjc-loading { display: flex; align-items: center; gap: 10px; color: var(--gjc-ink-500); font-family: var(--gjc-f-ui); font-size: 14px; padding: 24px 0; }
.gjc-error   { background: #fff5f5; border: 1px solid #fed7d7; border-radius: var(--gjc-r-md); padding: 12px 16px; color: #c53030; font-family: var(--gjc-f-ui); font-size: 13.5px; }
.gjc-no-results { padding: 32px; text-align: center; color: var(--gjc-ink-500); font-family: var(--gjc-f-ui); font-size: 14px; background: #fafaf8; border: 1px dashed var(--gjc-line); border-radius: var(--gjc-r-lg); }
@keyframes gjc-rotate { to { transform: rotate(360deg); } }
.gjc-spin { animation: gjc-rotate .7s linear infinite; display: inline-block; }

/* ================================================================
   EXPOSITOR PÚBLICO DE CAMPOS
   ================================================================ */
.gjc-coursesec {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--gjc-paper);
}

/* Buscador */
.gjc-csearch {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.gjc-csearch__input {
  flex: 1;
  min-width: 240px;
  position: relative;
}
.gjc-csearch__input input {
  width: 100%;
  background: #fff;
  border: 1px solid var(--gjc-line);
  border-radius: var(--gjc-r-md);
  padding: 14px 16px 14px 46px;
  font-family: var(--gjc-f-ui);
  font-size: 14.5px;
  color: var(--gjc-ink-900);
  transition: border .2s, box-shadow .2s;
  outline: none;
}
.gjc-csearch__input input::placeholder { color: var(--gjc-ink-300); }
.gjc-csearch__input input:focus {
  border-color: var(--gjc-green-600);
  box-shadow: 0 0 0 3px rgba(82,183,136,.15);
}
.gjc-csearch__input svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gjc-ink-500);
  pointer-events: none;
}
.gjc-csearch__count {
  font-family: var(--gjc-f-ui);
  font-size: 13px;
  color: var(--gjc-ink-500);
}
.gjc-csearch__count strong { color: var(--gjc-green-700); font-weight: 700; }

/* Tabs comunidades */
.gjc-ctabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0 16px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--gjc-line);
  scrollbar-width: thin;
}
.gjc-ctabs::-webkit-scrollbar { height: 4px; }
.gjc-ctab {
  flex-shrink: 0;
  padding: 9px 16px;
  font-family: var(--gjc-f-ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--gjc-ink-700);
  border: 1px solid var(--gjc-line);
  border-radius: 999px;
  background: #fff;
  transition: all .18s;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
}
.gjc-ctab:hover { border-color: var(--gjc-green-600); color: var(--gjc-green-700); }
.gjc-ctab.is-active { background: var(--gjc-green-800); color: #fff; border-color: var(--gjc-green-800); }
.gjc-ctab__c {
  background: rgba(0,0,0,.06);
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}
.gjc-ctab.is-active .gjc-ctab__c { background: rgba(255,255,255,.16); color: rgba(255,255,255,.85); }

/* Grid de tarjetas de campo */
.gjc-course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .gjc-course-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .gjc-course-grid { grid-template-columns: 1fr; } }

.gjc-course {
  background: #fff;
  border: 1px solid var(--gjc-line);
  border-radius: var(--gjc-r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.gjc-course:hover {
  transform: translateY(-3px);
  box-shadow: var(--gjc-shadow-md);
  border-color: var(--gjc-green-400);
}

/* Cabecera de la tarjeta (gradient con badge de comunidad) */
.gjc-course__img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--gjc-green-700) 0%, var(--gjc-green-900) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.gjc-course__comm-badge {
  font-family: var(--gjc-f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.15);
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.gjc-course__price-badge {
  position: absolute;
  bottom: 10px; right: 10px;
  background: var(--gjc-green-800);
  border: 1.5px solid var(--gjc-gold-500);
  border-radius: var(--gjc-r-md);
  padding: 6px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}
.gjc-course__price-num {
  font-family: var(--gjc-f-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--gjc-gold-400);
  letter-spacing: -.02em;
}
.gjc-course__price-lab {
  font-family: var(--gjc-f-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.gjc-course__body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.gjc-course__name {
  font-family: var(--gjc-f-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -.005em;
  line-height: 1.2;
  margin: 0 0 6px;
  color: var(--gjc-ink-900);
}
.gjc-course__loc {
  font-family: var(--gjc-f-ui);
  font-size: 12.5px;
  color: var(--gjc-ink-500);
  letter-spacing: .03em;
  margin: 0 0 12px;
  display: flex; gap: 6px; align-items: center;
}
.gjc-course__conditions {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  background: var(--gjc-green-50);
  border: 1px solid var(--gjc-green-100);
  border-radius: var(--gjc-r-sm);
  padding: 7px 10px;
  margin-bottom: 12px;
  font-family: var(--gjc-f-ui);
  font-size: 12px;
  color: var(--gjc-green-700);
  line-height: 1.4;
}
.gjc-course__conditions svg { flex-shrink: 0; margin-top: 1px; color: var(--gjc-green-600); }
.gjc-course__prices { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.gjc-course__foot {
  margin-top: auto;
  display: flex; justify-content: flex-end;
}
@media (max-width: 640px) {
  .gjc-csearch { flex-direction: column; gap: 8px; }
  .gjc-csearch__input input { font-size: 16px; min-height: 48px; }
  .gjc-ctabs { -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .gjc-ctabs::-webkit-scrollbar { display: none; }
}

/* ================================================================
   CTA STRIP
   ================================================================ */
.gjc-ctastrip {
  background: var(--gjc-green-800);
  padding: clamp(48px, 6vw, 72px) 0;
  position: relative;
  overflow: hidden;
}
.gjc-ctastrip::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(201,168,76,.12), transparent 60%);
  pointer-events: none;
}
.gjc-ctastrip__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  position: relative;
  flex-wrap: wrap;
  color: #fff;
}
.gjc-ctastrip__h3 {
  font-family: var(--gjc-f-display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 36px);
  margin: 0;
  letter-spacing: -.01em;
}
.gjc-ctastrip__p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  max-width: 50ch;
}
.gjc-ctastrip__cta { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 560px) {
  .gjc-ctastrip__inner { flex-direction: column; gap: 20px; }
  .gjc-ctastrip__cta { flex-direction: column; width: 100%; }
  .gjc-ctastrip__cta .gjc-btn { width: 100%; justify-content: center; }
}

/* ── Ocultar header/footer del tema ─────────────────────── */
.site-header, .site-footer, header.site-header, footer.site-footer,
#site-header, #site-footer, .entry-header, .page-header { display: none !important; }
#page, .site, #content, .site-content, main.site-main { padding: 0 !important; margin: 0 !important; }
.entry-content { margin: 0 !important; padding: 0 !important; }
