/* ════════════════════════════════════════════════════════════
   GUÍA DEL PACIENTE — Tu Cirugía Paso a Paso
   Estilo editorial médico · Coherente con paleta navy/teal/dorado
═══════════════════════════════════════════════════════════════ */

/* Contenedor común */
.gp-content-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ════════ Breadcrumb ════════ */
.gp-breadcrumb {
  font-family: 'Space Mono', monospace, system-ui;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.gp-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.gp-breadcrumb a:hover { color: #c9a84c; }
.gp-breadcrumb span:last-child { color: #c9a84c; }

/* ════════ HERO Hub ════════ */
.gp-hero {
  position: relative;
  background: linear-gradient(160deg, #0a1628 0%, #102040 60%, #0a1628 100%);
  padding: 140px 5% 90px;
  overflow: hidden;
}
.gp-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 75% 30%, rgba(0, 180, 160, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 55%);
  pointer-events: none;
}
.gp-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.gp-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.02;
  color: #fff;
  margin: 16px 0 28px;
  font-weight: 400;
}
.gp-hero h1 em {
  color: #c9a84c;
  font-style: italic;
}
.gp-hero-lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  font-style: italic;
  max-width: 760px;
  margin: 0 auto 40px;
}
.gp-hero-disclaimer {
  display: inline-flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 8px;
  padding: 18px 24px;
  max-width: 680px;
  text-align: left;
}
.gp-disclaimer-icon {
  color: #c9a84c;
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.gp-hero-disclaimer p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}
.gp-hero-disclaimer strong { color: #e8c96a; }

/* ════════ STAGES (3 etapas hub) ════════ */
.gp-stages {
  background: #f8fafc;
  padding: 100px 0;
}
.gp-stages-header {
  text-align: center;
  margin-bottom: 64px;
}
.gp-stages-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  color: #0a1628;
  margin: 12px 0 16px;
  font-weight: 500;
}
.gp-stages-header h2 em { color: #c9a84c; font-style: italic; }
.gp-stages-intro {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 640px;
  margin: 0 auto;
  font-style: italic;
  line-height: 1.7;
}
.gp-stages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.gp-stage-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 40px 32px 36px;
  text-decoration: none !important;
  color: inherit !important;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: block;
}
.gp-stage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #e8c96a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.gp-stage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.12);
  border-color: rgba(201, 168, 76, 0.4);
}
.gp-stage-card:hover::before { transform: scaleX(1); }
.gp-stage-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: #c9a84c;
  margin-bottom: 20px;
  font-weight: 600;
}
.gp-stage-icon {
  width: 64px;
  height: 64px;
  color: #0a1628;
  margin-bottom: 22px;
}
.gp-stage-icon svg {
  width: 100%;
  height: 100%;
}
.gp-stage-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  color: #0a1628;
  margin-bottom: 14px;
  font-weight: 500;
  line-height: 1.2;
}
.gp-stage-card p {
  font-size: 0.92rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 22px;
}
.gp-stage-link {
  font-family: 'Space Mono', monospace, system-ui;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00b4a0;
  display: inline-block;
  transition: gap 0.2s ease;
}
.gp-stage-card:hover .gp-stage-link { color: #c9a84c; }

/* ════════ PROMISE ════════ */
.gp-promise {
  padding: 100px 0;
  background: #fff;
}
.gp-promise-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}
.gp-promise-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  color: #0a1628;
  margin: 12px 0 24px;
  line-height: 1.1;
  font-weight: 500;
}
.gp-promise-text h2 em { color: #c9a84c; font-style: italic; }
.gp-promise-text p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.85;
  margin-bottom: 16px;
}
.gp-promise-text strong { color: #0a1628; }
.gp-promise-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.gp-pillar {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 3px solid #c9a84c;
  padding: 24px 20px;
  text-align: center;
}
.gp-pillar-num {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6rem;
  color: #c9a84c;
  line-height: 1;
  font-weight: 400;
}
.gp-pillar-lbl {
  display: block;
  font-family: 'Space Mono', monospace, system-ui;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7a99;
  margin-top: 8px;
  line-height: 1.4;
}

/* ════════ TIMELINE Overview ════════ */
.gp-timeline-overview {
  background: #0a1628;
  padding: 100px 0;
  color: #fff;
}
.gp-timeline-overview .gp-stages-header h2 { color: #fff; }
.gp-timeline-overview .gp-stages-intro { color: rgba(255, 255, 255, 0.65); }
.gp-timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.gp-timeline::before {
  content: '';
  position: absolute;
  left: 130px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(201, 168, 76, 0.2);
}
.gp-tl-step {
  display: grid;
  grid-template-columns: 130px 24px 1fr;
  gap: 20px;
  padding: 18px 0;
  align-items: flex-start;
}
.gp-tl-marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.3);
  border: 1px solid #c9a84c;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}
.gp-tl-highlight .gp-tl-marker {
  background: #c9a84c;
  width: 16px;
  height: 16px;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.2);
}
.gp-tl-when {
  display: block;
  font-family: 'Space Mono', monospace, system-ui;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9a84c;
  text-align: right;
  padding-top: 4px;
}
.gp-tl-content strong {
  display: block;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 600;
}
.gp-tl-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
}

