* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rojo: #ed0000;
  --negro: #090909;
  --negro-suave: #151515;
  --gris: #4d4d4d;
  --gris-claro: #e5e5e5;
  --texto: #2b2b2b;
}

body {
  font-family: "Montserrat", "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--texto);
  line-height: 1.6;
}

h1, h2, h3, .marca, .btn { font-family: "Montserrat", "Segoe UI", Arial, Helvetica, sans-serif; font-weight: 800; }

a { text-decoration: none; color: inherit; }

/* ---------- Header / Nav ---------- */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 50px;
}

.hero-small .site-header {
  position: relative;
  background: rgba(30, 30, 30, 0.55);
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  color: #fff;
  line-height: 1;
}

.logo-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-wordmark {
  height: 34px;
  width: auto;
  display: block;
}

.hero-logo-img {
  width: min(520px, 80%);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}

.logo .marca {
  font-size: 2.1em;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo .marca .punto { color: var(--rojo); }

.logo .sub {
  margin-top: 4px;
  font-size: 0.62em;
  font-weight: 600;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: #fff;
  font-weight: 600;
  font-size: 0.95em;
  letter-spacing: 0.5px;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a.activo,
.nav-links a:hover {
  border-bottom-color: var(--rojo);
}

.buscar {
  color: #fff;
  font-size: 1.1em;
  cursor: pointer;
}

/* ---------- Hero grande (Home) ---------- */

.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,0,0,0.55) 0%, rgba(20,0,0,0.75) 100%);
}

.hero-contenido {
  position: relative;
  z-index: 5;
  text-align: center;
  color: #fff;
}

.hero-contenido h1 {
  font-size: 3.8em;
  letter-spacing: 6px;
  font-weight: 800;
}

.linea-roja {
  width: 160px;
  height: 4px;
  background: var(--rojo);
  margin: 22px auto;
}

.hero-contenido .kanji {
  font-size: 1.6em;
  letter-spacing: 4px;
  opacity: 0.9;
}

/* ---------- Hero pequeño (páginas internas) ---------- */

.hero-small {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
  filter: grayscale(35%);
}

.hero-small::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  z-index: 1;
}

.hero-small .site-header { z-index: 5; }

.header-sin-logo { justify-content: flex-end; }

/* ---------- Contenido + sidebar ---------- */

.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 100px;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 60px;
}

.contenido h2 {
  font-size: 2.4em;
  margin-bottom: 30px;
}

