/* ============================================================
   LOS ALTILLOS — DESIGN SYSTEM VARIABLES
   ============================================================ */
:root {
  --color-bg:           #FFFFFF;
  --color-bg-secondary: #F7F8FA;
  --color-bg-tertiary:  #EFF2F6;
  --color-bg-dark:      #012B60;
  --color-secondary:       #023778;
  --color-secondary-dark:  #012B60;
  --color-secondary-light: #0B4AA1;
  --color-accent:       #C7081D;
  --color-accent-light: #E01A33;
  --color-accent-dark:  #A10717;
  --color-steel:        #C7CED8;
  --color-steel-light:  #EEF1F5;
  --color-steel-dark:   #9AA3B2;
  --color-text:         #0F172A;
  --color-text-muted:   #334155;
  --color-text-subtle:  #64748B;
  --color-border:       #E2E8F0;
  --color-border-dark:  #CBD5E1;
  --color-success:      #22C55E;
  --font-display: 'Archivo Black', sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 40px rgba(199,8,29,0.22);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 12px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.gx-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  z-index: 1000;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.gx-main { width: 100%; overflow-x: hidden; }

.gx-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.gx-container--narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}
.gx-container--reading {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   HERO
   ============================================================ */
.gx-hero {
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 5rem 0 4rem;
  color: white;
  display: flex;
  align-items: center;
}

/* Imagen de fondo real dentro del hero */
.gx-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
/* Overlay oscuro para que el texto se lea bien */
.gx-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
  135deg,
  rgba(0, 0, 0, 0.94) 0%,
  rgba(10, 10, 10, 0.86) 45%,
  rgba(24, 24, 24, 0.72) 100%
);
}

/* Grid pattern overlay */
.gx-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.025) 40px,
      rgba(255,255,255,0.025) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.025) 40px,
      rgba(255,255,255,0.025) 41px
    );
  pointer-events: none;
}

.gx-hero__inner {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gx-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.gx-breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.gx-breadcrumb a:hover {
  color: rgba(255,255,255,0.8);
}

.gx-breadcrumb__sep {
  color: rgba(255,255,255,0.2);
}

.gx-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.gx-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.8rem;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.gx-tag--hero {
  background: rgba(199,8,29,0.2);
  color: #ff8898;
  border: 1px solid rgba(199,8,29,0.35);
}

.gx-tag--geo {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.15);
}

.gx-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 1.75rem;
}

.gx-hero h1 em {
  font-style: normal;
  color: rgba(255,255,255,0.6);
}

.gx-hero__meta {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
}

.gx-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.gx-hero__meta-item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ============================================================
   TABLE OF CONTENTS
   ============================================================ */
.gx-toc-wrap {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 3.5rem auto;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.gx-toc-wrap { margin: 3rem 2rem; }
@media (min-width: 800px) { .gx-toc-wrap { max-width: 740px; margin: 3rem auto; } }

.gx-toc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
}

.gx-toc-trigger__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-subtle);
}

.gx-toc-chevron {
  width: 26px; height: 26px;
  background: var(--color-bg-tertiary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--color-text-subtle);
}
.gx-toc-chevron svg { width: 11px; height: 11px; }
.gx-toc-wrap.open .gx-toc-chevron { transform: rotate(180deg); }

.gx-toc-body {
  display: none;
  padding: 0 1.75rem 1.5rem;
  border-top: 1px solid var(--color-border);
}
.gx-toc-wrap.open .gx-toc-body { display: block; }

.gx-toc-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
  counter-reset: toc-counter;
  padding-top: 1rem;
}
.gx-toc-list li { counter-increment: toc-counter; }
.gx-toc-list a {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 0.38rem 0;
  transition: color var(--transition-fast);
  border-bottom: 1px dashed var(--color-border);
}
.gx-toc-list a::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-family: monospace;
  font-size: 0.63rem;
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
}
.gx-toc-list a:hover { color: var(--color-accent); }

/* ============================================================
   SECTIONS
   ============================================================ */
.gx-section { padding: 5rem 0; }
.gx-section--steel    { background: var(--color-steel-light); }
.gx-section--secondary { background: var(--color-bg-secondary); }
.gx-section--dark {
  background: var(--color-bg-dark);
  background-image: linear-gradient(160deg, #011f47 0%, #023778 60%, #012B60 100%);
}

/* ============================================================
   TYPOGRAPHY — HEADINGS
   ============================================================ */
.gx-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.gx-section--dark .gx-eyebrow { color: rgba(199,8,29,0.75); }

h2.gx-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  padding-bottom: 1.1rem;
  border-bottom: 2px solid var(--color-border);
  position: relative;
}
h2.gx-h2::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 44px; height: 2px;
  background: var(--color-accent);
}
.gx-section--dark h2.gx-h2 { color: white; border-bottom-color: rgba(255,255,255,0.1); }