/* ════════ CTA Section ════════ */
.gp-cta {
  background: linear-gradient(135deg, #0a1628 0%, #102040 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.gp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.08), transparent 60%);
  pointer-events: none;
}
.gp-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.gp-cta h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 60px);
  color: #fff;
  margin: 14px 0 18px;
  line-height: 1.05;
  font-weight: 500;
}
.gp-cta h2 em { color: #c9a84c; font-style: italic; }
.gp-cta p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-bottom: 36px;
  line-height: 1.6;
}
.gp-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════ SUB-HERO (páginas de etapa) ════════ */
.gp-sub-hero {
  position: relative;
  background: linear-gradient(170deg, #0a1628 0%, #0d1f3c 60%, #0a1628 100%);
  padding: 140px 5% 70px;
  overflow: hidden;
}
.gp-sub-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(0, 180, 160, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
}
.gp-sub-hero-2 .gp-sub-hero-bg {
  background-image:
    radial-gradient(ellipse at 60% 30%, rgba(201, 168, 76, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(0, 180, 160, 0.08) 0%, transparent 50%);
}
.gp-sub-hero-3 .gp-sub-hero-bg {
  background-image:
    radial-gradient(ellipse at 30% 70%, rgba(0, 180, 160, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.1) 0%, transparent 50%);
}
.gp-sub-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}
.gp-stage-pill {
  display: inline-block;
  font-family: 'Space Mono', monospace, system-ui;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 6px 16px;
  margin-bottom: 18px;
}
.gp-sub-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1;
  color: #fff;
  margin: 0 0 24px;
  font-weight: 400;
}
.gp-sub-hero h1 em { color: #c9a84c; font-style: italic; }
.gp-sub-hero-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.gp-sub-hero-nav a {
  font-family: 'Space Mono', monospace, system-ui;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
}
.gp-sub-hero-nav a:hover {
  color: #e8c96a;
  border-bottom-color: #c9a84c;
}

/* ════════ Sections ════════ */
.gp-section {
  padding: 90px 0;
  background: #fff;
}
.gp-section-alt {
  background: #f8fafc;
}
.gp-section-feature {
  background: #fff;
  position: relative;
}
.gp-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.gp-section-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(30px, 3.8vw, 46px);
  color: #0a1628;
  margin: 10px 0 16px;
  line-height: 1.1;
  font-weight: 500;
}
.gp-section-header h2 em { color: #c9a84c; font-style: italic; }
.gp-section-lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  color: #4a5568;
  font-style: italic;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}
.gp-section-header-light h2 { color: #fff !important; }

/* ════════ EXAMS Grid ════════ */
.gp-exams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.gp-exam-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 3px solid #00b4a0;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gp-exam-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(10, 22, 40, 0.06);
}
.gp-exam-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  line-height: 1;
}
.gp-exam-card h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  color: #0a1628;
  margin: 0 0 6px;
  font-weight: 600;
}
.gp-exam-card p {
  font-size: 0.85rem;
  color: #6b7a99;
  line-height: 1.55;
  margin: 0;
}

