/* ============================================================
   Academia BusinessManager – Estilos principales
   ============================================================ */

/* --- Variables -------------------------------------------- */
:root {
  --color-dark:      #0b1626;
  --color-navy:      #112240;
  --color-blue:      #0077e6;
  --color-blue-light:#00a8ff;
  --color-cyan:      #00d4ff;
  --color-accent:    #0099cc;
  --color-text:      #1a2740;
  --color-muted:     #4a5568;
  --color-light:     #f0f5fb;
  --color-white:     #ffffff;
  --color-border:    #dde4ef;
  --color-success:   #10b981;

  --font-base: 'Segoe UI', system-ui, -apple-system, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.16);

  --max-w: 1200px;
  --section-py: 5rem;
}

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-base); color: var(--color-text); background: var(--color-white); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* --- Utilidades ------------------------------------------- */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: 1.5rem; }
.section-tag {
  display: inline-block;
  background: rgba(0,119,230,.1);
  color: var(--color-blue);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 1.1rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 680px;
  margin-bottom: 3rem;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-inline: auto; }
.highlight { color: var(--color-blue); }

/* --- Botones ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .95rem;
  font-weight: 700;
  padding: .85rem 1.8rem;
  border-radius: var(--radius-md);
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-light));
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(0,119,230,.35);
}
.btn-primary:hover { box-shadow: 0 8px 30px rgba(0,119,230,.5); }
.btn-outline {
  border: 2px solid var(--color-blue);
  color: var(--color-blue);
  background: transparent;
}
.btn-outline:hover { background: var(--color-blue); color: var(--color-white); }
.btn-white {
  background: var(--color-white);
  color: var(--color-blue);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { box-shadow: var(--shadow-lg); }
.btn-ghost {
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-ghost:hover { background: rgba(255,255,255,.15); border-color: var(--color-white); }
.btn-sm { padding: .6rem 1.2rem; font-size: .875rem; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,22,38,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.3); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}
.nav-logo img { height: 52px; width: auto; }
.nav-logo .logo-placeholder {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 800;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  font-weight: 500;
  padding: .5rem .6rem;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--color-white); background: rgba(255,255,255,.08); }
.nav-cta { display: flex; align-items: center; gap: .75rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--color-dark);
    padding: 1.5rem;
    gap: .25rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .75rem 1rem; font-size: 1rem; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--color-dark) 0%, #0d2040 50%, #0a1f3a 100%);
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 70% 50%, rgba(0,168,255,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,119,230,.08) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,168,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,168,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-block: 5rem 4rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(0,168,255,.15);
  border: 1px solid rgba(0,168,255,.3);
  color: var(--color-cyan);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--color-blue-light), var(--color-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  max-width: 640px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-note {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--color-white);
}
.hero-stat span { font-size: .875rem; color: rgba(255,255,255,.55); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-accent) 100%);
  padding: 1.25rem 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--color-white);
  font-size: .875rem;
  font-weight: 600;
}
.trust-item svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================================
   PROBLEMA
   ============================================================ */
.problem { padding: var(--section-py) 0; background: var(--color-light); }
.problem-intro {
  max-width: 760px;
  margin-bottom: 3rem;
}
.problem-intro p {
  font-size: 1.05rem;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.problem-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: border-color .2s, box-shadow .2s;
}
.problem-item:hover { border-color: var(--color-blue); box-shadow: var(--shadow-sm); }
.problem-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(220,38,38,.1);
  color: #dc2626;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.problem-item p { font-size: .95rem; color: var(--color-muted); }
.problem-close {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-dark);
  border-left: 4px solid var(--color-blue);
  padding-left: 1.25rem;
  margin-top: 1rem;
}

/* ============================================================
   PROPUESTA DE VALOR (Tabla comparativa)
   ============================================================ */
.value-prop { padding: var(--section-py) 0; }
.compare-table { width: 100%; border-collapse: collapse; margin-top: 2rem; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.compare-table th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.compare-table th:first-child { background: #e5e7eb; color: var(--color-muted); }
.compare-table th:last-child { background: var(--color-blue); color: var(--color-white); }
.compare-table td { padding: 1rem 1.5rem; font-size: .95rem; border-bottom: 1px solid var(--color-border); }
.compare-table td:first-child { background: #f9fafb; color: var(--color-muted); }
.compare-table td:last-child { background: rgba(0,119,230,.04); color: var(--color-text); font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }
.value-phrase {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-dark);
  font-weight: 600;
}

/* ============================================================
   MÉTODO
   ============================================================ */
.method { padding: var(--section-py) 0; background: var(--color-dark); }
.method .section-title { color: var(--color-white); }
.method .section-subtitle { color: rgba(255,255,255,.6); }
.method .section-tag { background: rgba(0,168,255,.2); color: var(--color-cyan); }
.method-flow {
  display: flex;
  gap: 0;
  margin: 2.5rem 0;
  overflow-x: auto;
}
.method-step {
  flex: 1;
  min-width: 160px;
  position: relative;
}
.method-step::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 32px;
  color: var(--color-blue);
  font-size: 1.25rem;
  font-weight: 700;
  z-index: 1;
}
.method-step:last-child::after { display: none; }
.method-step-inner {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  margin-right: 1.5rem;
  height: 100%;
  transition: background .2s, border-color .2s;
}
.method-step-inner:hover { background: rgba(0,119,230,.15); border-color: rgba(0,119,230,.4); }
.step-num {
  font-size: .75rem;
  font-weight: 700;
  color: var(--color-cyan);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.step-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: .6rem;
}
.step-desc { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.5; }
.method-close {
  text-align: center;
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  margin-top: 1.5rem;
  font-style: italic;
}

/* ============================================================
   LÍNEAS DE FORMACIÓN
   ============================================================ */
.lines { padding: var(--section-py) 0; background: var(--color-light); }
.lines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.line-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.line-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-blue); }
.line-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.line-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: .6rem; color: var(--color-dark); }
.line-card .ideal { font-size: .8rem; color: var(--color-muted); margin-bottom: 1rem; }
.line-card p { font-size: .9rem; color: var(--color-muted); margin-bottom: 1.25rem; line-height: 1.6; }

