
:root {
  --bg: #f6f2fb;
  --bg-2: #fcfbff;
  --surface: rgba(255,255,255,.84);
  --surface-strong: rgba(255,255,255,.95);
  --surface-dark: #5b5cff;
  --line: rgba(88, 74, 200, 0.08);
  --line-strong: rgba(88, 74, 200, 0.14);
  --text: #636877;
  --muted: #636877;
  --primary: #5b5cff;
  --primary-2: #7273ff;
  --primary-3: #8a8bff;
  --accent-gold: #5b5cff;
  --primary-soft: rgba(91,92,255,.10);
  --shadow-xl: 0 28px 68px rgba(40, 28, 96, .11);
  --shadow-lg: 0 18px 38px rgba(40, 28, 96, .08);
  --shadow-md: 0 10px 22px rgba(40, 28, 96, .06);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max: 1080px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(114,115,255,.10), transparent 24%),
    radial-gradient(circle at top right, rgba(91,92,255,.08), transparent 20%),
    linear-gradient(180deg, #fdfcff 0%, #f7f5ff 52%, #f3f1ff 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.header-wrap {
  position: sticky; top: 0; z-index: 100;
  padding: 10px 0;
}
.site-header {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 20px;
  background: rgba(255,255,255,.56);
  box-shadow: 0 14px 34px rgba(30, 22, 77, .10);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { height: 43px; width: auto; }
.brand-text { font-weight: 800; letter-spacing: -.02em; }
.nav-toggle {
  display: none; border: 0; background: var(--primary-soft); color: var(--primary);
  width: 46px; height: 46px; border-radius: 14px; cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ''; display: block; width: 18px; height: 2px; border-radius: 999px;
  background: currentColor; margin: 0 auto;
}
.nav-toggle::before { transform: translateY(-5px); }
.nav-toggle::after { transform: translateY(5px); }
.nav {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: flex-end;
}
.nav a {
  padding: 9px 13px; border-radius: 999px; color: var(--muted); font-weight: 600; font-size: .95rem;
  transition: .18s ease;
}
.nav a:hover { color: var(--primary); background: rgba(91,92,255,.06); }
.nav a.active {
  font-size: .95rem;
  line-height: 1.2;
  color: #fff; background: linear-gradient(90deg, #5752c8, #7675ff);
  box-shadow: 0 10px 24px rgba(91,92,255,.20);
}
.main {
  flex: 1 0 auto;
  padding: 4px 0 12px;
}
.about-main {
  padding-top: 0;
}
.stack { display: flex; flex-direction: column; gap: 7.5px; }
.stack > .section-card:first-child + .section-card {
  margin-top: -1.5px;
}
.about-stack { gap: 6px; }
.section-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-xl); border: 1px solid rgba(255,255,255,.72);
  background: linear-gradient(180deg, var(--surface-strong), var(--surface));
  box-shadow: var(--shadow-lg); backdrop-filter: blur(12px);
}
.section-card.dark {
  background: linear-gradient(135deg, rgba(25,23,54,.96), rgba(91,92,255,.92));
  box-shadow: 0 24px 56px rgba(29, 20, 75, .18);
}
.section-card.dark .eyebrow,
.section-card.dark h1,
.section-card.dark h2,
.section-card.dark h3,
.section-card.dark p,
.section-card.dark li,
.section-card.dark .lead,
.section-card.dark .muted,
.section-card.dark .stat,
.section-card.dark .cta-subtle,
.section-card.dark .section-title-note { color: rgba(255,255,255,.96); }
.section-card.dark .soft-card,
.section-card.dark .quote-card,
.section-card.dark .info-card {
  background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.10);
}
.section-inner { padding: clamp(10px, 1.2vw, 14px) clamp(18px, 2.4vw, 28px) clamp(18px, 2.4vw, 28px); }
.hero-grid, .split-grid, .feature-grid, .cards-grid, .cta-grid, .form-grid {
  display: grid; gap: clamp(14px, 1.8vw, 22px);
}
.hero-grid { grid-template-columns: minmax(0, .92fr) minmax(0, 1.12fr); align-items: stretch; gap: clamp(18px, 2.2vw, 28px); }
.hero-grid:has(.about-hero-media) {
  grid-template-columns: minmax(0, 1fr) 344px;
  align-items: start;
  column-gap: 18px;
}
.about-hero-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 258px;
  max-width: 34.5rem;
  padding-top: 10px;
  padding-left: 4px;
}
.about-hero-copy .eyebrow {
  margin-bottom: 8px;
}
.about-hero-copy .page-title {
  font-size: clamp(1.75rem, 2.7vw, 2.45rem);
  margin-bottom: 30px;
}
.about-hero-copy .lead + .lead {
  margin-top: 14px;
}
.section-card.dark .section-inner.hero-grid {
  padding-top: 14px;
  padding-bottom: 14px;
}
.consultoria-hero-grid { grid-template-columns: minmax(0, 1fr); gap: 0; }
.split-grid { grid-template-columns: .95fr 1.05fr; align-items: center; }
.consultoria-call-grid { grid-template-columns: minmax(0, 1fr); }
.feature-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.cards-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.cta-grid { grid-template-columns: 1fr auto; align-items: center; }
.form-grid { grid-template-columns: 1.05fr .95fr; align-items: start; }
.contact-form-grid { grid-template-columns: 1.28fr .72fr; }
.contact-hero-section { min-height: clamp(520px, calc(100vh - 180px), 720px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 10px; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: #5257ee;
}
.eyebrow::before {
  display: none;
}
.hero-title, .page-title {
  margin: 0 0 10px; line-height: 1.02; letter-spacing: -.045em;
  font-size: clamp(1.75rem, 3.6vw, 3.35rem);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: clamp(20px, 25vw, 40px);
  padding-top: clamp(4px, .6vw, 10px);
}
.hero-copy .eyebrow {
  margin-bottom: 24px;
}
.hero-copy .hero-title {
  margin-bottom: 1px;
  line-height: 1.02;
  font-size: clamp(1.52rem, 3.18vw, 3.05rem);
}
.hero-copy .lead {
  margin-top: 32px;
}
.page-title { font-size: clamp(1.75rem, 3.2vw, 2.9rem); }
.consultoria-hero-title { font-size: clamp(1.68rem, 2.95vw, 2.65rem); }
.formacion-hero-title {
  font-size: clamp(1.56rem, 2.7vw, 2.38rem);
  line-height: 1.16;
  margin-bottom: 20px;
}
.formacion-hero-lead {
  line-height: 1.92;
}
.formacion-hero-grid {
    align-items: start;
    padding-top: 12px;
    padding-bottom: 18px;
  }
.formacion-hero-copy {
    display: flex;
    flex-direction: column;
    min-height: 272px;
    padding-top: 8px;
  }
.formacion-hero-cta-row {
    justify-content: flex-start;
    margin-top: 18px;
    padding-top: 0;
    padding-bottom: 10px;
  }
.formacion-hero-media {
      width: min(100%, 500px);
      height: 282px;
      min-height: 282px;
      justify-self: end;
      margin-top: 0;
    }
.formacion-hero-media img {
    object-fit: cover;
    object-position: 58% 30%;
  }
.consultoria-hero-grid .lead {
  line-height: 1.98;
}
.section-card.dark .section-inner.hero-grid.consultoria-hero-grid {
  padding-top: 18px;
  padding-bottom: 18px;
}
.contact-hero-copy {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.contact-form-grid .form-shell {
  margin-top: 58px;
}
.contact-hero-section .page-title {
  line-height: 1.18;
  max-width: 16ch;
}
.contact-hero-lead {
  margin-top: 56px;
  line-height: 1.98;
  max-width: 52ch;
}
.contact-hero-media {
  margin-top: 54px;
  margin-left: 0;
  margin-right: auto;
  width: min(100%, 520px);
  min-height: 320px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 40px rgba(17, 10, 52, .16);
  background: rgba(255,255,255,.08);
}
.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}
.lead {
  margin: 0; font-size: clamp(.98rem, 1.28vw, 1.08rem); line-height: 1.62; color: #6b7386;
}
.hero-lead-spaced {
  margin-top: 0;
}
.kicker {
  margin: 14px 0 0; color: var(--text); font-weight: 600; font-size: .95rem;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.btn, .btn-secondary {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 46px; padding: 0 16px; border-radius: 999px; font-weight: 700; font-size: .95rem;
  border: 1px solid transparent;
  -webkit-appearance: none;
  appearance: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn {
  color: #fff; background: linear-gradient(135deg, #5b5cff, #7273ff);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.32), 0 14px 28px rgba(91,92,255,.20);
  border-color: rgba(255,255,255,.14);
}
.btn:not(.formacion-hero-cta):not(.intro-offer-cta)::after {
  content: '\2192';
  font-weight: 800;
  line-height: 1;
  transform: translateX(0);
  transition: transform .18s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.36), 0 18px 34px rgba(91,92,255,.24);
}
.btn:not(.formacion-hero-cta):not(.intro-offer-cta):hover::after {
  transform: translateX(2px);
}
.btn-secondary {
  color: var(--text); background: rgba(255,255,255,.74); border: 1px solid rgba(88,74,200,.10);
}
.btn-secondary:hover { transform: translateY(-2px); background: rgba(255,255,255,.96); }
.formacion-hero-cta {
  background: linear-gradient(90deg, #5752c8, #7675ff);
  border-color: rgba(255,255,255,.14);
}
.formacion-hero-cta:hover {
  background: linear-gradient(90deg, #5752c8, #7675ff);
}
.hero-media, .media-card {
  position: relative; overflow: hidden; border-radius: 22px; min-height: 210px;
  max-width: 420px; width: 100%;
  border: 1px solid rgba(255,255,255,.78); box-shadow: var(--shadow-xl);
}
.hero-media {
  min-height: clamp(200px, 23vw, 220px);
  max-width: none;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 30px;
  box-shadow: 0 18px 40px rgba(17, 10, 52, .18);
  background: rgba(255,255,255,.06);
  margin-top: 10px;
}
.section-card.dark .hero-media,
.section-card.dark .contact-hero-media {
  position: relative;
  overflow: visible;
  isolation: isolate;
}
.section-card.dark .hero-media::before,
.section-card.dark .contact-hero-media::before {
  content: '';
  position: absolute;
  inset: -22px -18px -18px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 80%, rgba(138,139,255,.34), transparent 46%),
    radial-gradient(circle at 72% 18%, rgba(255,255,255,.18), transparent 42%);
  filter: blur(10px);
  opacity: .84;
  pointer-events: none;
}
.section-card.dark .hero-media::after,
.section-card.dark .contact-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background-image:
    url("media/mark-three-dots-white.svg"),
    linear-gradient(90deg, rgba(25,23,54,.30) 0%, rgba(25,23,54,.10) 34%, transparent 68%);
  background-repeat: no-repeat;
  background-position: left 18px bottom 2px, 0 0;
  background-size: 38px 38px, 100% 100%;
  pointer-events: none;
}
.section-card.dark .hero-media img,
.section-card.dark .contact-hero-media img {
  position: relative;
  z-index: 1;
  border-radius: inherit;
}
.about-hero-media {
  width: 420px;
  height: 244px;
  min-height: 0;
  aspect-ratio: 4 / 3;
  justify-self: end;
  align-self: start;
  margin-top: 6px;
  max-width: 420px;
  flex: 0 0 420px;
  border-radius: 14px;
}
.about-hero-media img {
  border-radius: 14px;
}
.hero-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  box-shadow: 0 10px 24px rgba(17, 10, 52, .16), inset 0 0 0 1px rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.hero-play-button span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid rgba(255,255,255,.9);
  filter: drop-shadow(0 2px 3px rgba(17, 10, 52, .22));
}
.hero-play-button:hover,
.hero-play-button:focus-visible {
  background: rgba(255,255,255,.24);
  box-shadow: 0 14px 30px rgba(17, 10, 52, .22), inset 0 0 0 1px rgba(255,255,255,.2);
  transform: translate(-50%, -50%) scale(1.035);
}
.hero-play-button:focus-visible {
  outline: 3px solid rgba(255,255,255,.78);
  outline-offset: 4px;
}
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 16, 48, .72);
  backdrop-filter: blur(8px);
}
.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(14, 12, 44, .42);
}
.video-modal-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  background: #191736;
}
.video-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-modal-close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: #2c285f;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(17, 10, 52, .24);
}
.hero-grid > :first-child {
  min-width: 0;
}
.hero-grid > .about-hero-media {
  width: 420px;
}
.hero-visual {
  display: grid;
  grid-template-rows: auto auto;
  gap: 10px;
  align-items: start;
  align-content: start;
  padding-top: 0;
  padding-left: clamp(0px, 1vw, 10px);
}
.split-grid > .media-card,
.cta-grid > .media-card {
  justify-self: center;
}
.problem-media-card {
  width: 100%;
  max-width: none;
  min-height: clamp(200px, 23vw, 220px);
  justify-self: stretch;
  align-self: start;
  margin-top: 0;
}
.hero-visual > .hero-media { justify-self: stretch; }
.hero-media img, .media-card img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-media img { object-position: center; }
.about-hero-media img {
  object-fit: contain;
  object-position: center;
}
.hero-cta-row {
  margin-top: 0;
  justify-content: center;
  width: min(100%, 360px);
  justify-self: center;
  gap: 14px;
  transform: translateY(8px);
}
.hero-cta {
  color: var(--text);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(88,74,200,.10);
  box-shadow: none;
  min-width: 148px;
  min-height: 34px;
  padding: 6px 16px;
  font-size: .9rem;
}
.hero-cta:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.96);
  box-shadow: none;
}
.media-stack { display: grid; gap: 18px; }
.soft-card, .info-card, .quote-card, .stat-card {
  padding: 18px; border-radius: 18px; background: rgba(255,255,255,.60);
  border: 1px solid rgba(255,255,255,.55); box-shadow: var(--shadow-md);
}
.stat-card { text-align: center; }
.stat { font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 900; letter-spacing: -.03em; color: var(--text); }
.stat-label { margin-top: 8px; color: #6b7386; }
.section-title {
  margin: 0 0 10px; font-size: clamp(1.24rem, 2.18vw, 1.92rem); line-height: 1.12; letter-spacing: -.035em;
}
.section-title-note { margin: 0 0 18px; color: #6b7386; }
.copy, .copy p, .copy li { color: #6b7386; line-height: 1.7; font-size: .98rem; }
.copy p {
  margin: 0;
}
.copy p + p {
  margin-top: 12px;
}
.about-method-section .section-inner {
  padding-bottom: 12px;
}
.problem-copy {
  align-self: stretch;
}
.problem-copy .section-title {
  margin-bottom: 14px;
  line-height: 1.14;
}
.problem-copy p {
  font-size: 1.08rem;
  line-height: 1.62;
}
.result-section-inner {
  display: flex;
  justify-content: center;
  padding-top: clamp(22px, 3vw, 34px);
  padding-bottom: clamp(24px, 3.2vw, 38px);
}
.result-section {
  background: linear-gradient(180deg, #f6f4ff 0%, #efecfe 100%);
  border-color: rgba(157,151,255,.18);
}
.result-copy {
  width: min(100%, 860px);
  text-align: center;
}
.result-copy .eyebrow {
  justify-content: center;
}
.result-copy .result-quote {
  margin: 0;
  color: #2d2f38;
  font-size: clamp(2rem, 4.15vw, 3.55rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.06;
}
.result-copy .result-quote span {
  display: block;
}
.result-copy .result-quote em {
  color: #5b5cff;
  font-style: normal;
  font-weight: 800;
}
.result-copy .result-quote strong {
  color: #171821;
  font-weight: 900;
}
.intro-split-grid {
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(16px, 2vw, 24px);
}
.section-card:has(.intro-split-grid) .section-inner {
  padding-top: 14px;
  padding-bottom: 14px;
}
.intro-portrait-card {
  width: auto;
  max-width: 100%;
  min-height: 286px;
  height: 286px;
  justify-self: center;
}
.intro-portrait-card img {
  display: block;
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: center;
}
.intro-portrait-card .intro-portrait-img {
  width: 100%;
}
.intro-copy {
  max-width: 640px;
}
.intro-title {
  font-size: clamp(1.24rem, 2.18vw, 1.92rem);
  color: #636877;
  font-weight: 700;
  margin-bottom: 14px;
}
.intro-copy p {
  margin: 0;
  color: #6b7386;
  font-size: clamp(.98rem, 1.28vw, 1.08rem);
  line-height: 1.62;
}
.intro-help-label {
  margin-top: 14px !important;
}
.intro-offer-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.intro-offer-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 10px 16px 10px 32px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(91,92,255,.10);
  box-shadow: 0 10px 24px rgba(33, 37, 84, .06);
  transition: transform .22s cubic-bezier(.16,1,.3,1), box-shadow .22s cubic-bezier(.16,1,.3,1), border-color .22s ease, background .22s ease;
}
.intro-offer-item::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
  transform: translateY(-50%);
  transition: width .22s cubic-bezier(.16,1,.3,1), height .22s cubic-bezier(.16,1,.3,1), box-shadow .22s ease;
}
.intro-offer-item:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.94);
  border-color: rgba(91,92,255,.18);
  box-shadow: 0 18px 34px rgba(33, 37, 84, .10);
}
.intro-offer-item:hover::before {
  width: 9px;
  height: 9px;
  box-shadow: 0 0 0 6px rgba(91,92,255,.10);
}
.intro-offer-item:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}
.intro-offer-text {
  margin: 0;
  color: #6b7386;
  font-size: clamp(.97rem, 1.12vw, 1.02rem);
  line-height: 1.34;
}
.intro-offer-cta {
  min-width: 144px;
  min-height: 40px;
  box-shadow: none;
}
.intro-offer-cta::after {
  content: '\2192';
  font-weight: 800;
  line-height: 1;
  transform: translateX(0);
  transition: transform .18s ease;
}
.intro-offer-item:hover .intro-offer-cta::after {
  transform: translateX(2px);
}
.intro-offer-item .intro-offer-cta,
.intro-offer-item .intro-offer-cta.btn-secondary {
  color: #fff;
  background: linear-gradient(90deg, #5752c8, #7675ff);
  border-color: rgba(255,255,255,.14);
}
.intro-offer-item .intro-offer-cta:hover,
.intro-offer-item .intro-offer-cta.btn-secondary:hover {
  background: linear-gradient(90deg, #5752c8, #7675ff);
  box-shadow: 0 14px 28px rgba(91,92,255,.20);
}
.scroll-hint {
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 2px;
  opacity: .34;
  animation: problem-arrow-bob 1.8s ease-in-out infinite;
}
.scroll-hint span {
  width: 14px;
  height: 14px;
  display: block;
  border-right: 1.5px solid rgba(99,104,119,.72);
  border-bottom: 1.5px solid rgba(99,104,119,.72);
  transform: rotate(45deg);
}
.problem-section-grid {
  position: relative;
  align-items: start;
}
.problem-scroll-hint {
  position: absolute;
  left: calc(46.4% + 6px);
  bottom: 26px;
  transform: translateX(-50%);
  margin: 0;
  z-index: 2;
}
.intro-scroll-hint {
  display: none;
}
.home-hero-scroll-hint {
  display: none;
}
.formacion-scroll-hint {
  display: none;
}
.problem-arrow {
  display: grid;
  gap: 4px;
  opacity: .72;
  animation: problem-arrow-bob 1.8s ease-in-out infinite;
}
.problem-arrow-outside {
  justify-content: center;
  justify-items: center;
  margin: -2px 0 18px;
}
.problem-arrow span {
  width: 18px;
  height: 18px;
  display: block;
  border-right: 1.8px solid rgba(99,104,119,.9);
  border-bottom: 1.8px solid rgba(99,104,119,.9);
  transform: rotate(45deg);
}
.copy p:last-child { margin-bottom: 0; }
.clean-list { list-style: none; padding: 0; margin: 14px 0 0; display: inline-grid; width: max-content; max-width: 100%; gap: 10px; }
.clean-list li {
  display: flex; width: 100%; max-width: 100%; gap: 10px; align-items: flex-start; color: #6b7386;
  padding: 12px 14px; border-radius: 16px; background: rgba(255,255,255,.54); border: 1px solid rgba(88,74,200,.08);
}
.clean-list li::before { content: '•'; color: var(--primary); font-weight: 900; font-size: 1.15rem; line-height: 1; }
.check-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0,1fr)); }
.check-card {
  padding: 13px 15px 12px 16px; border-radius: 18px; background: rgba(255,255,255,.56);
  border: 1px solid rgba(88,74,200,.08); box-shadow: none;
}
.check-card h3 { margin: 0 0 6px; font-size: 1.08rem; letter-spacing: -.02em; }
.check-card p { margin: 0; color: #6b7386; font-size: .95rem; line-height: 1.5; }
.formacion-content-intro {
  margin: 0 0 12px;
  color: #6b7386;
  font-size: 1.02rem;
  line-height: 1.72;
}
.formacion-content-section .section-inner {
    padding-bottom: 14px;
  }
.formacion-content-section {
  position: relative;
}
.formacion-program {
  margin-top: 10px;
}
.formacion-program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(88,74,200,.10);
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(249,247,255,.84));
}
.formacion-program-card {
  padding: 16px 18px 18px;
  min-width: 0;
  background: transparent;
  transition: transform .22s cubic-bezier(.16,1,.3,1), background .22s ease, box-shadow .22s cubic-bezier(.16,1,.3,1);
}
.formacion-program-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.70);
  box-shadow: 0 14px 28px rgba(40, 28, 96, .08);
}
.formacion-program-card + .formacion-program-card {
  border-left: 1px solid rgba(88,74,200,.10);
}
.formacion-program-step {
  margin-bottom: 12px;
  color: #4f46c7;
  font-size: 1.38rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.03em;
}
.formacion-program-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
  color: #6b7386;
  font-size: .95rem;
  line-height: 1.45;
}
.formacion-program-list li {
  position: relative;
  padding-left: 12px;
}
.formacion-program-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .68em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #6b7386;
}
.formacion-program-band {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-height: 32px;
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid rgba(88,74,200,.10);
  background: rgba(255,255,255,.82);
  color: #8b8fa3;
  font-size: .88rem;
  font-weight: 400;
}
.formacion-program-band-title {
  color: #4f46c7;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.formacion-program-band-sep {
  color: rgba(122,115,255,.55);
}
.formacion-dossier-grid {
    display: grid;
    grid-template-columns: minmax(0, 24rem) minmax(405px, 405px);
    gap: clamp(44px, 6vw, 72px);
    max-width: 100%;
    margin: 0;
    align-items: stretch;
    justify-content: start;
  }