/* ════════ CALLOUTS ════════ */
.gp-callout {
  padding: 22px 28px;
  border-radius: 4px;
  font-size: 0.94rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 32px 0;
  position: relative;
}
.gp-callout-info {
  background: rgba(0, 180, 160, 0.06);
  border-left: 4px solid #00b4a0;
}
.gp-callout-info strong { color: #007a6c; }
.gp-callout-teal {
  background: linear-gradient(135deg, rgba(0, 180, 160, 0.07), rgba(0, 180, 160, 0.02));
  border: 1px solid rgba(0, 180, 160, 0.25);
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #2d3748;
  padding: 28px 32px;
}
.gp-callout-teal strong { color: #00b4a0; font-style: normal; }

/* ════════ EVAL Grid ════════ */
.gp-eval-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gp-eval-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 26px;
  position: relative;
}
.gp-eval-card.gp-eval-primary {
  background: #0a1628;
  color: #fff;
  border-color: rgba(201, 168, 76, 0.3);
}
.gp-eval-card.gp-eval-primary h4 { color: #fff; }
.gp-eval-card.gp-eval-primary p { color: rgba(255, 255, 255, 0.7); }
.gp-eval-tag {
  display: inline-block;
  font-family: 'Space Mono', monospace, system-ui;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 3px 10px;
  margin-bottom: 14px;
}
.gp-eval-card h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  color: #0a1628;
  margin: 0 0 10px;
  font-weight: 600;
}
.gp-eval-card p {
  font-size: 0.85rem;
  color: #4a5568;
  line-height: 1.65;
  margin: 0;
}

/* ════════ FEATURE Grid (la edad / fast-track) ════════ */
.gp-feature-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.gp-feature-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(30px, 4vw, 46px);
  color: #0a1628;
  margin: 12px 0 22px;
  line-height: 1.1;
  font-weight: 500;
}
.gp-feature-text h2 em { color: #c9a84c; font-style: italic; }
.gp-feature-lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  color: #0a1628;
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 20px;
}
.gp-feature-text p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.85;
  margin-bottom: 16px;
}
.gp-feature-text strong { color: #0a1628; }
.gp-evidence {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 22px 24px;
  margin-top: 22px;
}
.gp-evidence-badge {
  display: inline-block;
  font-family: 'Space Mono', monospace, system-ui;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 10px;
  font-weight: 700;
}
.gp-evidence p {
  font-size: 0.88rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

/* ════════ STATS Stack ════════ */
.gp-stats-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.gp-stat-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #00b4a0;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.gp-stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.4rem;
  color: #00b4a0;
  line-height: 1;
  width: 40px;
  text-align: center;
  font-weight: 400;
}
.gp-stat-item.gp-stat-minus {
  border-left-color: #a0aec0;
  background: #f8fafc;
}
.gp-stat-item.gp-stat-minus .gp-stat-num { color: #a0aec0; }
.gp-stat-lbl {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  color: #2d3748;
  line-height: 1.4;
  font-weight: 500;
}

/* ════════ CHECKLIST ════════ */
.gp-checklist {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}
.gp-check-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: flex-start;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.gp-check-item:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateX(4px);
}
.gp-check-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 1px solid rgba(0, 180, 160, 0.25);
  border-radius: 50%;
  color: #00b4a0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gp-check-icon svg {
  width: 32px;
  height: 32px;
}
.gp-check-body h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  color: #0a1628;
  margin: 0 0 8px;
  font-weight: 600;
}
.gp-check-body > p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0 0 12px;
}
.gp-check-body strong { color: #0a1628; }
.gp-check-specs {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: grid;
  gap: 6px;
}
.gp-check-specs li {
  font-size: 0.85rem;
  color: #4a5568;
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.gp-check-specs li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #c9a84c;
  font-weight: 600;
}
.gp-check-note {
  font-size: 0.82rem !important;
  color: #6b7a99 !important;
  font-style: italic;
  margin-top: 12px !important;
  border-top: 1px dashed #e2e8f0;
  padding-top: 10px;
}

/* ════════ MYTHS ════════ */
.gp-myths {
  display: grid;
  gap: 20px;
}
.gp-myth-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  overflow: hidden;
}
.gp-myth-myth, .gp-myth-truth {
  padding: 26px 28px;
}
.gp-myth-myth {
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
}
.gp-myth-truth {
  background: rgba(0, 180, 160, 0.04);
}
.gp-myth-myth p, .gp-myth-truth p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0;
  color: #2d3748;
  font-style: italic;
}
.gp-myth-truth p { font-style: normal; color: #2d3748; }
.gp-myth-tag {
  display: inline-block;
  font-family: 'Space Mono', monospace, system-ui;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 12px;
  font-weight: 700;
}
.gp-myth-tag-false {
  background: rgba(229, 62, 62, 0.08);
  color: #c53030;
  border: 1px solid rgba(229, 62, 62, 0.25);
}
.gp-myth-tag-true {
  background: rgba(0, 180, 160, 0.08);
  color: #00857a;
  border: 1px solid rgba(0, 180, 160, 0.3);
}

/* ════════ FAQ ════════ */
.gp-faq {
  max-width: 820px;
  margin: 0 auto;
}
.gp-faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 0;
  margin-bottom: 10px;
  transition: border-color 0.2s ease;
}
.gp-faq-item[open] {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 4px 18px rgba(10, 22, 40, 0.04);
}
.gp-faq-item summary {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0a1628;
  cursor: pointer;
  padding: 20px 28px;
  list-style: none;
  position: relative;
  padding-right: 56px;
  user-select: none;
  transition: color 0.2s ease;
}
.gp-faq-item summary:hover { color: #c9a84c; }
.gp-faq-item summary::-webkit-details-marker { display: none; }
.gp-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  color: #c9a84c;
  font-weight: 300;
  transition: transform 0.2s ease;
}
.gp-faq-item[open] summary::after {
  content: '−';
}
.gp-faq-item p {
  padding: 0 28px 22px;
  font-size: 0.94rem;
  color: #4a5568;
  line-height: 1.8;
  margin: 0;
}

/* ════════ STAGE NAV (entre subpáginas) ════════ */
.gp-stage-nav {
  background: #0a1628;
  padding: 50px 0;
}
.gp-stage-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.gp-stage-nav-back {
  font-family: 'Space Mono', monospace, system-ui;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}