/* ============================================================
   PROGRAMAS
   ============================================================ */
.programs { padding: var(--section-py) 0; }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.program-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.program-number {
  font-size: .75rem;
  font-weight: 700;
  color: var(--color-blue);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
}
.program-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--color-dark); margin-bottom: .75rem; }
.program-card p { font-size: .9rem; color: var(--color-muted); margin-bottom: 1rem; flex: 1; }
.program-result {
  background: rgba(0,119,230,.07);
  border-left: 3px solid var(--color-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: .75rem 1rem;
  font-size: .85rem;
  color: var(--color-dark);
  margin-bottom: .75rem;
}
.program-result strong { color: var(--color-blue); }
.program-audience {
  font-size: .8rem;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}
.program-audience strong { color: var(--color-text); }

/* ============================================================
   AGENDA (próximos programas)
   ============================================================ */
.agenda { padding: var(--section-py) 0; background: var(--color-light); }
.agenda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.agenda-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.agenda-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.agenda-header {
  background: linear-gradient(135deg, var(--color-dark), var(--color-navy));
  padding: 1.5rem;
}
.agenda-header h3 { font-size: 1rem; font-weight: 800; color: var(--color-white); margin-bottom: .35rem; }
.agenda-header p { font-size: .8rem; color: rgba(255,255,255,.65); }
.agenda-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.agenda-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.agenda-meta-item label { display: block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--color-muted); margin-bottom: .2rem; }
.agenda-meta-item span { font-size: .9rem; font-weight: 600; color: var(--color-text); }
.agenda-audience { font-size: .8rem; color: var(--color-muted); margin-bottom: 1.25rem; flex: 1; }
.agenda-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ============================================================
   PARA QUIÉN
   ============================================================ */
.for-who { padding: var(--section-py) 0; }
.forwho-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.forwho-card {
  background: var(--color-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  transition: border-color .2s, background .2s;
}
.forwho-card:hover { border-color: var(--color-blue); background: rgba(0,119,230,.04); }
.forwho-card .icon { font-size: 2rem; margin-bottom: .75rem; }
.forwho-card h3 { font-size: .95rem; font-weight: 800; color: var(--color-dark); margin-bottom: .5rem; }
.forwho-card p { font-size: .85rem; color: var(--color-muted); }

/* ============================================================
   BENEFICIOS
   ============================================================ */
.benefits { padding: var(--section-py) 0; background: var(--color-light); }
.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.benefit-item {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
}
.benefit-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(16,185,129,.12);
  color: var(--color-success);
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.benefit-item p { font-size: .9rem; color: var(--color-text); font-weight: 500; }

/* ============================================================
   MENTORÍA / IN-COMPANY / CERTIFICACIONES / CLUB
   ============================================================ */
.mentoring { padding: var(--section-py) 0; }
.mentoring-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.mentoring-content h2 { margin-bottom: 1rem; }
.mentoring-content p { font-size: 1rem; color: var(--color-muted); margin-bottom: 1.5rem; }
.includes-list { margin-bottom: 2rem; }
.includes-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .65rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: .9rem;
  color: var(--color-text);
}
.includes-list li:last-child { border-bottom: none; }
.includes-list li::before { content: '✓'; color: var(--color-blue); font-weight: 700; flex-shrink: 0; margin-top: .05rem; }
.mentoring-card {
  background: linear-gradient(160deg, var(--color-dark), var(--color-navy));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--color-white);
}
.mentoring-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 1rem; }
.mentoring-card p { color: rgba(255,255,255,.75); margin-bottom: 1.5rem; font-size: .95rem; }
.mentoring-card .result-box {
  background: rgba(0,168,255,.15);
  border: 1px solid rgba(0,168,255,.3);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.mentoring-card .result-box strong { display: block; color: var(--color-cyan); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .4rem; }
.mentoring-card .result-box p { color: rgba(255,255,255,.85); margin: 0; }

/* ============================================================
   ECOSISTEMA ERP
   ============================================================ */
.ecosystem {
  padding: var(--section-py) 0;
  background: linear-gradient(160deg, var(--color-dark), #0d2040);
}
.ecosystem .section-title { color: var(--color-white); }
.ecosystem .section-subtitle { color: rgba(255,255,255,.6); }
.ecosystem .section-tag { background: rgba(0,168,255,.2); color: var(--color-cyan); }
.ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2.5rem;
}
.eco-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.eco-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--color-white); margin-bottom: .75rem; }
.eco-card p { font-size: .9rem; color: rgba(255,255,255,.65); }
.eco-arrow {
  font-size: 2rem;
  color: var(--color-cyan);
  text-align: center;
}
.eco-phrase {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,.7);
}

