* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: #111; background: #fff; overflow-x: hidden; }

/* MOCKUP BANNER */
.mockup-banner { background: #FF5C00; color: #fff; text-align: center; padding: 10px 20px; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; }

/* ── NAV ── */
.kt-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid #e5e5e5;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px; height: 60px;
}
.kt-logo { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 2px; color: #111; text-decoration: none; display: inline-flex; align-items: center; }
.kt-logo span { color: #FF5C00; }
.kt-logo-img { height: 46px; width: auto; display: block; }
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo-link img { height: 46px; width: auto; display: block; }

/* Nav links con iconos */
.kt-nav-links { display: flex; gap: 6px; list-style: none; }
.kt-nav-links a {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: #333; text-decoration: none; font-weight: 500;
  padding: 7px 14px; border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.kt-nav-links a:hover { background: #f5f5f0; color: #FF5C00; }
.kt-nav-links a svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.kt-cta-pill { background: #FF5C00; color: #fff; font-size: 13px; font-weight: 600; padding: 10px 24px; border-radius: 999px; text-decoration: none; transition: opacity 0.2s; white-space: nowrap; }
.kt-cta-pill:hover { opacity: 0.85; }

/* Hamburger */
.kt-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.kt-hamburger span { display: block; width: 22px; height: 2px; background: #111; border-radius: 2px; transition: all 0.3s; }
.kt-mobile-menu { display: none; position: fixed; top: 60px; left: 0; right: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(16px); border-bottom: 1px solid #e5e5e5; padding: 12px 20px 20px; z-index: 199; flex-direction: column; }
.kt-mobile-menu.open { display: flex; }
.kt-mobile-menu a { font-size: 15px; color: #111; text-decoration: none; font-weight: 500; padding: 13px 0; border-bottom: 1px solid #f0f0f0; display: flex; align-items: center; gap: 10px; }
.kt-mobile-menu a svg { width: 16px; height: 16px; stroke: #FF5C00; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.kt-mobile-menu a:last-child { border-bottom: none; color: #FF5C00; }


/* Buscador nav */
.kt-search-wrap { flex: 1; max-width: 360px; position: relative; }
.kt-search-input { width: 100%; padding: 9px 16px 9px 38px; border: 1.5px solid #e0e0e0; border-radius: 999px; font-size: 13px; font-family: 'DM Sans', sans-serif; background: #f5f5f5; color: #111; outline: none; transition: border-color 0.2s, background 0.2s; }
.kt-search-input:focus { border-color: #FF5C00; background: #fff; }
.kt-search-input::placeholder { color: #999; }
.kt-search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.kt-search-icon svg { width: 14px; height: 14px; stroke: #999; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.kt-search-clear { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; display: none; color: #aaa; font-size: 14px; line-height: 1; padding: 2px; }
.kt-search-clear.visible { display: block; }

/* Catálogo inline */
.kt-cat-filters { padding: 20px 52px; border-bottom: 1px solid #e5e5e5; display: flex; gap: 8px; align-items: center; overflow-x: auto; background: #fafaf8; }
.kt-cat-filter-label { font-size: 12px; font-weight: 600; color: #666; text-transform: uppercase; letter-spacing: 0.1em; margin-right: 4px; flex-shrink: 0; }
.kt-cat-filter-btn { padding: 7px 18px; border-radius: 999px; font-size: 13px; font-weight: 500; border: 1.5px solid #e0e0e0; background: #fff; color: #333; cursor: pointer; transition: all 0.2s; white-space: nowrap; flex-shrink: 0; }
.kt-cat-filter-btn:hover { border-color: #FF5C00; color: #FF5C00; }
.kt-cat-filter-btn.active { background: #FF5C00; border-color: #FF5C00; color: #fff; }
.kt-cat-results { padding: 20px 52px 4px; display: flex; align-items: center; justify-content: space-between; }
.kt-cat-results p { font-size: 14px; color: #666; }
.kt-cat-results strong { color: #111; font-weight: 600; }
.kt-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 16px 52px 80px; }
.kt-prod-card { border: 1px solid #e8e8e8; border-radius: 20px; overflow: hidden; background: #fff; transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; }
.kt-prod-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.kt-prod-card.hidden { display: none; }
.kt-prod-img { background: #f5f5f0; height: 200px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.kt-prod-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.kt-prod-img svg { width: 72px; height: 72px; stroke: #ccc; fill: none; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.kt-prod-badge { position: absolute; top: 12px; left: 12px; color: #fff; font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.kt-prod-badge.best { background: #FF5C00; }
.kt-prod-badge.new { background: #111; }
.kt-prod-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.kt-prod-brand { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: #FF5C00; font-weight: 700; margin-bottom: 3px; }
.kt-prod-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: #111; margin-bottom: 5px; }
.kt-prod-desc { font-size: 12px; color: #444; line-height: 1.6; margin-bottom: 14px; flex: 1; }
.kt-prod-footer { display: flex; align-items: center; justify-content: flex-start; gap: 8px; margin-top: auto; }
.kt-prod-price { font-size: 13px; font-weight: 600; color: #111; margin-right: auto; }
.kt-prod-price span { font-size: 10px; font-weight: 400; color: #888; }
.kt-prod-cta { background: #111; color: #fff; font-size: 11px; font-weight: 600; padding: 8px 14px; border-radius: 999px; text-decoration: none; display: flex; align-items: center; gap: 5px; white-space: nowrap; transition: background 0.2s; flex-shrink: 0; }
.kt-prod-cta:hover { background: #FF5C00; }
.kt-prod-cta svg { width: 12px; height: 12px; fill: #fff; }
.kt-no-results { text-align: center; padding: 60px 48px; display: none; }
.kt-no-results.visible { display: block; }
.kt-no-results h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: #111; margin-bottom: 8px; }
.kt-no-results p { font-size: 14px; color: #666; }


/* ══ ANIMACIONES ══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

/* Clases de animación reutilizables */
.anim-fade-up   { opacity: 0; }
.anim-fade-up.visible   { animation: fadeUp  0.6s cubic-bezier(0.22,1,0.36,1) forwards; }
.anim-fade-in   { opacity: 0; }
.anim-fade-in.visible   { animation: fadeIn  0.5s ease forwards; }
.anim-scale-in  { opacity: 0; }
.anim-scale-in.visible  { animation: scaleIn 0.55s cubic-bezier(0.22,1,0.36,1) forwards; }

/* Stagger delays */
.delay-1 { animation-delay: 0.08s !important; }
.delay-2 { animation-delay: 0.16s !important; }
.delay-3 { animation-delay: 0.24s !important; }
.delay-4 { animation-delay: 0.32s !important; }
.delay-5 { animation-delay: 0.40s !important; }
.delay-6 { animation-delay: 0.48s !important; }

/* Transiciones hover más fluidas en tarjetas */
.kt-pilar-card, .kt-class-card, .kt-equipo-card, .kt-testi-card,
.kt-plan-card, .kt-prod-card, .kt-info-card, .kt-resultado-card,
.kt-faq-item {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.35s cubic-bezier(0.22,1,0.36,1),
              border-color 0.25s ease;
}
.kt-pilar-card:hover, .kt-class-card:hover, .kt-equipo-card:hover,
.kt-testi-card:hover, .kt-plan-card:hover, .kt-prod-card:hover,
.kt-info-card:hover, .kt-resultado-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
}
.kt-faq-item:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); border-color: #FF5C00; }

/* Nav links transición */
.kt-nav-links a { transition: background 0.25s ease, color 0.25s ease; }
.kt-cta-pill    { transition: background 0.25s ease, opacity 0.25s ease, transform 0.2s ease; }
.kt-cta-pill:hover { transform: scale(1.04); }

/* Botones transición */
.kt-btn-white, .kt-btn-ghost-white, .kt-plan-btn,
.kt-prod-cta, .kt-final-btn-orange, .kt-final-btn-ghost,
.kt-class-link, .kt-section-link, .kt-store-cta {
  transition: all 0.25s cubic-bezier(0.22,1,0.36,1);
}
.kt-btn-white:hover    { transform: scale(1.03); }
.kt-btn-ghost-white:hover { transform: scale(1.03); }
.kt-final-btn-orange:hover { transform: scale(1.03); }

/* Filtros catálogo transición */
.kt-cat-filter-btn { transition: all 0.22s cubic-bezier(0.22,1,0.36,1); }
.kt-cat-filter-btn:hover { transform: scale(1.05); }
.kt-cat-filter-btn.active { transform: scale(1.05); }

/* Producto card aparición al filtrar */
.kt-prod-card:not(.hidden) { animation: scaleIn 0.35s cubic-bezier(0.22,1,0.36,1) forwards; }

/* Buscador transición */
.kt-search-input { transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease; }
.kt-search-input:focus { box-shadow: 0 0 0 3px rgba(255,92,0,0.12); }

/* WhatsApp flotante pulse */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}
.kt-wa { animation: waPulse 2.5s ease-in-out infinite; }
.kt-wa:hover { animation: none; transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }

/* Carrusel dots transición */
.kt-dot { transition: background 0.3s ease, transform 0.3s cubic-bezier(0.22,1,0.36,1); }

/* Slide content transición dentro del carrusel */
.kt-slide.active .kt-slide-eyebrow  { animation: fadeUp 0.7s 0.1s cubic-bezier(0.22,1,0.36,1) both; }
.kt-slide.active .kt-slide-title    { animation: fadeUp 0.7s 0.2s cubic-bezier(0.22,1,0.36,1) both; }
.kt-slide.active .kt-slide-sub      { animation: fadeUp 0.7s 0.32s cubic-bezier(0.22,1,0.36,1) both; }
.kt-slide.active .kt-slide-actions  { animation: fadeUp 0.7s 0.44s cubic-bezier(0.22,1,0.36,1) both; }

/* ── CARRUSEL HERO ── */
.kt-carousel { position: relative; width: 100%; height: 88vh; min-height: 520px; max-height: 860px; overflow: hidden; background: #111; }
.kt-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.9s ease;
  display: flex; align-items: flex-end;
}
.kt-slide.active { opacity: 1; }
.kt-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
}
.kt-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.kt-slide-content {
  position: relative; z-index: 2;
  padding: 56px 68px; max-width: 680px;
}
.kt-slide-eyebrow { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: #FF5C00; font-weight: 600; margin-bottom: 16px; }
.kt-slide-title { font-family: 'Bebas Neue', sans-serif; font-size: 72px; line-height: 0.95; color: #fff; margin-bottom: 18px; letter-spacing: 1px; }
.kt-slide-title em { color: #FF5C00; font-style: normal; }
.kt-slide-sub { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 500px; }
.kt-slide-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.kt-btn-white { background: #fff; color: #111; font-size: 14px; font-weight: 600; padding: 13px 30px; border-radius: 999px; text-decoration: none; transition: opacity 0.2s; display: inline-block; }
.kt-btn-white:hover { opacity: 0.88; }
.kt-btn-ghost-white { border: 1.5px solid rgba(255,255,255,0.6); color: #fff; font-size: 14px; font-weight: 500; padding: 13px 30px; border-radius: 999px; text-decoration: none; transition: border-color 0.2s; display: inline-block; }
.kt-btn-ghost-white:hover { border-color: #fff; }

/* Controles carrusel */
.kt-carousel-dots { position: absolute; bottom: 28px; right: 52px; display: flex; gap: 8px; z-index: 10; }
.kt-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; padding: 0; transition: background 0.3s, transform 0.3s; }
.kt-dot.active { background: #FF5C00; transform: scale(1.3); }
.kt-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background 0.2s; backdrop-filter: blur(8px);
}
.kt-carousel-arrow:hover { background: rgba(255,255,255,0.3); }
.kt-arrow-prev { left: 24px; }
.kt-arrow-next { right: 24px; }
.kt-carousel-arrow svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.kt-home-editor { width: 100%; background: #111; padding: 0; }
.kt-home-editor-inner { width: 100%; }
.kt-home-editor-inner > * { margin: 0; }
.kt-home-editor-inner .wp-block-cover,
.kt-home-editor-inner .wp-block-image,
.kt-home-editor-inner .wp-block-gallery,
.kt-home-editor-inner .wp-block-columns,
.kt-home-editor-inner .wp-block-media-text {
  width: 100%;
  max-width: none;
  margin: 0;
}
.kt-home-editor-inner .wp-block-cover {
  min-height: 88vh;
  align-items: center;
}
.kt-home-editor-inner .wp-block-image img,
.kt-home-editor-inner .wp-block-cover img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── SECCIONES GENERALES ── */
.kt-section     { padding: 80px 52px; }
.kt-section-alt { padding: 80px 52px; background: #fafaf8; }
.kt-section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.kt-section-title { font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: 1px; line-height: 1; color: #111; }
.kt-section-subtitle { font-size: 16px; color: #333; max-width: 620px; line-height: 1.65; margin-top: -24px; margin-bottom: 40px; }
.kt-section-link { font-size: 14px; color: #FF5C00; text-decoration: none; font-weight: 500; white-space: nowrap; }
.kt-section-link:hover { text-decoration: underline; }
.kt-divider { height: 1px; background: #ebebeb; margin: 0 52px; }
.kt-eyebrow { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: #FF5C00; font-weight: 600; margin-bottom: 20px; }

/* ── TIENDA ── */
.kt-store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.kt-store-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 20px; overflow: hidden; transition: transform 0.25s, border-color 0.25s; cursor: pointer; }
.kt-store-card:hover { transform: translateY(-4px); border-color: #ccc; }
.kt-store-img { background: #f0ede6; height: 200px; display: flex; align-items: center; justify-content: center; }
.kt-store-img svg { width: 72px; height: 72px; stroke: #bbb; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.kt-store-info { padding: 26px; }
.kt-store-brand { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #FF5C00; font-weight: 700; margin-bottom: 4px; }
.kt-store-name { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 0.5px; margin-bottom: 6px; color: #111; }
.kt-store-tagline { font-size: 13px; color: #333; line-height: 1.6; margin-bottom: 18px; }
.kt-store-cta { font-size: 13px; color: #FF5C00; text-decoration: none; font-weight: 500; }
.kt-store-cta:hover { text-decoration: underline; }

/* ── PLANES ── */
.kt-plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.kt-plan-card { border: 1px solid #e0e0e0; border-radius: 20px; padding: 34px; background: #fff; position: relative; }
.kt-plan-card.featured { border: 2.5px solid #FF5C00; }
.kt-plan-badge { position: absolute; top: -14px; left: 24px; background: #FF5C00; color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 16px; border-radius: 999px; }
.kt-plan-name { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 0.5px; margin-bottom: 6px; color: #111; }
.kt-plan-price { font-size: 36px; font-weight: 300; margin-bottom: 4px; color: #111; }
.kt-plan-price span { font-size: 15px; color: #555; font-weight: 400; }
.kt-plan-desc { font-size: 13px; color: #444; margin-bottom: 26px; }
.kt-plan-features { list-style: none; margin-bottom: 28px; }
.kt-plan-features li { font-size: 14px; color: #222; padding: 9px 0; border-bottom: 1px solid #f2f2f2; display: flex; align-items: center; gap: 10px; }
.kt-check { color: #FF5C00; font-weight: 700; font-size: 16px; }
.kt-plan-btn { display: block; text-align: center; padding: 13px; border-radius: 999px; font-size: 14px; font-weight: 500; text-decoration: none; border: 2px solid #111; color: #111; transition: all 0.2s; }
.kt-plan-btn:hover, .kt-plan-card.featured .kt-plan-btn { background: #FF5C00; border-color: #FF5C00; color: #fff; }

/* ── PILARES ── */
.kt-pilares-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.kt-pilar-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 20px; overflow: hidden; transition: transform 0.25s; display: flex; flex-direction: column; }
.kt-pilar-card:hover { transform: translateY(-4px); }
.kt-pilar-img { height: 280px; background: #e8e6df; overflow: hidden; flex-shrink: 0; }
.kt-pilar-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.kt-pilar-body { padding: 28px; }
.kt-class-age { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #FF5C00; font-weight: 600; margin-bottom: 6px; }
.kt-pilar-title { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 0.5px; color: #111; margin-bottom: 10px; }
.kt-pilar-desc { font-size: 14px; color: #333; line-height: 1.65; }

/* ── CLASES ── */
.kt-classes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.kt-class-card { background: #f5f5f0; border-radius: 20px; padding: 38px 32px; transition: transform 0.25s; cursor: pointer; }
.kt-class-card:hover { transform: translateY(-4px); }
.kt-class-icon-wrap { width: 52px; height: 52px; background: #FF5C00; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.kt-class-icon-wrap svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.kt-class-name { font-family: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: 0.5px; margin-bottom: 12px; color: #111; }
.kt-class-desc { font-size: 14px; color: #333; line-height: 1.65; margin-bottom: 26px; }
.kt-class-link { font-size: 14px; color: #FF5C00; text-decoration: none; font-weight: 500; }
.kt-class-link:hover { text-decoration: underline; }

/* ── METODOLOGÍA ── */
.kt-metodo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.kt-metodo-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: #111; margin-bottom: 20px; line-height: 1; }
.kt-metodo-points { list-style: none; }
.kt-metodo-points li { font-size: 14px; color: #222; padding: 10px 0; border-bottom: 1px solid #ebebeb; display: flex; align-items: flex-start; gap: 12px; line-height: 1.5; }
.kt-metodo-points li span.check { color: #FF5C00; font-weight: 700; font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.kt-metodo-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.kt-metodo-photo { background: #e8e6df; border-radius: 14px; height: 240px; overflow: hidden; }
.kt-metodo-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* ── PARA QUIÉN ── */
.kt-quien-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.kt-quien-list { list-style: none; margin-top: 20px; }
.kt-quien-list li { font-size: 15px; color: #222; padding: 10px 0; border-bottom: 1px solid #ebebeb; display: flex; gap: 12px; align-items: flex-start; line-height: 1.5; }
.kt-quien-list li .check { color: #FF5C00; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.kt-quien-img { display: flex; align-items: center; justify-content: center; height: 400px; }
.kt-quien-img img { max-height: 360px; width: auto; object-fit: contain; }

/* ── RESULTADOS ── */
.kt-resultados-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.kt-resultado-card { border-radius: 20px; padding: 36px; border: 1px solid #e0e0e0; background: #fff; }
.kt-resultado-badge { display: inline-block; background: #FF5C00; color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; margin-bottom: 20px; }
.kt-resultado-title { font-family: 'Bebas Neue', sans-serif; font-size: 34px; color: #111; margin-bottom: 16px; }
.kt-resultado-list { list-style: none; }
.kt-resultado-list li { font-size: 14px; color: #222; padding: 9px 0; border-bottom: 1px solid #f0f0f0; display: flex; align-items: center; gap: 10px; }
.kt-resultado-list li .check { color: #FF5C00; font-weight: 700; }

/* ── EQUIPO ── */
.kt-equipo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.kt-equipo-card { border-radius: 20px; overflow: hidden; border: 1px solid #e8e8e8; transition: transform 0.25s; display: flex; flex-direction: column; }
.kt-equipo-card:hover { transform: translateY(-4px); }
.kt-equipo-img { background: #e8e6df; overflow: hidden; height: 420px; flex-shrink: 0; }
.kt-equipo-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.kt-equipo-body { padding: 20px; background: #fff; flex: 1; }
.kt-equipo-role { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: #FF5C00; font-weight: 600; margin-bottom: 4px; }
.kt-equipo-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: #111; margin-bottom: 6px; }
.kt-equipo-detail { font-size: 12px; color: #444; line-height: 1.55; }

/* ── TESTIMONIOS ── */
.kt-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.kt-testi-card { background: #fff; border-radius: 20px; padding: 34px; border: 1px solid #e8e8e8; }
.kt-stars { color: #FF5C00; font-size: 18px; margin-bottom: 18px; letter-spacing: 3px; }
.kt-testi-quote { font-size: 15px; line-height: 1.75; color: #222; font-style: italic; margin-bottom: 26px; }
.kt-testi-author { display: flex; align-items: center; gap: 12px; }
.kt-avatar { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.kt-avatar img { width: 100%; height: 100%; object-fit: cover; }
.kt-avatar-placeholder { width: 42px; height: 42px; border-radius: 50%; background: #FF5C00; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0; }
.kt-author-name { font-size: 14px; font-weight: 600; color: #111; }
.kt-author-role { font-size: 12px; color: #555; }

/* ── FAQ ── */
.kt-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.kt-faq-item { border: 1px solid #e5e5e5; border-radius: 16px; padding: 26px 28px; background: #fff; }
.kt-faq-q { font-size: 15px; font-weight: 600; color: #111; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; }
.kt-faq-q span { color: #FF5C00; font-size: 18px; font-weight: 700; flex-shrink: 0; }
.kt-faq-a { font-size: 14px; color: #333; line-height: 1.65; padding-left: 28px; }

/* ── UBICACIÓN ── */
.kt-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.kt-info-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 20px; padding: 32px; }
.kt-info-icon { width: 48px; height: 48px; background: #FF5C00; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.kt-info-icon svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.kt-info-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: #FF5C00; font-weight: 600; margin-bottom: 6px; }
.kt-info-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: #111; margin-bottom: 10px; }
.kt-info-text { font-size: 14px; color: #333; line-height: 1.7; }
.kt-info-text strong { color: #111; font-weight: 600; }
.kt-redes { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.kt-red-btn { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; font-size: 13px; font-weight: 500; text-decoration: none; border: 1.5px solid #e0e0e0; color: #111; transition: all 0.2s; }
.kt-red-btn:hover { border-color: #FF5C00; color: #FF5C00; }

/* ── CTA FINAL ── */
.kt-final-cta { text-align: center; padding: 100px 52px; background: #111; color: #fff; }
.kt-final-cta h2 { font-family: 'Bebas Neue', sans-serif; font-size: 64px; letter-spacing: 1px; margin-bottom: 14px; line-height: 1; color: #fff; }
.kt-final-cta h2 span { color: #FF5C00; }
.kt-final-cta p { font-size: 16px; color: #ccc; margin-bottom: 40px; }
.kt-final-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.kt-final-btn-orange { background: #FF5C00; color: #fff; padding: 15px 40px; border-radius: 999px; font-size: 15px; font-weight: 500; text-decoration: none; display: inline-block; transition: opacity 0.2s; }
.kt-final-btn-orange:hover { opacity: 0.85; }
.kt-final-btn-ghost { border: 1.5px solid #666; color: #ddd; padding: 15px 40px; border-radius: 999px; font-size: 15px; text-decoration: none; display: inline-block; transition: all 0.2s; }
.kt-final-btn-ghost:hover { border-color: #aaa; color: #fff; }

/* ── FOOTER ── */
.kt-footer { padding: 40px 52px; border-top: 1px solid #e5e5e5; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; align-items: start; background: #fff; }
.kt-footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; color: #111; text-decoration: none; display: block; margin-bottom: 10px; }
.kt-footer-logo span { color: #FF5C00; }
.kt-footer-desc { font-size: 13px; color: #444; line-height: 1.65; max-width: 280px; }
.kt-footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #111; margin-bottom: 14px; }
.kt-footer-col p { font-size: 13px; color: #444; line-height: 1.7; }
.kt-footer-bottom { padding: 18px 52px; border-top: 1px solid #e5e5e5; text-align: center; }
.kt-footer-bottom p { font-size: 12px; color: #888; }

/* ── WHATSAPP ── */
.kt-wa { position: fixed; bottom: 28px; right: 28px; z-index: 999; background: #25D366; color: #fff; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,0.18); transition: transform 0.2s; }
.kt-wa:hover { transform: scale(1.08); }
.kt-wa svg { width: 28px; height: 28px; fill: #fff; }

/* ══ RESPONSIVE TABLET ══ */
@media (max-width: 900px) {
  .kt-nav { padding: 0 24px; }
  .kt-nav-links { display: none; }
  .kt-search-wrap { max-width: 260px; }
  .kt-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 16px 24px 60px; }
  .kt-cat-filters { padding: 16px 24px; }
  .kt-cat-results { padding: 16px 24px 4px; }
  .kt-hamburger { display: flex; }

  .kt-carousel { height: 70vh; min-height: 420px; }
  .kt-slide-title { font-size: 52px; }
  .kt-slide-content { padding: 40px 36px; }

  .kt-section, .kt-section-alt { padding: 52px 24px; }
  .kt-final-cta { padding: 64px 24px; }
  .kt-divider { margin: 0 24px; }

  .kt-store-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .kt-plans-grid { grid-template-columns: 1fr; gap: 14px; }
  .kt-pilares-grid { grid-template-columns: 1fr; gap: 16px; }
  .kt-classes-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .kt-metodo-grid { grid-template-columns: 1fr; gap: 36px; }
  .kt-quien-grid { grid-template-columns: 1fr; gap: 32px; }
  .kt-resultados-grid { grid-template-columns: 1fr; gap: 14px; }
  .kt-equipo-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .kt-testi-grid { grid-template-columns: 1fr; gap: 14px; }
  .kt-faq-grid { grid-template-columns: 1fr; gap: 12px; }
  .kt-info-grid { grid-template-columns: 1fr; gap: 14px; }
  .kt-footer { grid-template-columns: 1fr; gap: 28px; padding: 36px 24px; }
  .kt-footer-bottom { padding: 18px 24px; }
  .kt-carousel-arrow { display: none; }
}

/* ══ RESPONSIVE MOBILE ══ */
@media (max-width: 600px) {
  .kt-nav { padding: 10px 20px 12px; height: auto; flex-wrap: wrap; gap: 10px 12px; align-items: center; }
  .kt-logo { order: 1; }
  .kt-logo-img, .custom-logo-link img { height: 36px; width: auto; }
  .kt-hamburger { order: 2; margin-left: auto; display: flex; }
  .kt-search-wrap { display: block !important; order: 3; width: 100%; max-width: none; margin-top: 2px; flex-basis: 100%; }
  .kt-cta-pill { order: 4; width: 100%; text-align: center; }
  .kt-search-input { width: 100%; }
  .kt-cat-grid { grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px 16px 48px; }
  .kt-prod-card { border-radius: 16px; }
  .kt-prod-img { height: 110px; border-radius: 0; }
  .kt-prod-img svg { width: 48px; height: 48px; }
  .kt-prod-body { padding: 10px 11px 11px; gap: 0; }
  .kt-prod-brand { font-size: 9px; margin-bottom: 2px; letter-spacing: 0.1em; }
  .kt-prod-name { font-size: 14px; margin-bottom: 4px; }
  .kt-prod-desc {
    font-size: 11px; line-height: 1.4; margin-bottom: 8px;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
  }
  .kt-prod-footer { gap: 5px; row-gap: 5px; flex-wrap: wrap; }
  .kt-prod-price { font-size: 11px; width: 100%; }
  .kt-prod-price span { font-size: 10px; }
  .kt-prod-btn-info { font-size: 10px; padding: 6px 10px; flex: 1; text-align: center; }
  .kt-prod-cta { font-size: 10px; padding: 6px 10px; gap: 3px; flex: 1; justify-content: center; }
  .kt-prod-cta svg { width: 11px; height: 11px; }
  .kt-prod-badge { font-size: 8px; padding: 3px 8px; }
  .kt-cat-filters { padding: 14px 20px; }
  .kt-mobile-menu { top: 112px; }
  .kt-cta-pill { font-size: 12px; padding: 8px 14px; }

  .kt-carousel { height: 92vw; min-height: 340px; max-height: 520px; }
  .kt-slide-title { font-size: 38px; }
  .kt-slide-sub { font-size: 14px; }
  .kt-slide-content { padding: 28px 24px; }
  .kt-slide-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .kt-btn-white, .kt-btn-ghost-white { width: 100%; text-align: center; padding: 13px 20px; }
  .kt-carousel-dots { right: 24px; bottom: 16px; }

  .kt-section, .kt-section-alt { padding: 44px 20px; }
  .kt-final-cta { padding: 56px 20px; }
  .kt-divider { margin: 0 20px; }

  .kt-section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .kt-section-title { font-size: 34px; }
  .kt-section-subtitle { font-size: 14px; }

  .kt-store-grid { grid-template-columns: 1fr; }
  .kt-plans-grid { grid-template-columns: 1fr; }
  .kt-pilares-grid { grid-template-columns: 1fr; }
  .kt-pilar-img { height: 220px; }
  .kt-classes-grid { grid-template-columns: 1fr; }
  .kt-class-card { padding: 28px 22px; }
  .kt-metodo-grid { grid-template-columns: 1fr; }
  .kt-metodo-photos { grid-template-columns: 1fr 1fr; gap: 10px; }
  .kt-metodo-photo { height: 160px; }
  .kt-quien-grid { grid-template-columns: 1fr; }
  .kt-quien-img { height: auto; }
  .kt-resultados-grid { grid-template-columns: 1fr; }
  .kt-equipo-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .kt-equipo-img { height: 260px; }
  .kt-equipo-body { padding: 14px; }
  .kt-equipo-name { font-size: 16px; }
  .kt-equipo-detail { font-size: 11px; }
  .kt-testi-grid { grid-template-columns: 1fr; }
  .kt-faq-grid { grid-template-columns: 1fr; }
  .kt-info-grid { grid-template-columns: 1fr; }

  .kt-final-cta h2 { font-size: 44px; }
  .kt-final-btns { flex-direction: column; align-items: center; }
  .kt-final-btn-orange, .kt-final-btn-ghost { width: 100%; text-align: center; padding: 14px 20px; }

  .kt-footer { grid-template-columns: 1fr; padding: 32px 20px; gap: 24px; }
  .kt-footer-bottom { padding: 16px 20px; }
  .kt-wa { width: 50px; height: 50px; bottom: 20px; right: 20px; }
  .kt-wa svg { width: 24px; height: 24px; }
}

/* ══ POPUP / MODAL ══ */
.kt-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0); backdrop-filter: blur(0px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px; pointer-events: none;
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}
.kt-overlay.open { background: rgba(0,0,0,0.62); backdrop-filter: blur(8px); pointer-events: all; }
.kt-modal {
  background: #fff; border-radius: 24px; width: 100%; max-width: 960px; max-height: 92vh;
  overflow-y: auto; position: relative;
  opacity: 0; transform: scale(0.92) translateY(24px);
  transition: opacity 0.38s cubic-bezier(0.22,1,0.36,1), transform 0.38s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.28);
}
.kt-overlay.open .kt-modal { opacity: 1; transform: scale(1) translateY(0); }
.kt-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.92);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.kt-modal-close:hover { background: #fff; transform: scale(1.08); }
.kt-modal-close svg { width: 16px; height: 16px; stroke: #111; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.kt-modal-grid { display: grid; grid-template-columns: 1.1fr 1fr; min-height: 480px; }

/* Galería carrusel del modal */
.kt-modal-gallery {
  position: relative; background: #f0efe9; border-radius: 24px 0 0 24px; overflow: hidden; min-height: 480px;
}
.kt-modal-carousel { position: absolute; inset: 0; }
.kt-modal-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s ease;
  display: flex; align-items: center; justify-content: center;
}
.kt-modal-slide.active { opacity: 1; }
.kt-modal-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.kt-modal-slide-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.kt-modal-slide-placeholder svg { width: 90px; height: 90px; stroke: #ccc; fill: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; }
.kt-modal-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.9);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18); transition: background 0.2s, transform 0.2s;
}
.kt-modal-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.kt-modal-arrow svg { width: 15px; height: 15px; stroke: #111; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.kt-modal-arrow-prev { left: 12px; }
.kt-modal-arrow-next { right: 12px; }
.kt-modal-arrow.hidden { display: none; }
.kt-modal-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 5;
}
.kt-modal-dot {
  width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.5);
  border: none; cursor: pointer; padding: 0; transition: background 0.2s, transform 0.2s;
}
.kt-modal-dot.active { background: #fff; transform: scale(1.35); }
.kt-modal-badge-wrap { position: absolute; top: 16px; left: 16px; z-index: 4; }

/* Info panel */
.kt-modal-info { padding: 40px 36px 36px; display: flex; flex-direction: column; gap: 14px; }
.kt-modal-brand { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #FF5C00; font-weight: 700; }
.kt-modal-name { font-family: 'Bebas Neue', sans-serif; font-size: 38px; color: #111; line-height: 1; letter-spacing: 0.5px; }
.kt-modal-desc { font-size: 14px; color: #444; line-height: 1.7; overflow-y: auto; max-height: 280px; }
.kt-modal-desc p { margin-bottom: 10px; }
.kt-modal-desc p:last-child { margin-bottom: 0; }
.kt-modal-desc ul, .kt-modal-desc ol { padding-left: 18px; margin-bottom: 10px; }
.kt-modal-desc li { margin-bottom: 4px; }
.kt-modal-desc strong, .kt-modal-desc b { font-weight: 600; color: #111; }
.kt-modal-desc h2, .kt-modal-desc h3, .kt-modal-desc h4 { font-family: 'Bebas Neue', sans-serif; color: #111; margin-bottom: 6px; margin-top: 12px; }
.kt-modal-details { display: flex; flex-direction: column; gap: 9px; }
.kt-modal-detail-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #333; line-height: 1.5; }
.kt-modal-detail-row svg { width: 15px; height: 15px; stroke: #FF5C00; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.kt-modal-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.kt-modal-tag { background: #f5f5f0; color: #444; font-size: 12px; font-weight: 500; padding: 5px 12px; border-radius: 999px; border: 1px solid #e8e8e8; }
.kt-modal-footer { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 12px; border-top: 1px solid #f0f0f0; margin-top: auto; }
.kt-modal-btn-wa {
  flex: 1; min-width: 160px; background: #25D366; color: #fff;
  padding: 13px 20px; border-radius: 999px; font-size: 14px; font-weight: 600;
  text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: opacity 0.2s, transform 0.2s;
}
.kt-modal-btn-wa:hover { opacity: 0.88; transform: scale(1.02); }
.kt-modal-btn-wa svg { width: 16px; height: 16px; fill: #fff; }
.kt-modal-btn-close {
  padding: 13px 20px; border-radius: 999px; font-size: 14px; font-weight: 500;
  border: 1.5px solid #e0e0e0; color: #555; background: #fff; cursor: pointer; transition: all 0.2s;
}
.kt-modal-btn-close:hover { border-color: #FF5C00; color: #FF5C00; }
.kt-prod-btn-info {
  background: #f5f5f0; color: #333; font-size: 11px; font-weight: 600;
  padding: 8px 14px; border-radius: 999px; border: 1px solid #e5e5e5;
  cursor: pointer; transition: all 0.22s ease; white-space: nowrap; flex-shrink: 0;
}
.kt-prod-btn-info:hover { background: #111; color: #fff; border-color: #111; }
.kt-prod-footer { flex-wrap: wrap; row-gap: 8px; }

/* Modal responsive */
@media (max-width: 720px) {
  .kt-overlay { align-items: flex-end; padding: 0; }
  .kt-modal { max-width: 100%; border-radius: 20px 20px 0 0; max-height: 96vh; }
  .kt-modal-grid { grid-template-columns: 1fr; min-height: unset; }
  .kt-modal-gallery { border-radius: 20px 20px 0 0; min-height: 260px; height: 260px; }
  .kt-modal-slide { min-height: 260px; }
  .kt-modal-info { padding: 24px 20px 28px; }
  .kt-modal-name { font-size: 28px; }
  .kt-modal-footer { flex-direction: column; }
  .kt-modal-btn-wa, .kt-modal-btn-close { width: 100%; justify-content: center; }
}

/* ══ MODAL INSCRIPCIÓN ══ */
.kt-insc-overlay { z-index: 9100; }
.kt-insc-modal {
  background: #fff; border-radius: 24px; width: 100%; max-width: 620px; max-height: 92vh;
  overflow-y: auto; position: relative;
  opacity: 0; transform: scale(0.95) translateY(20px);
  transition: opacity 0.35s cubic-bezier(0.22,1,0.36,1), transform 0.35s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.28);
}
.kt-insc-overlay.open .kt-insc-modal { opacity: 1; transform: scale(1) translateY(0); }

/* Header del modal inscripción */
.kt-insc-header {
  background: #111; padding: 36px 40px 32px; text-align: center;
  border-radius: 24px 24px 0 0;
}
.kt-insc-eyebrow { margin: 0 0 8px; font-size: 11px; letter-spacing: 3px; color: #FF5C00; font-weight: 700; text-transform: uppercase; }
.kt-insc-title { margin: 0 0 10px; font-family: 'Bebas Neue', sans-serif; font-size: 44px; color: #fff; letter-spacing: 2px; line-height: 1; }
.kt-insc-sub { margin: 0; font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* Cuerpo del formulario */
.kt-insc-body { }
.kt-insc-body form { padding: 32px 40px 36px; }
.kt-insc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.kt-insc-full { grid-column: 1 / -1; }

.kt-insc-field { display: flex; flex-direction: column; gap: 6px; }
.kt-insc-field label { font-size: 12px; font-weight: 700; color: #111; letter-spacing: 0.5px; text-transform: uppercase; }
.kt-insc-field label span { color: #FF5C00; }
.kt-insc-optional { color: #aaa; font-weight: 400; text-transform: none; letter-spacing: 0; }
.kt-insc-field input,
.kt-insc-field select,
.kt-insc-field textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid #e5e5e5; border-radius: 10px;
  font-size: 14px; font-family: 'DM Sans', sans-serif; color: #111; background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none; box-sizing: border-box;
}
.kt-insc-field input:focus,
.kt-insc-field select:focus,
.kt-insc-field textarea:focus { border-color: #FF5C00; box-shadow: 0 0 0 3px rgba(255,92,0,0.1); }
.kt-insc-field input::placeholder,
.kt-insc-field textarea::placeholder { color: #bbb; }
.kt-insc-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.kt-insc-field textarea { resize: vertical; min-height: 80px; }

.kt-insc-error { margin: 0 0 14px; font-size: 13px; color: #e03030; font-weight: 500; min-height: 18px; }
.kt-insc-submit {
  width: 100%; padding: 15px 24px; background: #FF5C00; color: #fff;
  border: none; border-radius: 999px; font-size: 15px; font-weight: 700;
  font-family: 'DM Sans', sans-serif; cursor: pointer; letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(255,92,0,0.3);
}
.kt-insc-submit:hover { background: #e04e00; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,92,0,0.4); }
.kt-insc-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* Pantalla de gracias */
.kt-insc-thanks {
  padding: 56px 40px 52px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.kt-insc-thanks-icon svg { width: 64px; height: 64px; stroke: #FF5C00; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.kt-insc-thanks-title { margin: 0; font-family: 'Bebas Neue', sans-serif; font-size: 42px; color: #111; letter-spacing: 1px; }
.kt-insc-thanks-sub { margin: 0; font-size: 15px; color: #555; line-height: 1.7; max-width: 380px; }
.kt-insc-thanks-btn { margin-top: 8px; padding: 12px 32px; background: #f5f5f0; border: 1.5px solid #e5e5e5; border-radius: 999px; font-size: 14px; font-weight: 600; color: #333; cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.kt-insc-thanks-btn:hover { border-color: #FF5C00; color: #FF5C00; }

/* Modal inscripción responsive */
@media (max-width: 600px) {
  .kt-insc-modal { border-radius: 20px 20px 0 0; max-height: 96vh; }
  .kt-insc-overlay { align-items: flex-end; padding: 0; }
  .kt-insc-header { padding: 28px 24px 24px; border-radius: 20px 20px 0 0; }
  .kt-insc-title { font-size: 36px; }
  .kt-insc-body form { padding: 24px 20px 28px; }
  .kt-insc-grid { grid-template-columns: 1fr; gap: 12px; }
  .kt-insc-thanks { padding: 40px 24px 36px; }
}