.gp-stage-nav-back:hover { color: #c9a84c; }
.gp-stage-nav-next {
  text-align: right;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.2s ease;
}
.gp-stage-nav-next:hover { transform: translateX(6px); }
.gp-stage-nav-next span {
  font-family: 'Space Mono', monospace, system-ui;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.gp-stage-nav-next strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  color: #c9a84c;
  font-weight: 600;
}

/* ════════ PROCEDURES (durante la cirugía) ════════ */
.gp-procedure-header {
  text-align: center;
  margin-bottom: 48px;
}
.gp-procedure-tag {
  display: inline-block;
  font-family: 'Space Mono', monospace, system-ui;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 12px;
}
.gp-procedure-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(30px, 4vw, 46px);
  color: #0a1628;
  margin: 0;
  font-weight: 500;
  line-height: 1.1;
}
.gp-procedure-header h2 em { color: #c9a84c; font-style: italic; }
.gp-procedure-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.gp-procedure-grid-reverse {
  grid-template-columns: 1fr 1.2fr;
}
.gp-procedure-lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #0a1628;
  line-height: 1.6;
  margin-bottom: 24px;
}
.gp-procedure-section {
  margin-bottom: 22px;
}
.gp-procedure-section h4 {
  font-family: 'Space Mono', monospace, system-ui;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 12px;
  font-weight: 700;
}
.gp-procedure-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gp-procedure-section ul li {
  padding: 5px 0 5px 22px;
  position: relative;
  font-size: 0.92rem;
  color: #4a5568;
  line-height: 1.6;
}
.gp-procedure-section ul li::before {
  content: '◇';
  position: absolute;
  left: 0;
  color: #c9a84c;
  font-size: 0.85rem;
  top: 6px;
}
.gp-procedure-section p {
  font-size: 0.94rem;
  color: #4a5568;
  line-height: 1.8;
  margin: 0;
}
.gp-procedure-section strong { color: #0a1628; }

/* Anatomy card */
.gp-anatomy-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 28px;
  text-align: center;
  position: sticky;
  top: 100px;
}
.gp-anatomy-illustration {
  color: #0a1628;
  margin-bottom: 16px;
}
.gp-anatomy-illustration svg {
  width: 100%;
  max-width: 240px;
  height: auto;
}
.gp-anatomy-caption {
  font-family: 'Space Mono', monospace, system-ui;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #6b7a99;
  text-transform: uppercase;
  line-height: 1.5;
  display: block;
}

/* Intro grid */
.gp-intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.gp-intro-grid h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(30px, 4vw, 46px);
  color: #0a1628;
  margin: 12px 0 22px;
  line-height: 1.1;
  font-weight: 500;
}
.gp-intro-grid h2 em { color: #c9a84c; font-style: italic; }
.gp-intro-grid p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.85;
  margin-bottom: 16px;
}
.gp-intro-grid strong { color: #0a1628; }
.gp-intro-quote {
  background: #0a1628;
  padding: 44px 36px;
  position: relative;
  color: #fff;
}
.gp-quote-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5rem;
  color: #c9a84c;
  line-height: 0.5;
  display: block;
  margin-bottom: 8px;
}
.gp-intro-quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
  margin-bottom: 20px;
}
.gp-quote-author {
  font-family: 'Space Mono', monospace, system-ui;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
}

/* Arthro grid */
.gp-arthro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gp-arthro-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-top: 3px solid #00b4a0;
  padding: 30px 26px;
}
.gp-arthro-card h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  color: #0a1628;
  margin: 0 0 12px;
  font-weight: 600;
}
.gp-arthro-card p {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0 0 16px;
}
.gp-arthro-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gp-arthro-list li {
  padding: 4px 0 4px 18px;
  position: relative;
  font-size: 0.85rem;
  color: #4a5568;
  line-height: 1.6;
}
.gp-arthro-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: #c9a84c;
  font-weight: 700;
}

/* Other procedures */
.gp-other-procedures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.gp-other-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-left: 3px solid #c9a84c;
  padding: 28px 30px;
}
.gp-other-card h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  color: #0a1628;
  margin: 0 0 12px;
  font-weight: 600;
}
.gp-other-card p {
  font-size: 0.92rem;
  color: #4a5568;
  line-height: 1.75;
  margin: 0;
}