.formacion-dossier-copy {
      min-width: 0;
      max-width: 32rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding-top: 6px;
      padding-bottom: 10px;
      text-align: left;
    }
.formacion-dossier-copy p:first-of-type {
      margin-top: 0;
    }
.formacion-dossier-copy p {
      max-width: 24rem;
      line-height: 1.42;
      margin: 0 0 14px;
    }
.formacion-dossier-cta-row {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 24px;
      flex-wrap: wrap;
      margin-top: 2px;
    }
.formacion-dossier-cta-row p {
      margin: 0;
    }
.formacion-dossier-copy .cta-row {
      margin-top: 0;
      justify-content: flex-start;
      margin-left: 0;
    }
.formacion-dossier-copy .btn {
      min-height: 46px;
      padding: 0 16px;
      font-size: .95rem;
      white-space: nowrap;
    }
.formacion-dossier-photo {
      margin: 0;
      justify-self: start;
      width: min(100%, 405px);
      aspect-ratio: 405 / 168;
      border-radius: 24px;
      overflow: hidden;
      background: transparent;
      border: 0;
      box-shadow: 0 16px 34px rgba(40, 28, 96, .10);
    }
.formacion-dossier-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }
.formacion-collab-section {
      background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,243,255,.88));
    }
.formacion-collab-inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: clamp(18px, 3vw, 40px);
    }