.foto-circular {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  float: left;
  margin: 0 34px 20px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.contenido p { margin-bottom: 18px; }
.contenido p strong { color: var(--negro); }

.contenido::after { content: ""; display: table; clear: both; }

.sidebar {
  border-left: 1px solid #e5e5e5;
  padding-left: 30px;
}

.sidebar a {
  display: block;
  color: var(--rojo);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.sidebar a:hover { text-decoration: underline; }

.mapa {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 6px;
  margin-top: 20px;
}

.club-destacado { color: var(--rojo); font-weight: 600; }

.logo-club {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
  float: left;
  margin: 0 24px 16px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ---------- Formulario contacto ---------- */

.form-contacto label {
  display: block;
  margin-top: 18px;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-contacto input,
.form-contacto textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1em;
}

.form-contacto textarea { min-height: 140px; resize: vertical; }

.form-contacto button {
  margin-top: 24px;
  background: var(--rojo);
  color: #fff;
  border: none;
  padding: 14px 34px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
}

.form-contacto button:hover { background: #b50000; }

/* ---------- Footer ---------- */

footer {
  background: var(--negro);
  color: #bbb;
  text-align: center;
  padding: 26px;
  font-size: 0.85em;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.footer-social a {
  color: #ddd;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-social a:hover { color: var(--rojo); }

@media (max-width: 800px) {
  .site-header { padding: 16px 20px; flex-wrap: wrap; row-gap: 12px; }
  .nav-links { gap: 10px 16px; font-size: 0.8em; flex-wrap: wrap; row-gap: 8px; }
  .buscar { display: none; }
  .logo-badge { width: 46px; height: 46px; }
  .logo .marca { font-size: 1.6em; }
  .hero-contenido h1 { font-size: 2.2em; letter-spacing: 3px; }
  .page-wrap { grid-template-columns: 1fr; }
  .sidebar { border-left: none; border-top: 1px solid #e5e5e5; padding-left: 0; padding-top: 20px; }
  .foto-circular { float: none; display: block; margin: 0 auto 20px; }
}

@media (max-width: 480px) {
  .nav-links { gap: 8px 12px; font-size: 0.72em; }
  .logo .sub { font-size: 0.5em; letter-spacing: 1px; }
}

/* =========================================================
   Judo Infantil — página dedicada
   ========================================================= */

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.ji-eyebrow {
  color: var(--rojo);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 0.85em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ji-eyebrow--oscuro { color: var(--rojo); }

.ji-centrado { text-align: center; }

.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primario {
  background: var(--rojo);
  color: #fff;
  border: 2px solid var(--rojo);
}

.btn-primario:hover { background: #b50000; border-color: #b50000; }

.btn-secundario {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-secundario:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-grande { padding: 19px 46px; font-size: 0.95em; }

/* ---------- Hero Judo Infantil ---------- */

.ji-hero {
  position: relative;
  height: 88vh;
  min-height: 640px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.ji-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,9,9,0.92) 0%, rgba(9,9,9,0.65) 45%, rgba(9,9,9,0.35) 100%);
}

.ji-hero-contenido {
  position: relative;
  z-index: 5;
  color: #fff;
  max-width: 720px;
  padding: 0 60px;
}

.ji-hero-contenido h1 {
  font-size: 3.2em;
  line-height: 1.08;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.ji-subtitulo {
  color: var(--rojo);
  font-weight: 700;
  font-size: 1.3em;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.ji-desc {
  font-size: 1.1em;
  color: #ddd;
  margin-bottom: 34px;
  line-height: 1.5;
}

.ji-btns { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Secciones genéricas ---------- */

.ji-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}

.ji-section h2 {
  font-size: 2.1em;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

/* ---------- Intro ---------- */

.ji-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.ji-intro-texto p { margin-bottom: 16px; color: var(--gris); }

.ji-intro-foto img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

/* ---------- Beneficios ---------- */

.ji-beneficios-wrap { background: var(--gris-claro); max-width: none; padding: 100px 40px; }
.ji-beneficios-wrap h2 { max-width: 1200px; margin-left: auto; margin-right: auto; }
.ji-beneficios-wrap > p.ji-eyebrow { max-width: 1200px; margin-left: auto; margin-right: auto; }

.ji-beneficios {
  max-width: 1200px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.ji-beneficio {
  background: #fff;
  padding: 38px 30px;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ji-beneficio:hover { transform: translateY(-6px); box-shadow: 0 16px 30px rgba(0,0,0,0.1); }

.ji-icono { width: 44px; height: 44px; color: var(--rojo); margin-bottom: 18px; }

.ji-beneficio h3 { font-size: 1.15em; margin-bottom: 10px; }
.ji-beneficio p { color: var(--gris); font-size: 0.95em; }

/* ---------- Edades ---------- */

.ji-edades-wrap { max-width: none; background: var(--negro); padding: 100px 40px; }
.ji-edades-wrap h2, .ji-edades-wrap > p.ji-eyebrow { color: #fff; }
.ji-edades-wrap h2 { color: #fff; max-width: 1200px; margin-left: auto; margin-right: auto; }
.ji-edades-wrap > p.ji-eyebrow { max-width: 1200px; margin-left: auto; margin-right: auto; }

.ji-edades {
  max-width: 1200px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.ji-edad-card {
  background: var(--negro-suave);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ji-edad-num {
  font-size: 4.2em;
  font-weight: 900;
  color: var(--rojo);
  line-height: 1;
  letter-spacing: -1px;
}

.ji-edad-info h3 { color: #fff; font-size: 1.3em; margin-bottom: 8px; letter-spacing: 1px; }

.ji-horario {
  color: var(--rojo);
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 0.95em;
  letter-spacing: 0.5px;
}

.ji-edad-info p:not(.ji-horario) { color: #bbb; font-size: 0.95em; }

/* ---------- Pasos ---------- */

.ji-pasos-wrap { text-align: left; }

.ji-pasos {
  max-width: 1200px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.ji-paso { text-align: center; padding: 0 10px; }

.ji-paso-num {
  display: block;
  font-size: 2.4em;
  font-weight: 900;
  color: var(--rojo);
  margin-bottom: 12px;
}

.ji-paso h3 { margin-bottom: 10px; font-size: 1.1em; }
.ji-paso p { color: var(--gris); font-size: 0.95em; }

.ji-nota {
  max-width: 760px;
  margin: 50px auto 0;
  text-align: center;
  background: var(--gris-claro);
  padding: 22px 30px;
  border-radius: 8px;
  border-left: 4px solid var(--rojo);
  color: var(--gris);
  font-size: 0.95em;
}

/* ---------- Galería instalaciones ---------- */

.ji-galeria-wrap { max-width: none; background: var(--gris-claro); padding: 100px 40px; }
.ji-galeria-wrap h2, .ji-galeria-wrap > p { max-width: 900px; margin-left: auto; margin-right: auto; }
.ji-galeria-texto { color: var(--gris); margin-top: 10px; }

.ji-galeria {
  max-width: 1200px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.ji-galeria-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.ji-galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ji-galeria-item:hover img { transform: scale(1.06); }

.ji-galeria-item span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.9em;
}

/* ---------- Ubicación ---------- */

.ji-ubicacion {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.ji-ubicacion-texto p { margin-bottom: 14px; color: var(--gris); }
.ji-ubicacion-texto p strong { color: var(--negro); }
.ji-ubicacion .mapa { height: 380px; margin-top: 0; }

/* ---------- CTA final ---------- */

.ji-cta-final {
  position: relative;
  background-size: cover;
  background-position: center 30%;
  padding: 140px 40px;
  text-align: center;
}

.ji-cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9,9,9,0.82);
}

.ji-cta-contenido { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }

.ji-cta-contenido h2 { color: #fff; font-size: 2.3em; margin-bottom: 18px; letter-spacing: 1px; }
.ji-cta-contenido > p:not(.ji-cta-nota) { color: #ddd; margin-bottom: 34px; font-size: 1.1em; }

.ji-cta-nota { margin-top: 26px; color: #999; font-size: 0.85em; letter-spacing: 1px; text-transform: uppercase; }

/* ---------- Responsive Judo Infantil ---------- */

@media (max-width: 900px) {
  .ji-intro, .ji-ubicacion { grid-template-columns: 1fr; }
  .ji-ubicacion-texto { order: 1; }
  .ji-ubicacion .mapa { order: 2; }
  .ji-intro-foto { order: -1; }
  .ji-beneficios { grid-template-columns: repeat(2, 1fr); }
  .ji-edades { grid-template-columns: 1fr; }
  .ji-pasos { grid-template-columns: 1fr; gap: 34px; }
  .ji-galeria { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .ji-hero { height: auto; min-height: 100vh; }
  .ji-hero-contenido { padding: 0 22px; max-width: 100%; }
  .ji-hero-contenido h1 { font-size: 2.2em; }
  .ji-btns { flex-direction: column; }
  .ji-btns .btn { text-align: center; width: 100%; }
  .ji-section { padding: 64px 22px; }
  .ji-beneficios-wrap, .ji-edades-wrap, .ji-galeria-wrap { padding: 64px 22px; }
  .ji-beneficios { grid-template-columns: 1fr; }
  .ji-edad-card { padding: 30px 24px; }
  .ji-cta-final { padding: 80px 22px; }
  .ji-cta-contenido h2 { font-size: 1.7em; }
}

/* =========================================================
   Página Judo — filosofía / editorial
   ========================================================= */

.jd-kanji-hero {
  font-size: 1.3em;
  letter-spacing: 6px;
  color: #aaa;
  margin: 6px 0 16px;
}

.ji-btns--centrado { justify-content: center; }

.jd-camino, .jd-entender, .jd-tradicion { text-align: center; }

.jd-intro-texto {
  max-width: 760px;
  margin: 0 auto 40px;
  color: var(--gris);
  font-size: 1.05em;
}

.jd-lista-tecnicas { font-size: 0.95em; opacity: 0.85; }

.jd-ju-do {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 760px;
  margin: 10px auto 50px;
}

.jd-ju-do-item { position: relative; }

.jd-kanji-grande {
  display: block;
  font-size: 7em;
  line-height: 1;
  color: var(--negro);
  opacity: 0.06;
  position: absolute;
  inset: -30px 0 auto 0;
  text-align: center;
  z-index: 0;
  pointer-events: none;
}

.jd-ju-do-item h3 {
  position: relative;
  z-index: 1;
  font-size: 2.4em;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.jd-ju-do-item p {
  position: relative;
  z-index: 1;
  color: var(--gris);
  font-size: 0.95em;
}

.jd-progresion {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 14px;
  max-width: 900px;
  margin: 0 auto 40px;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 0.95em;
}

.jd-flecha { color: var(--rojo); font-weight: 400; }

.jd-frase-destacada {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.8em;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.3;
  padding-top: 24px;
  border-top: 3px solid var(--rojo);
  display: inline-block;
}

.jd-frase-clara { color: #fff; border-top-color: var(--rojo); }
.jd-frase-pequena { font-size: 1.3em; }

/* ---------- Técnica (foto full-bleed asimétrica) ---------- */

.jd-tecnica {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 100px 60px;
}

.jd-tecnica::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,9,9,0.95) 0%, rgba(9,9,9,0.7) 55%, rgba(9,9,9,0.25) 100%);
}

.jd-tecnica-texto {
  position: relative;
  z-index: 2;
  max-width: 580px;
  color: #fff;
}

.jd-tecnica-texto p:not(.jd-frase-destacada):not(.ji-eyebrow) { color: #ccc; margin-bottom: 16px; }
.jd-tecnica-texto .jd-frase-destacada { margin-top: 30px; font-size: 1.5em; }

/* ---------- Conceptos técnicos (filas editoriales) ---------- */

.jd-conceptos { max-width: 1000px; margin: 50px auto 0; }

.jd-concepto {
  display: grid;
  grid-template-columns: 110px 200px 1fr;
  align-items: baseline;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid #e2e2e2;
  text-align: left;
}

.jd-conceptos .jd-concepto:last-child { border-bottom: 1px solid #e2e2e2; }

.jd-concepto-num {
  font-size: 1.6em;
  font-weight: 900;
  color: var(--rojo);
}

.jd-concepto h3 { font-size: 1.3em; letter-spacing: 1px; }
.jd-concepto p { color: var(--gris); }

/* ---------- Foto full-bleed (Randori / Tatami para todos) ---------- */

.jd-foto-full {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 76vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 60px;
}

.jd-foto-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9,9,9,0.92) 0%, rgba(9,9,9,0.35) 60%, rgba(9,9,9,0.15) 100%);
}

.jd-foto-full-texto {
  position: relative;
  z-index: 2;
  max-width: 640px;
  color: #fff;
}

.jd-foto-full-texto p:not(.jd-frase-destacada):not(.ji-eyebrow) { color: #ddd; margin-bottom: 10px; }
.jd-foto-full-texto .jd-frase-destacada { margin-top: 24px; font-size: 1.4em; }

/* ---------- Tradición / Evolución ---------- */

.jd-tradicion-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 760px;
  margin: 0 auto 40px;
  border: 1px solid #e2e2e2;
}

.jd-tradicion-col {
  padding: 40px 20px;
  border-right: 1px solid #e2e2e2;
}

.jd-tradicion-col:last-child { border-right: none; }

.jd-tradicion-col h3 { font-size: 1.4em; letter-spacing: 2px; color: var(--gris); }
.jd-tradicion-col--rojo h3 { color: var(--rojo); }

/* ---------- Ambiente (foto + texto asimétrico) ---------- */

.jd-ambiente {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.jd-ambiente-foto img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.jd-ambiente-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.jd-ambiente-grid img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  cursor: zoom-in;
  transition: opacity 0.2s ease;
}

.jd-ambiente-grid img:hover { opacity: 0.85; }

.jd-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(9, 9, 9, 0.92);
  align-items: center;
  justify-content: center;
  padding: 50px;
  cursor: zoom-out;
}

.jd-lightbox.activo { display: flex; }

.jd-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.jd-ambiente-texto p:not(.jd-frase-destacada):not(.ji-eyebrow) { color: var(--gris); margin-bottom: 16px; }
.jd-ambiente-texto .jd-frase-destacada { display: block; margin-top: 20px; }

/* ---------- Profesores ---------- */

.jd-profesor {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: center;
  max-width: 800px;
  margin: 50px auto 0;
}

.jd-profesor img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top center;
}

.jd-profesor-texto h3 { font-size: 1.6em; letter-spacing: 1px; margin-bottom: 4px; }

.jd-profesor-rol {
  color: var(--rojo);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85em;
  margin-bottom: 14px;
}

.jd-profesor-texto p:not(.jd-profesor-rol) { color: var(--gris); }

.jd-horario-final {
  color: var(--rojo);
  font-weight: 700;
  letter-spacing: 1px;
  margin: 4px 0 34px;
}

/* ---------- Responsive página Judo ---------- */

@media (max-width: 900px) {
  .jd-ambiente { grid-template-columns: 1fr; }
  .jd-ambiente-foto { order: -1; }
  .jd-concepto { grid-template-columns: 60px 1fr; }
  .jd-concepto h3, .jd-concepto p { grid-column: 2; }
  .jd-tecnica, .jd-foto-full { padding: 60px 30px; }
  .jd-profesor { grid-template-columns: 1fr; text-align: center; max-width: 420px; }
  .jd-profesor img { height: 380px; }
}

@media (max-width: 640px) {
  .jd-kanji-grande { font-size: 5em; }
  .jd-ju-do { grid-template-columns: 1fr; gap: 46px; }
  .jd-frase-destacada { font-size: 1.35em; }
  .jd-tecnica-texto .jd-frase-destacada,
  .jd-foto-full-texto .jd-frase-destacada { font-size: 1.15em; }
  .jd-tradicion-cols { grid-template-columns: 1fr; }
  .jd-tradicion-col { border-right: none; border-bottom: 1px solid #e2e2e2; }
  .jd-tradicion-col:last-child { border-bottom: none; }
  .jd-progresion { font-size: 0.8em; gap: 8px 10px; }
  .jd-ambiente-foto img { height: 300px; }
  .jd-ambiente-grid img { height: 160px; }
  .jd-lightbox { padding: 20px; }
  .jd-tecnica, .jd-foto-full { padding: 50px 20px; min-height: auto; }
}