/* Comparativa table */
.gp-compare-table {
  background: #fff;
  border: 1px solid #e2e8f0;
  margin-bottom: 18px;
}
.gp-compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  padding: 18px 24px;
  border-bottom: 1px solid #e2e8f0;
  align-items: center;
}
.gp-compare-row:last-child { border-bottom: none; }
.gp-compare-head {
  background: #0a1628;
  color: #c9a84c;
  font-family: 'Space Mono', monospace, system-ui;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.gp-compare-row > div {
  font-size: 0.9rem;
  color: #4a5568;
}
.gp-compare-row strong { color: #0a1628; }
.gp-compare-note {
  font-size: 0.82rem;
  color: #6b7a99;
  font-style: italic;
  text-align: center;
  max-width: 720px;
  margin: 18px auto 0;
}

/* ════════ CARE (después / herida) ════════ */
.gp-care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gp-care-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gp-care-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(10, 22, 40, 0.06);
}
.gp-care-card-highlight {
  background: linear-gradient(135deg, #0a1628 0%, #102040 100%);
  border-color: rgba(201, 168, 76, 0.4);
  color: #fff;
}
.gp-care-card-highlight h4 { color: #fff; }
.gp-care-card-highlight p { color: rgba(255, 255, 255, 0.72); }
.gp-care-card-highlight strong { color: #e8c96a; }
.gp-care-card-highlight .gp-care-when { color: #c9a84c !important; }
.gp-care-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 180, 160, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.gp-care-icon-cold { background: rgba(0, 180, 160, 0.1); color: #00b4a0; }
.gp-care-icon-warn { background: rgba(229, 113, 32, 0.1); }
.gp-care-icon-shield { background: rgba(160, 80, 120, 0.1); }
.gp-care-icon-med {
  background: rgba(201, 168, 76, 0.12);
  color: #c9a84c;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
}
.gp-care-icon-time {
  background: rgba(232, 201, 106, 0.15);
}
.gp-care-card h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  color: #0a1628;
  margin: 0 0 8px;
  font-weight: 600;
}
.gp-care-card p {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0 0 8px;
}
.gp-care-card strong { color: #0a1628; }
.gp-care-when {
  font-family: 'Space Mono', monospace, system-ui;
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9a84c;
  margin: 8px 0 4px !important;
  font-weight: 600;
}

/* MED grid */
.gp-med-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gp-med-block {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-top: 3px solid #c9a84c;
  padding: 28px 26px;
}
.gp-med-block h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  color: #0a1628;
  margin: 0 0 12px;
  font-weight: 600;
}
.gp-med-block p {
  font-size: 0.92rem;
  color: #4a5568;
  line-height: 1.75;
  margin: 0;
}
.gp-med-block strong { color: #0a1628; }

/* Mobility timeline */
.gp-mobility-timeline {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.gp-mobility-timeline::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, #c9a84c, #00b4a0);
  opacity: 0.3;
}
.gp-mob-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 22px 0;
  position: relative;
}
.gp-mob-marker {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #c9a84c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #c9a84c;
  z-index: 1;
  position: relative;
}
.gp-mob-content {
  padding-top: 6px;
}
.gp-mob-when {
  display: block;
  font-family: 'Space Mono', monospace, system-ui;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 8px;
  font-weight: 700;
}
.gp-mob-content h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  color: #0a1628;
  margin: 0 0 8px;
  font-weight: 600;
}
.gp-mob-content p {
  font-size: 0.92rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}

/* THERAPY section */
.gp-therapy-when {
  background: linear-gradient(135deg, rgba(0, 180, 160, 0.08), rgba(0, 180, 160, 0.02));
  border: 1px solid rgba(0, 180, 160, 0.3);
  padding: 32px 36px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 48px;
}
.gp-therapy-when-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #00b4a0;
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 300;
}
.gp-therapy-when h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  color: #0a1628;
  margin: 0 0 12px;
  font-weight: 600;
}
.gp-therapy-when p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.8;
  margin: 0 0 12px;
}
.gp-therapy-when strong { color: #0a1628; }
.gp-therapy-prelim {
  font-style: italic;
  color: #4a5568 !important;
  font-size: 0.93rem !important;
}

.gp-therapy-pillars-wrap {
  margin-bottom: 48px;
}
.gp-therapy-pillars-wrap h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  color: #0a1628;
  margin-bottom: 26px;
  text-align: center;
  font-weight: 500;
}
.gp-therapy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gp-therapy-pillar {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 32px 28px;
  position: relative;
}
.gp-tp-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6rem;
  color: rgba(201, 168, 76, 0.4);
  position: absolute;
  top: 18px;
  right: 24px;
  line-height: 1;
  font-weight: 400;
}
.gp-therapy-pillar h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  color: #0a1628;
  margin: 0 0 12px;
  font-weight: 600;
  padding-right: 60px;
}
.gp-therapy-pillar p {
  font-size: 0.88rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}