.formacion-collab-copy {
      max-width: 720px;
    }
.formacion-collab-copy p {
      max-width: 66ch;
    }
.formacion-collab-cta-row {
      margin-top: 0;
      justify-content: flex-end;
    }
.formacion-collab-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary);
      font-size: .95rem;
      font-weight: 800;
      white-space: nowrap;
      transition: color .18s ease, transform .18s ease;
    }
.formacion-collab-link::after {
      content: '\2192';
      line-height: 1;
      transition: transform .18s ease;
    }
.formacion-collab-link:hover,
.formacion-collab-link:focus-visible {
      color: #4f46c7;
      transform: translateY(-1px);
    }
.formacion-collab-link:hover::after,
.formacion-collab-link:focus-visible::after {
      transform: translateX(2px);
    }
.formacion-collab-link:focus-visible {
      outline: 2px solid rgba(91,92,255,.34);
      outline-offset: 4px;
      border-radius: 999px;
    }
.formacion-formats-card {
      justify-self: start;
      width: fit-content;
      max-width: 100%;
      margin-top: 6px;
      margin-left: clamp(24px, 4vw, 44px);
      padding-right: 22px;
      background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,243,255,.88));
      border: 1px solid rgba(88,74,200,.10);
      box-shadow: 0 14px 28px rgba(40, 28, 96, .08);
    }
