/* ─────────────────────────────────────────
   ESTILOS PROPIOS DE coaching.html (landing completa)
   Tema claro: blanco + acento verde oliva,
   inspirado en gerardlozano.finance (blanco, tarjetas con
   sombra sutil, un único color de acento)
───────────────────────────────────────── */

body {
  background: #ffffff;
  color: #17181a;
}

/* ─────────────────────────────────────────
   PORTADA OSCURA (nav + hero)
   Contraste tipo gerardlozano.finance: cabecera oscura,
   resto de la web en blanco
───────────────────────────────────────── */
:root {
  --nav-h: 72px;
}
.hero-dark {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(ellipse 120% 70% at 50% -10%, rgba(110,126,40,0.35), transparent 60%), #0a0d05;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  animation: hero-bounce 2s ease-in-out infinite;
}
@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-hint { animation: none; }
}

/* ─────────────────────────────────────────
   NAV SUPERIOR (sticky, con anclas)
───────────────────────────────────────── */
.coach-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,13,5,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.coach-nav-inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.coach-nav-logo {
  font-weight: 800;
  font-size: 14px;
  color: #ffffff;
  white-space: nowrap;
  line-height: 1.2;
}
.coach-nav-logo span {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a3c93a;
  font-weight: 700;
}
.coach-nav-links {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.coach-nav-links::-webkit-scrollbar { display: none; }
.coach-nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: #b0b4a8;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.coach-nav-links a:hover { color: #a3c93a; }
.coach-nav-cta {
  flex-shrink: 0;
  background: #6e7e28;
  color: #ffffff;
  font-weight: 700;
  font-size: 12.5px;
  padding: 9px 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.coach-nav-cta:hover { background: #839934; }

/* ─────────────────────────────────────────
   ELEMENTOS DE LA PORTADA OSCURA
───────────────────────────────────────── */
.hero-dark .glass {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(110,126,40,0.35);
  box-shadow: none;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.hero-dark .text-grad {
  background: linear-gradient(120deg, #6e7e28 0%, #d4e87a 50%, #6e7e28 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-pill {
  font-size: 11.5px;
  font-weight: 600;
  color: #d4d8c8;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 5px 12px;
  border-radius: 999px;
}
.btn-sec-dark {
  color: #ffffff;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.22);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn-sec-dark:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
}
.btn-sec-dark:active { transform: scale(0.98); }

/* ─────────────────────────────────────────
   ETIQUETAS DE SECCIÓN
───────────────────────────────────────── */
.section-label {
  text-align: center;
  font-size: 11px;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ─────────────────────────────────────────
   TARJETAS (equivalente claro de .glass)
   Blanco + sombra sutil, sin borde de color —
   el verde oliva se reserva para acentos puntuales
───────────────────────────────────────── */
.glass {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 8px 24px rgba(0,0,0,0.04);
}
.glass-brand {
  background: rgba(110,126,40,0.06);
  border: 1px solid rgba(110,126,40,0.28);
}

/* ─────────────────────────────────────────
   CHIPS DE DISTANCIA
───────────────────────────────────────── */
@keyframes chip-glow {
  0%, 100% { border-color: rgba(0,0,0,0.1); color: #52525b; box-shadow: none; }
  50%       { border-color: rgba(110,126,40,0.55); color: #3a4712; box-shadow: 0 0 12px rgba(110,126,40,0.12); }
}
.dist-chip {
  pointer-events: none;
  cursor: default;
  animation: chip-glow 5s ease-in-out infinite;
}
.dist-chip:nth-child(1) { animation-delay: 0s; }
.dist-chip:nth-child(2) { animation-delay: 1s; }
.dist-chip:nth-child(3) { animation-delay: 2s; }
.dist-chip:nth-child(4) { animation-delay: 3s; }
.dist-chip:nth-child(5) { animation-delay: 4s; }

/* ─────────────────────────────────────────
   FADE-UP ENTRADA (hero)
───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.65s cubic-bezier(0.22,1,0.36,1) both; }
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.18s; }
.d3 { animation-delay: 0.31s; }
.d4 { animation-delay: 0.46s; }
.d5 { animation-delay: 0.61s; }
.d6 { animation-delay: 0.76s; }

/* ─────────────────────────────────────────
   GRADIENTE DE TEXTO (tagline) — versión clara
───────────────────────────────────────── */
.text-grad {
  background: linear-gradient(120deg, #4a5a1c 0%, #6e7e28 50%, #4a5a1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────────────────────────────
   BOTÓN CTA PRINCIPAL
───────────────────────────────────────── */
.btn-cta {
  background: #6e7e28;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 6px 22px rgba(110,126,40,0.24);
}
.btn-cta:hover {
  transform: translateY(-2px);
  background: #5c691f;
  box-shadow: 0 10px 28px rgba(110,126,40,0.3);
}
.btn-cta:active { transform: scale(0.98); }

/* ─────────────────────────────────────────
   BOTONES SECUNDARIOS
───────────────────────────────────────── */
.btn-sec {
  color: #17181a;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn-sec:hover {
  transform: translateY(-2px);
  background: rgba(110,126,40,0.06);
  border-color: rgba(110,126,40,0.35);
}
.btn-sec:active { transform: scale(0.98); }

/* ─────────────────────────────────────────
   ICONOS SOCIALES
───────────────────────────────────────── */
.social-btn {
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.social-btn:hover {
  transform: translateY(-3px);
  color: #6e7e28;
  background: rgba(110,126,40,0.06);
  border-color: rgba(110,126,40,0.35);
}
.social-btn:active { transform: scale(0.95); }

/* ─────────────────────────────────────────
   DIVISOR
───────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(110,126,40,0.3) 50%, transparent 100%);
}

/* ─────────────────────────────────────────
   FOTOS
───────────────────────────────────────── */
.photo-wrap {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.07);
  aspect-ratio: 3 / 4;
}
.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
}
.photo-wrap:hover img { transform: scale(1.05); }

/* ─────────────────────────────────────────
   DOT PULSANTE
───────────────────────────────────────── */
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.8); }
}
.dot-pulse { animation: dot-pulse 2.2s ease-in-out infinite; }

/* ─────────────────────────────────────────
   ¿TE SUENA ESTO? — NÚMEROS SIN EMOJIS
───────────────────────────────────────── */
.problem-num {
  font-size: 13px;
  font-weight: 800;
  color: #6e7e28;
  min-width: 24px;
  flex-shrink: 0;
  padding-top: 1px;
}

/* ─────────────────────────────────────────
   CÓMO FUNCIONO — NÚMEROS DE PASO
───────────────────────────────────────── */
.step-num {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  min-width: 2ch;
  color: #6e7e28;
}

/* ─────────────────────────────────────────
   TESTIMONIOS — MARQUEE INFINITO (como gerardlozano.finance)
───────────────────────────────────────── */
@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.testimonial-track {
  animation: marquee-left 42s linear infinite;
}
.testimonial-track:hover,
.testimonial-track.is-paused { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .testimonial-track { animation: none; }
}

/* ─────────────────────────────────────────
   SOBRE MÍ — ESTADÍSTICAS
───────────────────────────────────────── */
.stat-num {
  font-size: 18px;
  font-weight: 900;
  color: #6e7e28;
}
.stat-label {
  font-size: 10.5px;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* ─────────────────────────────────────────
   FAQ — acordeón animado (grid-rows 0fr → 1fr)
   Sustituye a <details> nativo para poder animar
   la apertura/cierre con transición suave
───────────────────────────────────────── */
.faq-item {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #17181a;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  transition: background 0.18s ease;
}
.faq-question:hover { background: rgba(110,126,40,0.05); }
.faq-item.open .faq-question { background: rgba(110,126,40,0.05); }
.faq-question .chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #6e7e28;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.faq-item.open .faq-question .chevron { transform: rotate(180deg); }
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s cubic-bezier(0.22,1,0.36,1);
}
.faq-item.open .faq-panel { grid-template-rows: 1fr; }
.faq-panel-inner { overflow: hidden; }
.faq-answer {
  padding: 14px 20px 18px;
  margin: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