.gp-therapy-pillar strong { color: #0a1628; }

/* Therapy warnings */
.gp-therapy-warnings {
  background: rgba(229, 62, 62, 0.04);
  border: 1px solid rgba(229, 62, 62, 0.2);
  padding: 36px 40px;
}
.gp-therapy-warning-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.gp-tw-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(229, 62, 62, 0.15);
  color: #c53030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.gp-therapy-warning-header h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55rem;
  color: #0a1628;
  margin: 0;
  font-weight: 600;
}
.gp-therapy-warning-header h3 em {
  color: #c53030;
  font-style: italic;
}
.gp-therapy-warnings-intro {
  font-size: 0.95rem;
  color: #4a5568;
  margin-bottom: 22px;
  line-height: 1.7;
}
.gp-therapy-warnings-intro strong { color: #c53030; }
.gp-warnings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.gp-warning-item {
  background: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(229, 62, 62, 0.15);
}
.gp-w-x {
  color: #c53030;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.gp-warning-item strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.02rem;
  color: #0a1628;
  font-weight: 600;
}
.gp-therapy-electro {
  background: #fff;
  border-left: 3px solid #c9a84c;
  padding: 18px 22px;
  font-size: 0.93rem;
  color: #4a5568;
  line-height: 1.7;
}
.gp-therapy-electro strong { color: #0a1628; }

/* Red flags (banderas rojas) */
.gp-section-red {
  background: linear-gradient(160deg, #1a0a14 0%, #2a0f1c 60%, #1a0a14 100%);
  color: #fff;
}
.gp-red-flags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.gp-flag-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 100, 100, 0.25);
  border-left: 3px solid #e25555;
  padding: 24px 26px;
}
.gp-flag-card h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  color: #fff;
  margin: 0 0 10px;
  font-weight: 600;
}
.gp-flag-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin: 0;
}
.gp-flag-cta {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 100, 100, 0.3);
  padding: 32px;
  text-align: center;
}
.gp-flag-cta p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 22px;
}
.gp-flag-contacts {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.gp-flag-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: #e25555;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Space Mono', monospace, system-ui;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gp-flag-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(226, 85, 85, 0.4);
}
.gp-flag-btn-wa {
  background: #25d366;
}
.gp-flag-btn-wa:hover {
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 960px) {
  .gp-stages-grid { grid-template-columns: 1fr; }
  .gp-promise-grid { grid-template-columns: 1fr; gap: 40px; }
  .gp-exams-grid { grid-template-columns: 1fr 1fr; }
  .gp-eval-grid { grid-template-columns: 1fr; }
  .gp-feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .gp-procedure-grid,
  .gp-procedure-grid-reverse,
  .gp-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .gp-anatomy-card { position: static; }
  .gp-arthro-grid { grid-template-columns: 1fr; }
  .gp-other-procedures { grid-template-columns: 1fr; }
  .gp-compare-row { grid-template-columns: 1fr; gap: 8px; padding: 16px 18px; }
  .gp-compare-head { display: none; }
  .gp-compare-row > div::before {
    font-family: 'Space Mono', monospace, system-ui;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c9a84c;
    display: block;
    margin-bottom: 2px;
  }
  .gp-compare-row > div:nth-child(2)::before { content: 'Hospitalización: '; display: inline; }
  .gp-compare-row > div:nth-child(3)::before { content: 'Andadera: '; display: inline; }
  .gp-compare-row > div:nth-child(4)::before { content: 'Retorno: '; display: inline; }
  .gp-care-grid { grid-template-columns: 1fr; }
  .gp-med-grid { grid-template-columns: 1fr; }
  .gp-therapy-pillars { grid-template-columns: 1fr; }
  .gp-warnings-grid { grid-template-columns: 1fr; }
  .gp-red-flags { grid-template-columns: 1fr; }
  .gp-myth-card { grid-template-columns: 1fr; }
  .gp-myth-myth { border-right: none; border-bottom: 1px solid #e2e8f0; }
  .gp-check-item { grid-template-columns: 1fr; }
  .gp-stage-nav-inner { flex-direction: column; align-items: flex-start; }
  .gp-stage-nav-next { text-align: left; }
}

@media (max-width: 600px) {
  .gp-hero { padding: 110px 5% 60px; }
  .gp-sub-hero { padding: 110px 5% 50px; }
  .gp-section { padding: 60px 0; }
  .gp-promise, .gp-stages, .gp-timeline-overview, .gp-cta { padding: 60px 0; }
  .gp-exams-grid { grid-template-columns: 1fr; }
  .gp-timeline::before { left: 14px; }
  .gp-tl-step { grid-template-columns: 1fr; gap: 4px; padding: 14px 0 14px 36px; }
  .gp-tl-marker { position: absolute; left: 8px; top: 16px; margin: 0; }
  .gp-tl-when { text-align: left; }
  .gp-sub-hero-nav { gap: 14px 18px; }
  .gp-sub-hero-nav a { font-size: 0.66rem; }
  .gp-therapy-when { flex-direction: column; padding: 24px; }
  .gp-therapy-warnings { padding: 24px; }
  .gp-mobility-timeline::before { left: 16px; }
  .gp-mob-step { grid-template-columns: 36px 1fr; gap: 14px; }
  .gp-mob-marker { width: 32px; height: 32px; font-size: 1rem; }
}
/* ════════════════════════════════════════════════════════════
   TIMELINE HORIZONTAL — v1.1
   Añadir al FINAL de guia-paciente.css
   Reemplaza visualmente al antiguo .gp-timeline (vertical)
═══════════════════════════════════════════════════════════════ */

.gp-tl-h {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 0 20px;
}

/* Línea horizontal de fondo */
.gp-tl-h-track {
  position: absolute;
  top: 78px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(201, 168, 76, 0.15) 0%,
    rgba(201, 168, 76, 0.5) 30%,
    #c9a84c 50%,
    rgba(201, 168, 76, 0.5) 70%,
    rgba(201, 168, 76, 0.15) 100%);
  z-index: 0;
}

.gp-tl-h-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
}

/* "2-4 días antes", "1 semana antes", etc. */
.gp-tl-h-when {
  font-family: 'Space Mono', monospace, system-ui;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9a84c;
  font-weight: 700;
  margin-bottom: 24px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}

/* Punto central sobre la línea */
.gp-tl-h-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #0a1628;
  border: 2px solid #c9a84c;
  margin-bottom: 24px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gp-tl-h-step:hover .gp-tl-h-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.2);
}

/* Punto destacado del día de la cirugía */
.gp-tl-h-highlight .gp-tl-h-dot {
  width: 20px;
  height: 20px;
  background: #c9a84c;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.25),
              0 0 20px rgba(201, 168, 76, 0.4);
  margin-top: -3px;
}
.gp-tl-h-highlight .gp-tl-h-when {
  color: #e8c96a;
  font-weight: 700;
}

/* Card con la descripción */
.gp-tl-h-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 14px;
  border-radius: 4px;
  width: 100%;
  min-height: 100px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.gp-tl-h-step:hover .gp-tl-h-card {
  border-color: rgba(201, 168, 76, 0.35);
  background: rgba(201, 168, 76, 0.04);
  transform: translateY(-3px);
}
.gp-tl-h-highlight .gp-tl-h-card {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.06);
}

.gp-tl-h-card strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.25;
  font-weight: 600;
}

.gp-tl-h-card p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  margin: 0;
}