h3.gx-h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-top: 2.75rem;
  margin-bottom: 0.85rem;
}
.gx-section--dark h3.gx-h3 { color: rgba(255,255,255,0.9); }

h4.gx-h4 {
  font-size: 1.0rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  margin-top: 1.25rem;
}

p.gx-p {
  font-size: 1.05rem;
  line-height: 1.82;
  color: var(--color-text-muted);
  margin-bottom: 1.2rem;
}
p.gx-p:last-child { margin-bottom: 0; }
.gx-section--dark p.gx-p { color: rgba(255,255,255,0.68); }

/* ============================================================
   ANECDOTE / STORY BLOCKS
   ============================================================ */
.gx-anecdote {
  background: rgba(2,55,120,0.05);
  border-left: 4px solid var(--color-secondary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.75rem 2rem;
  margin: 2.25rem 0;
  position: relative;
  overflow: hidden;
}
.gx-anecdote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
  color: var(--color-secondary);
  opacity: 0.09;
  position: absolute;
  top: -1rem; left: 0.75rem;
  pointer-events: none;
  user-select: none;
}
.gx-anecdote p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  position: relative;
}
.gx-anecdote p:last-child { margin-bottom: 0; }

/* Dark-bg anecdote variant */
.gx-anecdote--dark {
  background: rgba(255,255,255,0.06);
  border-left-color: rgba(255,255,255,0.25);
}
.gx-anecdote--dark::before { color: rgba(255,255,255,0.08); }
.gx-anecdote--dark p { color: rgba(255,255,255,0.65); }

/* Dialogue */
.gx-dialogue {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.5rem;
  margin: 1rem 0;
  box-shadow: var(--shadow-sm);
}
.gx-dialogue p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text) !important;
  margin-bottom: 0.4rem !important;
}
.gx-dialogue p:last-child { margin-bottom: 0 !important; }

.gx-dialogue--dark {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}
.gx-dialogue--dark p { color: rgba(255,255,255,0.85) !important; }

/* ============================================================
   CALLOUT BOXES
   ============================================================ */
.gx-callout {
  background: rgba(199,8,29,0.05);
  border: 1px solid rgba(199,8,29,0.18);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  margin: 1.75rem 0;
}
.gx-callout--blue {
  background: rgba(2,55,120,0.06);
  border-color: rgba(2,55,120,0.18);
}
.gx-callout__label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.gx-callout--blue .gx-callout__label { color: var(--color-secondary); }
.gx-callout p {
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin: 0;
}

/* ============================================================
   INTERNAL LINK BOX
   ============================================================ */
.gx-link-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
  text-decoration: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.gx-link-box:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.gx-link-box__icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gx-link-box__icon svg { width: 22px; height: 22px; color: white; }
.gx-link-box__content { flex: 1; }
.gx-link-box__meta {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.25rem;
}
.gx-link-box__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: white;
  line-height: 1.25;
}
.gx-link-box__arrow { color: rgba(255,255,255,0.5); font-size: 1.25rem; flex-shrink: 0; }

/* ============================================================
   GRIDS
   ============================================================ */
.gx-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.gx-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ============================================================
   USE CARDS
   ============================================================ */
.gx-use-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: all var(--transition-base);
}
.gx-use-card:hover { border-color: var(--color-secondary); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.gx-use-card__icon {
  width: 44px; height: 44px;
  background: var(--color-steel-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.gx-use-card h3 {
  font-family: var(--font-display);
  font-size: 1.0rem;
  color: var(--color-text);
  margin-bottom: 0.45rem;
  line-height: 1.2;
}
.gx-use-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
}

/* ============================================================
   REGION CARDS (dark section)
   ============================================================ */
.gx-region-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
}
.gx-region-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(199,8,29,0.35); }
.gx-region-card__badge {
  display: inline-block;
  background: rgba(199,8,29,0.18);
  color: #ff8898;
  border: 1px solid rgba(199,8,29,0.3);
  border-radius: 100px;
  padding: 0.18rem 0.75rem;
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.gx-region-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: white;
  margin-bottom: 0.75rem;
  margin-top: 0;
  line-height: 1.25;
}
.gx-region-card p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}
.gx-region-card p:last-child { margin-bottom: 0; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.gx-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: 2.5rem;
}
.gx-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.gx-table th {
  padding: 1.15rem 1.6rem;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.gx-table th:first-child  { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.45); }