.formacion-formats-card h3 {
    margin: 0;
  }
.formacion-formats-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 10px;
    color: #6b7386;
    line-height: 1.52;
  }
.formacion-formats-list strong {
    font-weight: 800;
    color: var(--text);
  }
.formacion-dossier-grid .section-inner,
.section-card .section-inner.formacion-dossier-grid {
    padding-bottom: 10px;
  }
  .method-intro {
    max-width: 780px;
    margin: 0 0 28px;
    color: #6b7386;
  font-size: 1.02rem;
  line-height: 1.75;
}
.method-orbit {
  position: relative;
  display: grid;
  grid-template-columns: minmax(275px, 370px) 150px minmax(275px, 370px);
  grid-template-areas:
    "top top top"
    "left logo right";
  align-items: center;
  justify-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  gap: 14px 28px;
  padding: 8px 0 0;
}
.method-orbit-lines {
  position: absolute;
  inset: 18px 38px 0;
  z-index: 0;
  width: calc(100% - 76px);
  height: calc(100% - 18px);
  overflow: visible;
  pointer-events: none;
}
.method-orbit-lines path {
  fill: none;
  stroke: rgba(91,92,255,.26);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1 9;
  vector-effect: non-scaling-stroke;
}
.method-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 370px;
  padding: 20px 22px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(251,251,255,.96), rgba(245,242,255,.86));
  border: 1px solid rgba(122,113,255,.16);
  box-shadow: 0 16px 30px rgba(40, 28, 96, .08);
  text-align: center;
}
.method-card::before {
  content: '';
  display: block;
  width: 34px;
  height: 4px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: #6a6df5;
}
.method-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  letter-spacing: -.02em;
}
.method-step,
.method-subtitle {
  display: block;
}
.method-step {
  margin-bottom: 3px;
  font-size: clamp(1.7rem, 3.2vw, 2.15rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.05em;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: currentColor;
}
.method-subtitle {
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.18;
}
.method-card h3 a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color .18s ease, text-decoration-color .18s ease, opacity .18s ease;
}
.method-card h3 a:hover {
  color: #2f35d8;
  text-decoration-color: currentColor;
  opacity: .9;
}
.method-card h3 a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
  border-radius: 4px;
}
.method-card p {
  margin: 0;
  color: #6b7386;
  line-height: 1.62;
  font-size: 1rem;
}
.method-card-top { grid-area: top; width: min(100%, 395px); max-width: 395px; }
.method-card-left { grid-area: left; transform: translate(2px, 30px); }
.method-card-right { grid-area: right; transform: translate(-2px, 30px); }
.method-card-top {
  background: linear-gradient(180deg, rgba(94,98,244,.12), rgba(255,255,255,.9));
  border-color: rgba(79, 85, 232, .20);
  box-shadow: 0 16px 30px rgba(79, 85, 232, .10);
}
.method-card-top::before {
  background: #4b4fe3;
}
.method-card-top h3 {
  color: #4b4fe3;
}
.method-card-left {
  background: linear-gradient(180deg, rgba(92,96,248,.10), rgba(255,255,255,.9));
  border-color: rgba(92, 96, 248, .18);
  box-shadow: 0 16px 30px rgba(92, 96, 248, .10);
}
.method-card-left::before {
  background: #5c60f8;
}
.method-card-left h3 {
  color: #5c60f8;
}
.method-card-right {
  background: linear-gradient(180deg, rgba(173,170,255,.16), rgba(255,255,255,.92));
  border-color: rgba(173, 170, 255, .24);
  box-shadow: 0 16px 30px rgba(173, 170, 255, .12);
}
.method-card-right::before {
  background: #b0acff;
}
.method-card-right h3 {
  color: #8f8af7;
}
.method-logo {
  position: relative;
  z-index: 1;
  grid-area: logo;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.method-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.method-practice-band {
  width: min(100%, 700px);
  margin: 56px auto 0;
  padding: 14px 20px 16px;
  border-radius: 22px;
  background: linear-gradient(90deg, #2f2b67, #5952d8 58%, #6d6af6);
  color: #f5f4ff;
  box-shadow: 0 18px 36px rgba(46, 34, 107, .18);
}
.method-practice-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.method-practice-pill {
  display: inline;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  font-size: .92rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: currentColor;
}
.method-practice-note {
  color: rgba(245,244,255,.82);
  font-style: italic;
  font-size: .82rem;
  font-weight: 700;
}
.method-practice-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.method-practice-chip {
  display: inline;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  font-weight: 800;
  white-space: nowrap;
}
.method-practice-arrow {
  color: rgba(255,255,255,.55);
  font-size: 1.05rem;
  line-height: 1;
}
.consultoria-method-orbit {
  margin: 24px auto 0;
}
.consultoria-cta-row {
  justify-content: center;
  margin-top: 65px;
  padding-top: 3px;
}
.consultoria-cta-button {
  color: #f7f7ff;
  background: linear-gradient(90deg, #5752c8, #7675ff);
  border-color: rgba(255,255,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.32), 0 16px 32px rgba(92, 96, 248, .24);
  min-height: 60px;
  padding: 0 28px;
  font-size: 1.1rem;
  will-change: transform;
}
.consultoria-cta-button::after {
  content: '\2192';
  color: #fff;
  font-weight: 800;
  line-height: 1;
  transform: translateX(0);
  transition: transform .18s ease;
}
.consultoria-cta-row:hover .consultoria-cta-button {
  transform: none;
  background: linear-gradient(90deg, #5752c8, #7675ff);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.38), 0 22px 42px rgba(92, 96, 248, .30);
}
.consultoria-cta-row:hover .consultoria-cta-button::after {
  transform: translateX(3px);
}
.consultoria-cta-button.btn-secondary:hover {
  transform: none;
}
.consultoria-method-card {
  padding: 22px 24px 24px;
  text-align: center;
  display: flow-root;
}
.consultoria-method-card::before {
  float: none;
  width: 42px;
  height: 4px;
  margin: 0 auto 14px;
  border-radius: 999px;
}
.consultoria-method-card h3 {
  max-width: none;
  min-height: 0;
  margin: 0;
  line-height: 1.4;
}
.consultoria-method-card.method-card-top {
  width: min(100%, 356px);
  max-width: 356px;
}
.consultoria-method-card.method-card-left,
.consultoria-method-card.method-card-right {
  width: min(100%, 280px);
  max-width: 280px;
  transform: translateY(34px);
}
.about-orbit {
  display: grid;
  grid-template-areas:
    "top top top"
    "left logo right";
  align-items: center;
  justify-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 18px;
  grid-template-columns: minmax(280px, 390px) 165px minmax(280px, 390px);
  gap: 18px 26px;
}
.about-method-card {
  position: relative;
  max-width: 360px;
  padding: 18px 18px 16px;
  text-align: left;
  display: flow-root;
}
.about-method-card::before {
  float: left;
  width: 8px;
  height: 8px;
  margin: 7px 10px 0 0;
  border-radius: 999px;
}
.about-method-card-top::before {
  background: #4b4fe3;
}
.about-method-card-left::before {
  background: #5c60f8;
}
.about-method-card-right::before {
  background: #b0acff;
}
.about-method-card h3 {
  max-width: calc(100% - 152px);
  min-height: 28px;
  margin-bottom: 10px;
  line-height: 1.2;
}
.about-method-media {
  float: right;
  width: 136px;
  height: 102px;
  margin: -12px 0 10px 16px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(88,74,200,.12);
  box-shadow: 0 10px 22px rgba(40, 28, 96, .10);
}
.about-method-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-method-card p {
  font-size: .88rem;
  line-height: 1.58;
  margin: 0;
}
.about-method-card-top {
  grid-area: top;
  width: min(100%, 388px);
  max-width: 388px;
}
.about-method-card-left {
  grid-area: left;
  transform: translate(-18px, 10px);
}
.about-method-card-right {
  grid-area: right;
  transform: translate(18px, 10px);
  width: min(100%, 404px);
  max-width: 404px;
}
.about-method-card-right .about-method-media img {
  object-position: center top;
}
.quote-card {
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,243,255,.88));
}
.quote-card blockquote {
  margin: 0; font-size: clamp(1.14rem, 1.8vw, 1.48rem); line-height: 1.82; font-weight: 400; letter-spacing: -.015em;
}
.quote-card blockquote strong {
  font-weight: 700;
}
.split-emphasis {
  font-weight: 400;
}
.split-emphasis strong {
  font-weight: 800;
}
.quote-card footer { margin-top: 12px; color: #6b7386; font-size: .92rem; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pill {
  padding: 10px 14px; border-radius: 999px; background: rgba(91,92,255,.08);
  color: var(--primary); font-weight: 700; font-size: .95rem;
}
.logo-band {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
}
.logo-chip {
  display: inline-flex; align-items: center; gap: 12px; padding: 14px 18px;
  background: rgba(255,255,255,.70); border-radius: 18px; border: 1px solid var(--line);
}
.logo-chip img { width: 44px; height: 44px; object-fit: cover; border-radius: 999px; }
.kpi-row { display: grid; gap: 12px; grid-template-columns: repeat(4, minmax(0,1fr)); }
.kpi { padding: 14px; border-radius: 16px; background: rgba(255,255,255,.58); border: 1px solid rgba(88,74,200,.08); }
.kpi strong { display: block; font-size: 1.35rem; margin-bottom: 4px; }
.form-shell {
  padding: 6px 0 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
}
.form-shell h2, .form-shell p, .form-shell label, .form-shell .contact-lines strong, .form-shell .contact-lines span, .form-shell .contact-lines a {
  color: rgba(255,255,255,.95);
}
.form-shell .muted { color: rgba(255,255,255,.72); }
.form-stack { display: grid; gap: 16px; }
.field label { display: block; margin-bottom: 8px; font-weight: 700; }
.field input, .field textarea, .field select {
  width: 100%; padding: 15px 16px; border-radius: 16px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08); color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.56); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: rgba(255,255,255,.34); box-shadow: 0 0 0 4px rgba(91,92,255,.18);
}
.field textarea { min-height: 150px; resize: vertical; }
.form-action { margin-top: 8px; }
.contact-lines { display: grid; gap: 12px; }
.contact-line {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.contact-line strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 6px 0 0;
}
.contact-line a {
  color: rgba(255,255,255,.92);
  transition: color .18s ease, text-shadow .18s ease;
}
.contact-line a:hover {
  color: #fff;
  text-shadow: 0 0 18px rgba(255,255,255,.28);
}
.contact-hero-footer { margin-top: 112px; padding-top: 0; }
.contact-hero-kicker { margin-bottom: 10px; font-weight: 400; }
.contact-lines-inline { width: max-content; max-width: 100%; gap: 10px; }
.contact-line-inline {
  width: 100%;
  padding: 10px 12px;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.14);
}
.contact-line-inline strong,
.contact-line-inline a {
  color: rgba(255,255,255,.96);
}
.contact-line-inline strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.contact-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.82);
}
.contact-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 2px auto 20px;
  padding: 10px 16px; border-radius: 18px;
  background: linear-gradient(90deg, #3b367f 0%, #5f61e8 100%);
  color: rgba(255,255,255,.9); box-shadow: 0 14px 28px rgba(29,20,75,.16);
}
.footer-inline {
  display: grid;
  grid-template-columns: max-content minmax(120px, 1fr) max-content;
  align-items: center;
  gap: 14px 18px;
}
.footer-meta,
.footer-legal,
.socials {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-meta,
.footer-legal {
  font-size: .66rem;
}
.footer-meta {
  display: grid;
  justify-items: start;
  gap: 2px;
}
.footer-copy {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.footer-legal {
  gap: 6px;
  white-space: nowrap;
}
.footer a { color: rgba(255,255,255,.86); }
.footer a:hover { color: #fff; }
.footer-sep { color: rgba(255,255,255,.52); }
.footer-email {
  justify-self: end;
  font-size: .95rem;
  font-weight: 600;
}
.socials {
  justify-self: center;
  padding: 0 22px;
}
.socials a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.88);
  transition: color .18s ease, transform .18s ease, opacity .18s ease;
}
.socials a:hover {
  color: #fff;
  transform: translateY(-1px);
}
.socials svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.socials .ig-dot {
  fill: currentColor;
  stroke: none;
}
.socials .social-fill {
  fill: currentColor;
  stroke: none;
}
.legal { padding: 34px; }
.legal h1 { margin-top: 0; }
.legal h2 { margin-top: 28px; font-size: 1.2rem; }
.legal p, .legal li { color: #6b7386; line-height: 1.8; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes problem-arrow-bob {
  0%, 100% { transform: translateY(0); opacity: .62; }
  50% { transform: translateY(6px); opacity: .9; }
}
.footer.reveal,
.footer.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}
.mobile-only { display: none; }
.desktop-only { display: initial; }
.hidden { display: none !important; }
@media (max-width: 980px) {
  .hero-grid, .split-grid, .feature-grid, .cards-grid, .cta-grid, .form-grid, .check-grid, .kpi-row, .footer-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    position: absolute; left: 16px; right: 16px; top: calc(100% + 10px); display: none;
    flex-direction: column; align-items: stretch; gap: 6px; padding: 12px;
    border-radius: 18px; background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.88); box-shadow: var(--shadow-lg);
  }
  .nav.open { display: flex; }
  .nav a { text-align: left; }
  .section-inner { padding: 20px 18px 12px; }
  .hero-title, .page-title { font-size: clamp(1.7rem, 9vw, 2.7rem); }
  .hero-copy { min-height: auto; gap: 12px; padding-top: 0; }
  .hero-copy .lead { margin-top: 0; }
  .about-hero-copy {
    min-height: auto;
    display: block;
  }
  .about-hero-copy .eyebrow {
    margin-bottom: 10px;
  }
  .about-hero-copy .page-title {
    margin-bottom: 18px;
  }
  .intro-split-grid {
    grid-template-columns: 1fr;
  }
  .intro-portrait-card {
    width: min(100%, 320px);
    min-height: 340px;
  }
  .intro-copy {
    max-width: none;
  }
  .intro-offer-item {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .intro-offer-cta {
    min-width: 0;
    justify-self: start;
  }
  .hero-media, .media-card { min-height: 180px; max-width: 100%; }
  .hero-media {
    border: 1px solid rgba(255,255,255,.78);
    border-radius: 22px;
    box-shadow: var(--shadow-xl);
  }
  .about-hero-media {
    width: min(100%, 336px);
    height: auto;
    aspect-ratio: 4 / 3;
    justify-self: start;
    max-width: 336px;
    flex: none;
  }
  .hero-visual { padding-top: 0; }
  .hero-cta-row { justify-content: flex-start; width: 100%; justify-self: stretch; gap: 10px; }
  .hero-cta { min-width: 0; }
  .contact-hero-media {
    min-height: 260px;
    width: 100%;
  }
  .method-orbit {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "top"
      "left"
      "right";
    gap: 18px;
    padding-top: 10px;
  }
  .method-orbit-lines {
    display: none;
  }
  .method-logo {
    width: min(100%, 110px);
  }
  .consultoria-method-card.method-card-left,
  .consultoria-method-card.method-card-right,
  .consultoria-method-card.method-card-top {
    width: 100%;
    max-width: 100%;
  }
  .method-card {
    max-width: 100%;
  }
  .method-card-left,
  .method-card-right {
    transform: none;
  }
  .method-card-top {
    width: 100%;
    max-width: 100%;
  }
  .method-practice-band {
    margin-top: 26px;
    padding: 14px 14px 16px;
  }
  .method-practice-header {
    justify-content: flex-start;
  }
  .method-practice-flow {
    justify-content: flex-start;
    gap: 10px;
  }
  .method-practice-note {
    width: 100%;
  }
  .about-orbit {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "top"
      "left"
      "right";
    gap: 18px;
    width: 100%;
  }
  .about-method-card {
    max-width: 100%;
    display: block;
  }
  .about-method-card-left,
  .about-method-card-right {
    transform: none;
  }
  .about-method-card h3 {
    max-width: none;
    min-height: 0;
  }
  .about-method-media {
    float: none;
    width: 124px;
    height: 93px;
    margin: 0 0 12px;
  }
  .footer { width: calc(100% - 24px); padding: 12px 14px; }
  .footer-inline { grid-template-columns: 1fr; align-items: flex-start; gap: 10px; }
  .socials { justify-self: start; padding: 0; border: 0; }
  .footer-email { justify-self: start; }
}
@media (max-width: 480px) {
  html,
  body {
    overflow-x: hidden;
  }
  .container {
    width: calc(100% - 20px);
  }
  .about-main > .container {
    width: calc(100% - 16px);
    max-width: 100%;
  }
  .about-main .section-card,
  .about-main .section-inner,
  .about-main .about-hero-copy,
  .about-main .about-hero-media {
    min-width: 0;
    max-width: 100%;
  }
  .site-header {
    padding: 8px 10px;
  }
  .brand img {
    height: 28px;
  }
  .section-inner {
    padding: 18px 16px 12px;
  }
  .hero-visual {
    padding-left: 0;
  }
  .hero-visual > .hero-media {
    min-height: 0;
    aspect-ratio: 1.92 / 1;
  }
  .hero-grid:has(.about-hero-media) {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
  .about-main .section-inner.hero-grid {
    padding-left: 18px;
    padding-right: 18px;
  }
  .about-hero-copy {
    max-width: none;
    padding-top: 0;
    min-width: 0;
    width: min(100%, calc(100vw - 68px));
  }
  .about-hero-copy .page-title {
    font-size: clamp(1.45rem, 8.8vw, 2.2rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .about-hero-copy .lead {
    width: min(100%, calc(100vw - 68px));
    min-width: 0;
    font-size: 1.02rem;
    line-height: 1.5;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .about-hero-media {
    justify-self: center;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
  }
  .about-hero-media img {
    object-fit: cover;
    object-position: center top;
  }
  .about-hero-title-break {
    display: none;
  }
}
@media (max-width: 380px) {
  .about-main .section-inner.hero-grid {
    padding-left: 18px;
    padding-right: 18px;
  }
  .about-hero-copy .page-title {
    font-size: 2.55rem;
    line-height: 1.02;
    letter-spacing: -0.04em;
  }
  .about-hero-copy .lead {
    font-size: .97rem;
    line-height: 1.46;
    width: min(100%, calc(100vw - 68px));
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
@supports (-moz-appearance: none) {
  @media (min-width: 981px) {
    .about-main .section-card.dark .section-inner.hero-grid {
      grid-template-columns: minmax(0, 1fr) 332px;
      column-gap: 10px;
    }
    .about-hero-media,
    .about-main .hero-grid > .about-hero-media {
      width: 332px !important;
      max-width: 332px !important;
      flex-basis: 332px;
    }
    .about-main .about-hero-copy {
      max-width: 35.8rem;
    }
    .about-main .about-hero-media img {
      object-fit: cover;
      object-position: center;
    }
  }
}
@media (min-width: 981px) and (max-height: 820px) {
  .intro-split-grid {
    position: relative;
    padding-bottom: 42px;
  }
  .intro-scroll-hint {
    display: grid;
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    margin: 0;
    z-index: 2;
  }
  .consultoria-call-grid {
    align-items: start;
  }
  .consultoria-call-grid .section-title {
    margin-bottom: 12px;
    line-height: 1.12;
  }
  .consultoria-method-orbit {
    margin-top: 12px;
    transform: translateY(-10px);
  }
  .consultoria-method-card {
    padding: 18px 22px 20px;
  }
  .consultoria-cta-row {
    margin-top: 34px;
  }
  .consultoria-cta-button {
    min-height: 54px;
    font-size: 1.02rem;
    padding: 0 24px;
  }
  .contact-hero-section {
    min-height: clamp(500px, calc(100vh - 180px), 680px);
  }
  .contact-hero-lead {
    margin-top: 18px;
    line-height: 1.72;
  }
  .contact-hero-media {
    min-height: 0;
    height: 374px;
    width: min(100%, 438px);
    margin-top: 50px;
  }
  .contact-hero-media img {
    object-fit: cover;
    object-position: 50% 22%;
  }
  .contact-form-grid .form-shell {
    margin-top: 30px;
  }
  .form-shell {
    padding: 16px;
  }
  .form-stack {
    gap: 12px;
  }
  .field label {
    margin-bottom: 6px;
  }
  .field input,
  .field textarea,
  .field select {
    padding: 13px 15px;
  }
  .field textarea {
    min-height: 118px;
  }
  .form-action {
    margin-top: 2px;
  }
  .contact-hero-footer {
    margin-top: 26px;
  }
  .contact-hero-kicker {
    margin-bottom: 8px;
  }
  .contact-lines {
    gap: 10px;
  }
  .contact-line {
    padding: 13px 15px;
  }
  .formacion-content-section .section-inner {
    padding-top: 16px;
    padding-bottom: 28px;
  }
  .formacion-content-section .eyebrow {
    margin-bottom: 8px;
  }
  .formacion-content-intro {
    margin: 0 0 10px;
    font-size: 1rem;
    line-height: 1.56;
  }
  .formacion-program-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
  }
  .formacion-program-card {
    padding: 16px 18px 18px;
    border: 1px solid rgba(88,74,200,.10);
    border-radius: 18px;
    background: rgba(255,255,255,.86);
  }
  .formacion-program-card + .formacion-program-card {
    border-left: 0;
    border-top: 1px solid rgba(88,74,200,.10);
  }
  .formacion-program-step {
    font-size: 1.26rem;
    margin-bottom: 8px;
  }
  .formacion-program-list {
    gap: 6px;
    font-size: .94rem;
  }
  .formacion-program-band {
    gap: 8px;
    align-items: flex-start;
    padding: 9px 12px;
    font-size: .84rem;
  }
  .formacion-dossier-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 760px;
    align-items: start;
  }
  .formacion-dossier-copy {
    max-width: none;
    padding: 0;
  }
  .formacion-dossier-copy p {
    max-width: none;
  }
  .formacion-dossier-cta-row {
    display: grid;
    gap: 12px;
  }
  .formacion-dossier-photo {
    grid-row: 2;
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 405 / 168;
    margin-top: 2px;
  }
  .formacion-dossier-photo img {
    object-fit: contain;
    object-position: center;
  }
  .formacion-collab-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .formacion-collab-cta-row {
    justify-content: flex-start;
  }
  .formacion-scroll-hint {
    display: grid;
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    margin: 0;
    z-index: 2;
  }
}
@media (max-width: 767px) {
  .hero-grid {
    position: relative;
    padding-bottom: 34px;
  }
  .home-hero-scroll-hint {
    display: grid;
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    margin: 0;
    z-index: 2;
  }
  .result-copy .result-quote {
    font-size: clamp(1.8rem, 9vw, 2.7rem);
    line-height: 1.08;
  }
  .problem-copy p {
    font-size: clamp(.98rem, 1.28vw, 1.08rem);
    line-height: 1.62;
  }
  .formacion-program-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
  }
  .formacion-program-card {
    padding: 16px 18px 18px;
    border: 1px solid rgba(88,74,200,.10);
    border-radius: 18px;
    background: rgba(255,255,255,.86);
  }
  .formacion-program-card + .formacion-program-card {
    border-left: 0;
    border-top: 1px solid rgba(88,74,200,.10);
  }
  .formacion-program-step {
    font-size: 1.26rem;
    margin-bottom: 8px;
  }
  .formacion-program-list {
    gap: 6px;
    font-size: .94rem;
  }
  .formacion-program-band {
    gap: 8px;
    align-items: flex-start;
    padding: 9px 12px;
    font-size: .84rem;
  }
  .formacion-dossier-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 760px;
    align-items: start;
  }
  .formacion-dossier-copy {
    max-width: none;
    padding: 0;
  }
  .formacion-dossier-copy p {
    max-width: none;
  }
  .formacion-dossier-cta-row {
    display: grid;
    gap: 12px;
  }
  .formacion-dossier-photo {
    grid-row: 2;
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 405 / 168;
    margin-top: 2px;
  }
  .formacion-dossier-photo img {
    object-fit: contain;
    object-position: center;
  }
  .formacion-collab-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .formacion-collab-copy {
    max-width: none;
  }
  .formacion-collab-copy p {
    max-width: none;
    font-size: 1rem;
    line-height: 1.56;
  }
  .formacion-collab-cta-row {
    justify-content: flex-start;
    margin-top: 0;
  }
  .formacion-collab-link {
    white-space: normal;
  }
}