/* ════════════════════════════════════════════
   RESPONSIVE — Tablet (3 columnas en 2 filas)
════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .gp-tl-h {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 16px;
  }
  .gp-tl-h-track {
    display: none;
  }
  .gp-tl-h-when {
    margin-bottom: 14px;
    min-height: auto;
  }
  .gp-tl-h-dot {
    margin-bottom: 16px;
  }
}

/* ════════════════════════════════════════════
   RESPONSIVE — Móvil (timeline vertical compacto)
════════════════════════════════════════════ */
@media (max-width: 700px) {
  .gp-tl-h {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 20px 0;
    max-width: 460px;
    position: relative;
  }

  /* Línea vertical lateral izquierda */
  .gp-tl-h::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(180deg,
      rgba(201, 168, 76, 0.2) 0%,
      #c9a84c 50%,
      rgba(201, 168, 76, 0.2) 100%);
    z-index: 0;
  }

  .gp-tl-h-track { display: none; }

  .gp-tl-h-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto;
    align-items: start;
    text-align: left;
    gap: 16px;
    padding: 14px 0;
    position: relative;
  }

  .gp-tl-h-when {
    grid-column: 2;
    grid-row: 1;
    margin: 0 0 6px;
    text-align: left;
    justify-content: flex-start;
    min-height: auto;
  }

  .gp-tl-h-dot {
    grid-column: 1;
    grid-row: 1 / span 2;
    justify-self: center;
    margin: 4px 0 0;
    width: 14px;
    height: 14px;
  }

  .gp-tl-h-highlight .gp-tl-h-dot {
    margin-top: 1px;
    width: 18px;
    height: 18px;
  }

  .gp-tl-h-card {
    grid-column: 2;
    grid-row: 2;
    min-height: auto;
    padding: 10px 14px;
  }

  .gp-tl-h-card strong {
    font-size: 1rem;
  }

  .gp-tl-h-card p {
    font-size: 0.82rem;
  }
}
/* ════════════════════════════════════════════════════════════
   HERO SPLIT — Imagen al lado del texto (50/50)
   v1.0 · Añadir al FINAL de css/guia-paciente.css
═══════════════════════════════════════════════════════════════ */

/* ══════════ HERO HUB (split version) ══════════ */
.gp-hero {
  padding: 100px 0 80px !important;
}

.gp-hero-inner {
  max-width: 1280px !important;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  text-align: left !important;
}

/* La columna izquierda con el texto */
.gp-hero-text {
  /* contiene breadcrumb, eyebrow, h1, lead, disclaimer */
}

/* Quitar el centrado original del hero hub */
.gp-hero h1 {
  text-align: left;
}
.gp-hero-lead {
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left;
}
.gp-hero-disclaimer {
  text-align: left;
  max-width: 100% !important;
}

/* La columna derecha con la imagen */
.gp-hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 10px 30px rgba(201, 168, 76, 0.08);
}

.gp-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Marco decorativo dorado sutil alrededor */
.gp-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 76, 0.25);
  pointer-events: none;
  z-index: 2;
}

/* Línea dorada decorativa esquina superior derecha */
.gp-hero-image::after {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 60px;
  height: 60px;
  border-top: 2px solid #c9a84c;
  border-right: 2px solid #c9a84c;
  z-index: 2;
}

/* ══════════ SUB-HEROS (Antes / Durante / Después) ══════════ */
.gp-sub-hero {
  padding: 110px 0 70px !important;
}

.gp-sub-hero-inner {
  max-width: 1280px !important;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.gp-sub-hero-text {
  /* contiene breadcrumb, pill, h1, lead, sub-nav */
}

.gp-sub-hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 10px 30px rgba(201, 168, 76, 0.08);
}

.gp-sub-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gp-sub-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 76, 0.25);
  pointer-events: none;
  z-index: 2;
}

.gp-sub-hero-image::after {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 60px;
  height: 60px;
  border-top: 2px solid #c9a84c;
  border-right: 2px solid #c9a84c;
  z-index: 2;
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 960px) {
  .gp-hero-inner,
  .gp-sub-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  /* En móvil, la imagen va DESPUÉS del texto */
  .gp-hero-image,
  .gp-sub-hero-image {
    aspect-ratio: 16 / 11;
    max-height: 380px;
    order: 2;
  }

  .gp-hero-text,
  .gp-sub-hero-text {
    order: 1;
  }
}

@media (max-width: 600px) {
  .gp-hero { padding: 80px 0 60px !important; }
  .gp-sub-hero { padding: 90px 0 50px !important; }

  .gp-hero-image,
  .gp-sub-hero-image {
    aspect-ratio: 4 / 3;
    max-height: 280px;
  }

  .gp-hero-image::after,
  .gp-sub-hero-image::after {
    width: 40px;
    height: 40px;
    top: -6px;
    right: -6px;
  }
}
/* ════════════════════════════════════════════════════════════
   FIX TABLA COMPARATIVA — Encabezado legible (blanco + negrita)
   v1.0 · Añadir al FINAL de css/guia-paciente.css
═══════════════════════════════════════════════════════════════ */

/* Encabezado de la tabla comparativa: letras blancas + bold */
.gp-compare-head {
  background: #0a1628 !important;
}
.gp-compare-head > div {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-family: 'Space Mono', monospace, system-ui !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  opacity: 1 !important;
}
/* ════════════════════════════════════════════════════════════
   FIX TEXTO + NEGRITAS — Guía del Paciente
   v1.0 · Añadir al FINAL de css/guia-paciente.css
═══════════════════════════════════════════════════════════════ */