.gx-table th:nth-child(2) { background: rgba(199,8,29,0.15);   color: #ff8898; }
.gx-table th:nth-child(3) { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.45); }
.gx-table td {
  padding: 1rem 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  line-height: 1.55;
  vertical-align: top;
}
.gx-table td:first-child {
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.gx-table td:nth-child(2) { color: rgba(255,255,255,0.82); }
.gx-table td:nth-child(3) { color: rgba(255,255,255,0.45); }
.gx-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

/* ============================================================
   ADVANTAGE / DISADVANTAGE CARDS
   ============================================================ */
.gx-adv-card {
  background: white;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-success);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition-base);
}
.gx-adv-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.gx-dis-card {
  background: white;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-steel-dark);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.gx-card-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.gx-card-icon--green { background: rgba(34,197,94,0.1); }
.gx-card-icon--steel { background: var(--color-steel-light); }

.gx-card-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-subtle);
  margin-bottom: 0.5rem;
}
.gx-adv-card .gx-card-eyebrow { color: #16a34a; }

.gx-adv-card h3, .gx-dis-card h3 {
  font-family: var(--font-display);
  font-size: 1.0rem;
  color: var(--color-text);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.gx-adv-card p, .gx-dis-card p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin: 0;
}

/* ============================================================
   MYTH CARDS (dark section)
   ============================================================ */
.gx-myth-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}
.gx-myth-card:hover { background: rgba(255,255,255,0.085); border-color: rgba(199,8,29,0.3); }
.gx-myth-card::before {
  content: '✕';
  position: absolute;
  top: -0.75rem; right: 0.75rem;
  font-size: 5.5rem;
  color: rgba(199,8,29,0.07);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.gx-myth-label {
  display: inline-block;
  background: rgba(199,8,29,0.22);
  color: #ff8898;
  border: 1px solid rgba(199,8,29,0.38);
  border-radius: 100px;
  padding: 0.18rem 0.75rem;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}
.gx-myth-claim {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.3;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.gx-myth-divider { height: 1px; background: rgba(255,255,255,0.09); margin: 1rem 0; }
.gx-myth-card p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.58);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ============================================================
   ERROR LIST
   ============================================================ */
.gx-error-list { list-style: none; margin-top: 2rem; }
.gx-error-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  transition: all var(--transition-base);
}
.gx-error-item:hover { border-color: var(--color-accent); box-shadow: var(--shadow-sm); }
.gx-error-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.25;
  flex-shrink: 0;
  min-width: 2.2rem;
}
.gx-error-item h4 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.gx-error-item p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin: 0;
}

/* ============================================================
   CHECKLIST CARD
   ============================================================ */
.gx-checklist {
  background: white;
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-lg);
}
.gx-checklist__head {
  background: linear-gradient(135deg, #012B60 0%, #023778 100%);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.gx-checklist__head h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: white;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}
.gx-checklist__head p { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin: 0; }
.gx-checklist__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(199,8,29,0.18);
  color: #ff8898;
  border: 1px solid rgba(199,8,29,0.3);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.95rem;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  white-space: nowrap;
  flex-shrink: 0;
}
.gx-checklist__badge svg { width: 13px; height: 13px; }

.gx-checklist__body { padding: 2rem 2.5rem; }
.gx-checklist__items {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.5rem;
}
.gx-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--color-border);
}
.gx-checklist__items li:nth-last-child(-n+2) .gx-checklist__item { border-bottom: none; }

.gx-checkbox {
  width: 20px; height: 20px;
  border: 2px solid var(--color-border-dark);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
.gx-checkbox.checked {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}
.gx-checkbox.checked::after {
  content: '';
  width: 10px; height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}
.gx-checklist__item p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}

.gx-checklist__foot {
  padding: 1.35rem 2.5rem;
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.gx-checklist__foot p { font-size: 0.78rem; color: var(--color-text-subtle); margin: 0; }

.gx-btn-print {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.72rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}
.gx-btn-print:hover { box-shadow: var(--shadow-md), var(--shadow-glow); transform: translateY(-1px); }
.gx-btn-print svg { width: 13px; height: 13px; }

/* ============================================================
   RED FLAGS
   ============================================================ */
.gx-red-flags {
  background: rgba(199,8,29,0.04);
  border: 1px solid rgba(199,8,29,0.15);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.6rem 1.75rem;
  margin: 2.25rem 0;
}
.gx-red-flags__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-accent);
  margin-bottom: 0.6rem;
}
.gx-red-flags p { font-size: 0.94rem; line-height: 1.75; color: var(--color-text-muted); margin: 0; }

/* ============================================================
   DECISION CARDS
   ============================================================ */
.gx-decision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }

.gx-dec-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.gx-dec-card--yes { background: rgba(34,197,94,0.05); border: 2px solid rgba(34,197,94,0.22); }
.gx-dec-card--no  { background: rgba(199,8,29,0.04);  border: 2px solid rgba(199,8,29,0.15); }