/* ============================================================
   CERTIFICACIONES
   ============================================================ */
.certs { padding: var(--section-py) 0; background: var(--color-light); }
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.cert-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.cert-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cert-level {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-blue);
  margin-bottom: .6rem;
}
.cert-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--color-dark); margin-bottom: .75rem; }
.cert-card .objetivo { font-size: .875rem; color: var(--color-muted); margin-bottom: 1.25rem; }
.cert-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: 1.75rem;
}

/* ============================================================
   CLUB
   ============================================================ */
.club { padding: var(--section-py) 0; }
.club-inner {
  background: linear-gradient(135deg, var(--color-blue), var(--color-accent));
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  color: var(--color-white);
}
.club-content h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 1rem; color: var(--color-white); }
.club-content p { color: rgba(255,255,255,.85); margin-bottom: 1.5rem; font-size: .95rem; }
.club-includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.club-include-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  color: rgba(255,255,255,.9);
}
.club-include-item::before { content: '★'; font-size: .7rem; color: rgba(255,255,255,.7); flex-shrink: 0; }

/* ============================================================
   DIAGNÓSTICO CTA
   ============================================================ */
.diagnostic { padding: var(--section-py) 0; background: var(--color-light); }
.diagnostic-inner {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}
.diag-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-top: 1.25rem;
}
.diag-area {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--color-muted);
}
.diag-area::before { content: '◆'; font-size: .5rem; color: var(--color-blue); flex-shrink: 0; }

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testimonials { padding: var(--section-py) 0; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 4rem;
  color: rgba(0,119,230,.1);
  font-family: Georgia, serif;
  line-height: 1;
}
.testi-card blockquote { font-size: .95rem; color: var(--color-muted); font-style: italic; margin-bottom: 1.25rem; line-height: 1.7; }
.testi-author strong { font-size: .9rem; font-weight: 700; color: var(--color-dark); }
.testi-author span { display: block; font-size: .8rem; color: var(--color-muted); }
.testi-placeholder {
  text-align: center;
  padding: 3rem;
  background: var(--color-light);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  color: var(--color-muted);
  font-size: .95rem;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  padding: var(--section-py) 0;
  background: linear-gradient(160deg, var(--color-dark), #0d2040);
  text-align: center;
}
.cta-final h2 {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 1rem;
}
.cta-final p { font-size: 1.1rem; color: rgba(255,255,255,.7); max-width: 640px; margin-inline: auto; margin-bottom: 2.5rem; }
.cta-final-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-phrase {
  margin-top: 2.5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  font-style: italic;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060f1c;
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 48px; margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.5); margin-bottom: 1rem; line-height: 1.7; }
.footer-socials {
  display: flex;
  gap: .75rem;
}
.social-link {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .875rem;
  transition: background .2s, color .2s;
}
.social-link:hover { background: var(--color-blue); color: var(--color-white); }
.footer-col h4 { font-size: .875rem; font-weight: 700; color: var(--color-white); margin-bottom: 1.1rem; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul li a:hover { color: var(--color-cyan); }
.footer-contact-item { display: flex; align-items: center; gap: .6rem; font-size: .875rem; color: rgba(255,255,255,.5); margin-bottom: .75rem; }
.footer-contact-item a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-contact-item a:hover { color: var(--color-cyan); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-tagline {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  text-align: center;
  margin-top: 1.5rem;
  font-style: italic;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .mentoring-inner { grid-template-columns: 1fr; gap: 2rem; }
  .club-inner { grid-template-columns: 1fr; padding: 2rem; }
  .ecosystem-grid { grid-template-columns: 1fr; }
  .eco-arrow { transform: rotate(90deg); }
  .diagnostic-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --section-py: 3.5rem; }
  .hero h1 { font-size: 1.9rem; }
  .hero-stats { gap: 1.5rem; }
  .method-flow { flex-direction: column; }
  .method-step::after { content: '↓'; right: auto; left: 50%; top: auto; bottom: -16px; transform: translateX(-50%); }
  .method-step-inner { margin-right: 0; margin-bottom: 1.5rem; }
  .compare-table { font-size: .85rem; }
  .compare-table th, .compare-table td { padding: .75rem 1rem; }
  .club-includes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .diag-areas { grid-template-columns: 1fr; }
  .agenda-meta { grid-template-columns: 1fr; }
}