/* ══════════ 1. CARD "Retiro de puntos" (fondo navy oscuro) ══════════ */
/* Forzar texto BLANCO en el card destacado oscuro */
.gp-care-card-highlight,
.gp-care-card.gp-care-card-highlight {
  color: #ffffff !important;
}
.gp-care-card-highlight h4 {
  color: #ffffff !important;
}
.gp-care-card-highlight p {
  color: rgba(255, 255, 255, 0.85) !important;
}
.gp-care-card-highlight strong {
  color: #e8c96a !important;  /* dorado para el énfasis "3ra y 5ta semana" */
}
.gp-care-card-highlight .gp-care-when {
  color: #c9a84c !important;
}

/* ══════════ 2. NEGRITAS REFORZADAS EN TÍTULOS Y SUBTÍTULOS ══════════ */

/* H1 de heroes */
.gp-hero h1,
.gp-sub-hero h1 {
  font-weight: 600 !important;
}

/* H2 de secciones */
.gp-section-header h2,
.gp-stages-header h2,
.gp-promise-text h2,
.gp-feature-text h2,
.gp-procedure-header h2,
.gp-intro-grid h2,
.gp-cta h2 {
  font-weight: 700 !important;
}

/* H3 — cards de etapas, otros */
.gp-stage-card h3 {
  font-weight: 700 !important;
}

/* H4 — encabezados de cards */
.gp-exam-card h4,
.gp-eval-card h4,
.gp-check-body h4,
.gp-care-card h4,
.gp-med-block h4,
.gp-mob-content h4,
.gp-therapy-pillar h4,
.gp-arthro-card h4,
.gp-other-card h4,
.gp-flag-card h4,
.gp-therapy-when h4,
.gp-procedure-section h4 {
  font-weight: 700 !important;
}

/* Eyebrow (texto pequeño arriba de los títulos) en negrita */
.gm-eyebrow {
  font-weight: 700 !important;
}

/* Strong dentro de párrafos */
.gp-section p strong,
.gp-procedure-section p strong,
.gp-callout strong,
.gp-feature-text strong,
.gp-promise-text strong,
.gp-care-card p strong,
.gp-check-body p strong,
.gp-therapy-when p strong {
  font-weight: 700 !important;
}

/* Títulos del timeline horizontal */
.gp-tl-h-card strong {
  font-weight: 700 !important;
}

/* Items de FAQ (preguntas) */
.gp-faq-item summary {
  font-weight: 700 !important;
}

/* Card de evidencia */
.gp-evidence-badge {
  font-weight: 700 !important;
}

/* Footer de stage nav */
.gp-stage-nav-next strong {
  font-weight: 700 !important;
}
/* ════════════════════════════════════════════════════════════
   FIX IMÁGENES ANATÓMICAS — Durante la Cirugía
   v1.0 · Añadir al FINAL de css/guia-paciente.css
═══════════════════════════════════════════════════════════════ */

/* Permitir que las imágenes <img> dentro del card de anatomía se vean bien */
.gp-anatomy-illustration img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
}

/* El card de anatomía un poco más ancho/contenedor para las imágenes */
.gp-anatomy-card {
  padding: 24px 20px;
}

.gp-anatomy-illustration {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
/* ════════════════════════════════════════════════════════════
   VIDEO EMBED YOUTUBE — Card de procedimiento
   v1.0 · Añadir al FINAL de css/guia-paciente.css
═══════════════════════════════════════════════════════════════ */

/* Contenedor responsive 16:9 para el iframe de YouTube */
.gp-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
}

/* El iframe ocupa todo el contenedor */
.gp-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Detalle decorativo: línea dorada esquina superior derecha */
.gp-video-embed::after {
  content: '';
  position: absolute;
  top: -6px;
  right: -6px;
  width: 40px;
  height: 40px;
  border-top: 2px solid #c9a84c;
  border-right: 2px solid #c9a84c;
  z-index: 2;
  pointer-events: none;
}

/* En el card de anatomía con video, ajustar padding */
.gp-anatomy-card .gp-video-embed + .gp-anatomy-caption {
  margin-top: 4px;
}

/* En móvil, asegurar que el video se vea cómodo */
@media (max-width: 700px) {
  .gp-video-embed::after {
    width: 28px;
    height: 28px;
    top: -4px;
    right: -4px;
  }
}
/* ════════════════════════════════════════════════════════════
   IMAGEN SECUNDARIA — Debajo del video en cards de procedimiento
   v1.0 · Añadir al FINAL de css/guia-paciente.css
═══════════════════════════════════════════════════════════════ */

/* Espaciado entre caption del video y la imagen secundaria */
.gp-anatomy-card .gp-anatomy-illustration-secondary {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px dashed rgba(10, 22, 40, 0.1);
  min-height: auto;
}

/* La imagen secundaria con un poco menos de altura que la principal */
.gp-anatomy-illustration-secondary img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(10, 22, 40, 0.08);
}

/* Ajustar el caption después de la imagen secundaria */
.gp-anatomy-illustration-secondary + .gp-anatomy-caption {
  margin-top: 10px;
  display: block;
}