.gx-dec-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.8rem;
  border-radius: 100px;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 1rem;
}
.gx-dec-badge--yes { background: rgba(34,197,94,0.12); color: #15803d; border: 1px solid rgba(34,197,94,0.25); }
.gx-dec-badge--no  { background: rgba(199,8,29,0.1);   color: var(--color-accent); border: 1px solid rgba(199,8,29,0.2); }

.gx-dec-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.gx-dec-card--yes h3 { color: #15803d; }
.gx-dec-card--no  h3 { color: var(--color-accent-dark); }
.gx-dec-card p { font-size: 0.875rem; line-height: 1.75; color: var(--color-text-muted); margin: 0; }

/* ============================================================
   CONCLUSION
   ============================================================ */
.gx-conclusion {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.gx-conclusion h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: white;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  padding-bottom: 1.1rem;
  border-bottom: 2px solid rgba(255,255,255,0.1);
  position: relative;
  text-align: left;
}
.gx-conclusion h2::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 44px; height: 2px;
  background: var(--color-accent);
}
.gx-conclusion p.gx-p { text-align: left; }
.gx-conclusion-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: white;
  line-height: 1.3;
  text-align: left;
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--color-accent);
  background: rgba(255,255,255,0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2.25rem 0;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.gx-faq-list { margin-top: 2.5rem; }
.gx-faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}
.gx-faq-item.open { box-shadow: var(--shadow-md); border-color: var(--color-secondary); }

.gx-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-text);
  transition: background var(--transition-fast);
}
.gx-faq-q:hover { background: var(--color-bg-secondary); }
.gx-faq-item.open .gx-faq-q { background: var(--color-bg-secondary); color: var(--color-secondary); }

.gx-faq-icon {
  width: 26px; height: 26px;
  background: var(--color-bg-tertiary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
  color: var(--color-text-subtle);
}
.gx-faq-icon svg { width: 13px; height: 13px; }
.gx-faq-item.open .gx-faq-icon { background: var(--color-secondary); color: white; transform: rotate(45deg); }

.gx-faq-a { display: none; padding: 0 1.5rem 1.5rem; }
.gx-faq-item.open .gx-faq-a { display: block; }
.gx-faq-a p { font-size: 0.9375rem; line-height: 1.78; color: var(--color-text-muted); margin-bottom: 0.7rem; }
.gx-faq-a p:last-child { margin-bottom: 0; }

/* ============================================================
   PRINT CSS — CHECKLIST ONLY
   ============================================================ */
@media print {
  .gx-progress, .gx-hero, .gx-toc-wrap,
  .gx-section:not(#empresas),
  #empresas > *:not(.gx-container--narrow),
  .gx-checklist__foot .gx-btn-print { display: none !important; }
  body { background: white; }
  .gx-checklist { border: 2px solid #012B60; box-shadow: none; page-break-inside: avoid; }
  .gx-checklist__head { background: #012B60 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 767px) {
 .gx-hero {
    min-height: 460px;
    padding: 3rem 0 2.5rem;
  }

  .gx-hero__bg {
    object-position: center center;
  }

  .gx-hero__overlay {
    background: linear-gradient(
      135deg,
      rgba(1, 31, 71, 0.94) 0%,
      rgba(2, 55, 120, 0.84) 55%,
      rgba(1, 43, 96, 0.72) 100%
    );
  }

  .gx-section {
    padding: 3.5rem 0;
  }

  .gx-container,
  .gx-container--narrow,
  .gx-container--reading {
    padding: 0 1.25rem;
  }

  .gx-hero__inner {
    padding: 0 1.25rem;
  }

  .gx-grid-2,
  .gx-grid-3 {
    grid-template-columns: 1fr;
  }

  .gx-toc-list {
    grid-template-columns: 1fr;
  }

  .gx-checklist__items {
    grid-template-columns: 1fr;
  }

  .gx-checklist__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .gx-checklist__body {
    padding: 1.5rem;
  }

  .gx-checklist__foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .gx-decision-grid {
    grid-template-columns: 1fr;
  }

  .gx-img-break--mid {
    height: 210px;
  }

  .gx-link-box {
    flex-direction: column;
    gap: 1rem;
  }

  .gx-link-box__arrow {
    display: none;
  }

  h3.gx-h3 {
    font-size: 1.15rem;
    margin-top: 2.25rem;
  }
}

@media (max-width: 480px) {
  .gx-hero {
    min-height: 430px;
    padding: 2.75rem 0 2.25rem;
  }

  .gx-hero h1 {
    font-size: 1.85rem;
  }

  .gx-hero__meta {
    gap: 1rem;
  }

  .gx-checklist__items li:nth-last-child(-n+2) .gx-checklist__item {
    border-bottom: 1px solid var(--color-border);
  }

  .gx-checklist__items li:last-child .gx-checklist__item {
    border-bottom: none;
  }
}
</style>
