/* =============================================================
   Sebastián Giraldo · Consultor en seguros
   1. Tokens
   ============================================================= */
:root {
  --slate:      #2f404f;   /* azul pizarra — texto y secciones oscuras */
  --slate-2:    #263441;
  --slate-3:    #1e2b36;
  --teal:       #3894a1;   /* acento */
  --teal-2:     #2f7d8a;   /* acento hover */
  --teal-soft:  #c7dad3;   /* menta pálida */
  --paper:      #ffffff;
  --bone:       #f0f1ee;   /* fondo general */
  --bone-2:     #e7e9e3;

  --ink:        #2f404f;
  --ink-soft:   #45535f;
  --ink-mute:   #6b7883;
  --cream:      #f4f6f4;   /* texto sobre oscuro */
  --cream-mute: rgba(244,246,244,0.72);

  --line:       rgba(47,64,79,0.14);
  --line-light: rgba(244,246,244,0.18);

  --radius:     16px;
  --radius-sm:  10px;
  --wrap:       1200px;
  --pad:        clamp(1.15rem, 5vw, 2rem);

  --sans:  "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --body:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:  cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --shadow-sm: 0 2px 10px rgba(47,64,79,0.06), 0 1px 3px rgba(47,64,79,0.05);
  --shadow-md: 0 18px 40px -18px rgba(47,64,79,0.22), 0 8px 18px -12px rgba(47,64,79,0.16);
  --shadow-lg: 0 40px 80px -30px rgba(47,64,79,0.34);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
[hidden] { display: none !important; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
  scroll-padding-top: 88px;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
  color: var(--slate);
}
::selection { background: var(--teal); color: #fff; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .6rem 1rem; background: var(--slate); color: #fff;
  border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

.section { padding-block: clamp(3.5rem, 9vw, 6.5rem); }

.kicker {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-2);
  margin-bottom: 1rem;
}
.kicker-light { color: var(--teal-soft); }

.section-head { max-width: 760px; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head h2 { font-size: clamp(1.7rem, 4.6vw, 2.7rem); }
.section-lead { margin-top: 1rem; font-size: 1.05rem; color: var(--ink-soft); }
[data-theme-dark] .section-lead { color: var(--cream-mute); }

.section-cta { margin-top: clamp(2rem, 5vw, 3rem); }

.fineprint, .footer-legal { font-size: .8rem; color: var(--ink-mute); line-height: 1.6; }
[data-theme-dark] .fineprint { color: var(--cream-mute); }

/* =============================================================
   4. Botones
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-weight: 700; font-size: .95rem;
  padding: .8rem 1.4rem; border-radius: 999px;
  transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft),
              background-color .3s var(--ease-out), color .3s var(--ease-out);
  will-change: transform;
}
.btn-lg { padding: 1rem 1.7rem; font-size: 1rem; }

.btn-accent { background: var(--teal); color: #fff; box-shadow: var(--shadow-sm); }
.btn-accent:hover { background: var(--teal-2); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-primary { background: var(--slate); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--slate-2); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent; color: var(--slate);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--teal); color: var(--teal-2); transform: translateY(-2px); }

.btn-ghost-light {
  background: rgba(255,255,255,0.06); color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }

.btn:active { transform: translateY(-1px); transition-duration: .1s; }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  transition: background-color .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.nav-inner {
  max-width: var(--wrap); margin-inline: auto;
  padding: .85rem var(--pad);
  display: flex; align-items: center; gap: 1.25rem;
}
.nav.is-scrolled {
  background: rgba(240,241,238,0.9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

/* Estado inicial sobre el hero oscuro: texto claro */
.nav:not(.is-scrolled) .brand-mark { background: rgba(255,255,255,0.16); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4); }
.nav:not(.is-scrolled) .brand-text strong { color: #fff; }
.nav:not(.is-scrolled) .brand-text em { color: rgba(255,255,255,0.75); }
.nav:not(.is-scrolled) .nav-links a { color: rgba(255,255,255,0.88); }
.nav:not(.is-scrolled) .nav-links a:hover { color: #fff; }
.nav:not(.is-scrolled) .nav-toggle span { background: #fff; }

.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand-mark {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--slate); color: #fff;
  font-family: var(--sans); font-weight: 800; font-size: .95rem; letter-spacing: .02em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--sans); font-weight: 800; font-size: .98rem; color: var(--slate); }
.brand-text em { font-style: normal; font-size: .74rem; color: var(--ink-mute); letter-spacing: .02em; }

.nav-links { display: none; gap: 1.4rem; }
.nav-links a {
  position: relative; font-family: var(--sans); font-weight: 600; font-size: .92rem;
  color: var(--ink-soft); padding: .3rem 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--teal); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-soft);
}
.nav-links a:hover { color: var(--slate); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { display: none; }

.nav-toggle {
  display: flex; flex-direction: column; gap: 5px; padding: 8px; margin: -8px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--slate); border-radius: 2px;
  transition: transform .35s var(--ease-out), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menú móvil */
.menu-movil {
  position: fixed; inset: 0; z-index: 95;
  background: var(--slate); color: #fff;
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .55s var(--ease-soft);
}
.menu-movil[aria-hidden="false"] { clip-path: inset(0); }
.menu-movil nav { display: flex; flex-direction: column; gap: 1.35rem; text-align: center; }
.menu-movil a {
  font-family: var(--sans); font-weight: 700; font-size: 1.4rem; color: #fff;
}
.menu-movil .btn { font-size: 1rem; margin-top: .5rem; }

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative; isolation: isolate;
  padding-top: clamp(7rem, 16vw, 9rem);
  padding-bottom: clamp(3.5rem, 9vw, 6rem);
  color: #fff;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(30,43,54,0.82) 0%, rgba(30,43,54,0.72) 45%, rgba(30,43,54,0.9) 100%),
    linear-gradient(105deg, rgba(30,43,54,0.94) 20%, rgba(30,43,54,0.35) 100%);
}
.hero-mesh {
  position: absolute; inset: -20%;
  background:
    radial-gradient(45% 45% at 15% 20%, rgba(56,148,161,0.5), transparent 70%),
    radial-gradient(40% 40% at 85% 75%, rgba(199,218,211,0.25), transparent 70%);
  filter: blur(50px);
  opacity: .8;
  animation: meshDrift 26s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  from { transform: translate3d(-3%, -2%, 0) scale(1); }
  to   { transform: translate3d(4%, 3%, 0) scale(1.12); }
}

.hero-grid { display: grid; gap: clamp(2rem, 6vw, 3.5rem); }

.hero-copy h1 {
  color: #fff;
  font-size: clamp(2rem, 6.6vw, 3.6rem);
  line-height: 1.06;
  margin-bottom: 1.1rem;
}
.hero-sub {
  font-size: clamp(1rem, 2.3vw, 1.18rem);
  color: rgba(255,255,255,0.86);
  max-width: 42ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }
.hero-checks {
  list-style: none; margin-top: 1.8rem; display: grid; gap: .55rem;
}
.hero-checks li {
  position: relative; padding-left: 1.8rem;
  font-family: var(--sans); font-weight: 600; font-size: .92rem;
  color: rgba(255,255,255,0.92);
}
.hero-checks li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 1.15rem; height: 1.15rem; border-radius: 50%;
  background: var(--teal);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/72% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/72% no-repeat;
}

/* Tarjeta del consultor */
.consultant-card {
  background: rgba(255,255,255,0.97);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 360px;
}
.cc-photo {
  width: 108px; height: 108px; border-radius: 50%;
  overflow: hidden; margin: 0 auto .95rem;
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--teal-soft), var(--shadow-md);
}
.cc-photo img { width: 100%; height: 100%; object-fit: cover; }
.cc-name { font-family: var(--sans); font-weight: 800; text-align: center; font-size: 1.1rem; color: var(--slate); }
.cc-role { text-align: center; font-size: .82rem; color: var(--ink-mute); margin-top: .15rem; }
.cc-points { list-style: none; margin: 1rem 0; display: grid; gap: .5rem; }
.cc-points li {
  position: relative; padding-left: 1.2rem; font-size: .84rem; color: var(--ink-soft);
}
.cc-points li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
}
.cc-btn { width: 100%; }

/* =============================================================
   7. Franja de cifras
   ============================================================= */
.stats { background: var(--slate); color: #fff; padding-block: clamp(2rem, 5vw, 2.75rem); }
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem .6rem;
}
.stat { text-align: center; }
.stat-num {
  display: block; font-family: var(--sans); font-weight: 800;
  font-size: clamp(1.9rem, 6vw, 2.6rem); color: var(--teal-soft); line-height: 1;
}
.stat-label { display: block; margin-top: .4rem; font-size: .82rem; color: var(--cream-mute); }

/* =============================================================
   8. Conóceme
   ============================================================= */
.conoceme { background: var(--paper); }
.conoceme-grid { display: grid; gap: clamp(2rem, 6vw, 3.5rem); align-items: center; }
.conoceme-photo {
  aspect-ratio: 1; max-width: 340px; margin-inline: auto;
  border-radius: 50%; overflow: hidden;
  box-shadow: 0 0 0 6px var(--bone), 0 0 0 8px var(--teal-soft), var(--shadow-lg);
}
.conoceme-photo img { width: 100%; height: 100%; object-fit: cover; }
.cred-badges {
  list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
  margin-top: 1.4rem;
}
.cred-badges li {
  font-family: var(--sans); font-weight: 600; font-size: .74rem;
  padding: .4rem .8rem; border-radius: 999px;
  background: var(--teal-soft); color: var(--slate-3);
}
.conoceme-copy h2 { font-size: clamp(1.6rem, 4.4vw, 2.4rem); margin: .4rem 0 1rem; }
.conoceme-copy p { color: var(--ink-soft); margin-bottom: 1rem; }
.pull {
  font-family: var(--sans); font-weight: 700; font-style: italic;
  font-size: clamp(1.05rem, 2.6vw, 1.3rem);
  color: var(--slate); line-height: 1.4;
  padding-left: 1.1rem; border-left: 3px solid var(--teal);
  margin: 1.4rem 0;
}
.conoceme-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }

/* =============================================================
   9. Secciones oscuras / claras
   ============================================================= */
.empresas { background: var(--slate); color: var(--cream); }
.empresas h2, .aliados h2 { color: #fff; }
.empresas .section-head h2 { font-size: clamp(1.7rem, 4.8vw, 2.8rem); }

.personas { background: var(--bone); }
.proceso { background: var(--paper); }
.aliados { background: var(--slate-2); color: var(--cream); }
.aseguradoras { background: var(--bone); }
.contacto { background: var(--paper); }

/* =============================================================
   10. Cards
   ============================================================= */
.cards { display: grid; gap: 1.1rem; }
.cards-3, .cards-4 { grid-template-columns: 1fr; }

.card {
  background: rgba(255,255,255,0.055);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft),
              border-color .4s var(--ease-out), background-color .4s var(--ease-out);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  background: rgba(255,255,255,0.09);
}
.card h3 { font-size: 1.08rem; color: #fff; margin-bottom: .3rem; }
.card p { font-size: .9rem; color: var(--cream-mute); }
.card-lead {
  font-family: var(--sans); font-weight: 700; font-size: .82rem;
  color: var(--teal-soft); margin-bottom: .5rem;
}
.card-icon {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(56,148,161,0.2);
  margin-bottom: 1rem;
}
.card-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--teal-soft); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* Cards claras (Personas) */
.card-light {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.card-light:hover { border-color: var(--teal); background: var(--paper); box-shadow: var(--shadow-md); }
.card-light h3 { color: var(--slate); }
.card-light p { color: var(--ink-soft); }
.card-light .card-lead { color: var(--teal-2); }
.card-light .card-icon { background: var(--teal-soft); }
.card-light .card-icon svg { stroke: var(--slate); }

/* =============================================================
   11. Proceso
   ============================================================= */
.steps { list-style: none; display: grid; gap: 1.1rem; counter-reset: s; }
.step {
  background: var(--bone); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem 1.4rem 1.5rem;
  position: relative;
}
.step-num {
  font-family: var(--sans); font-weight: 800; font-size: 1.1rem;
  color: var(--teal-2);
  display: inline-block; margin-bottom: .5rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.step p { font-size: .9rem; color: var(--ink-soft); }

/* =============================================================
   12. Aliados
   ============================================================= */
.aliados-grid { display: grid; gap: 2rem; align-items: center; }
.aliados-list { list-style: none; display: grid; gap: .8rem; }
.aliados-list li {
  padding: 1rem 1.15rem; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06); border: 1px solid var(--line-light);
  font-family: var(--sans); font-weight: 600; font-size: .92rem; color: var(--cream);
}

/* =============================================================
   13. Aseguradoras — marcos de logos
   ============================================================= */
.logos-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem;
  max-width: 1000px; margin-inline: auto;
}
.logo-frame {
  flex: 0 1 clamp(120px, 22vw, 178px);
  aspect-ratio: 5 / 3;
  display: grid; place-items: center; padding: .9rem 1rem;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-soft), box-shadow .35s var(--ease-soft), border-color .35s;
}
.logo-frame:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal-soft); }
.logo-frame img { max-height: 56px; max-width: 100%; width: auto; object-fit: contain; }
.logo-ph {
  font-family: var(--sans); font-weight: 700; font-size: .78rem;
  color: var(--ink-mute); text-align: center; line-height: 1.3;
}

/* =============================================================
   14. Contacto
   ============================================================= */
.contacto-card {
  max-width: 720px; margin-inline: auto; text-align: center;
  background: var(--bone); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.6rem, 5vw, 3rem);
}
.contacto-card h2 { font-size: clamp(1.6rem, 4.4vw, 2.4rem); margin: .4rem 0 .9rem; }
.contacto-intro { color: var(--ink-soft); max-width: 46ch; margin: 0 auto; }

.contacto-actions {
  display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center;
  margin: 1.8rem 0 1.5rem;
}
.contacto-actions .btn { min-width: 210px; }
.btn-ico { width: 20px; height: 20px; flex-shrink: 0; }

.contact-list {
  list-style: none; display: inline-flex; flex-direction: column;
  gap: .85rem; margin-top: .4rem; text-align: left;
}
.contact-list li { display: flex; align-items: center; gap: .8rem; font-size: .95rem; }
.contact-list a { color: var(--slate); font-weight: 600; font-family: var(--sans); }
.contact-list a:hover { color: var(--teal-2); }
.ci {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px;
  background: var(--teal-soft); flex-shrink: 0;
}
.ci svg { width: 18px; height: 18px; fill: none; stroke: var(--slate); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ci .wa-glyph { width: 19px; height: 19px; fill: var(--slate); stroke: none; }

/* =============================================================
   15. Footer
   ============================================================= */
.footer { background: var(--slate-3); color: var(--cream); padding-block: clamp(3rem, 7vw, 4.5rem) 1.5rem; }
.footer-grid { display: grid; gap: 2.2rem; }
.footer .brand-mark { margin-bottom: 1rem; }
.footer-name { font-family: var(--sans); font-weight: 800; color: #fff; }
.footer-tag { font-size: .9rem; color: var(--cream-mute); margin-top: .5rem; max-width: 34ch; }

.social { list-style: none; display: flex; gap: .6rem; margin-top: 1.2rem; }
.social a {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px;
  background: rgba(255,255,255,0.08); transition: background-color .3s, transform .3s;
}
.social a:hover { background: var(--teal); transform: translateY(-3px); }
.social svg { width: 19px; height: 19px; fill: currentColor; }

.footer-col { display: flex; flex-direction: column; gap: .55rem; }
.footer-col h4 { font-family: var(--sans); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: .3rem; }
.footer-col a, .footer-loc { font-size: .88rem; color: var(--cream-mute); }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-light);
  display: grid; gap: .6rem;
}
.footer-bottom p { font-size: .78rem; color: var(--cream-mute); }
.footer-legal a { color: var(--teal-soft); text-decoration: underline; }

/* =============================================================
   16. WhatsApp flotante
   ============================================================= */
.wa-float {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 90;
  display: flex; align-items: center; gap: .6rem;
  background: #25d366; color: #06331b;
  padding: .8rem; border-radius: 999px;
  box-shadow: 0 12px 30px -8px rgba(6,51,27,0.5);
  transition: transform .35s var(--ease-soft), box-shadow .35s;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(6,51,27,0.55); }
.wa-float svg { width: 26px; height: 26px; fill: currentColor; flex-shrink: 0; }
.wa-text {
  font-family: var(--sans); font-weight: 700; font-size: .85rem;
  max-width: 0; overflow: hidden; white-space: nowrap;
  transition: max-width .4s var(--ease-out), padding-right .4s var(--ease-out);
}
.wa-float:hover .wa-text, .wa-float:focus-visible .wa-text { max-width: 260px; padding-right: .5rem; }

/* =============================================================
   17. Reveal
   ============================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-soft), transform .7s var(--ease-soft); }
.reveal.is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-mesh { animation: none; }
}

/* =============================================================
   18. Responsive
   ============================================================= */
@media (min-width: 640px) {
  .cards-3, .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-actions .btn { min-width: 190px; }
}

@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .aliados-grid { grid-template-columns: 1.2fr 1fr; }
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .menu-movil { display: none; }

  .hero-grid { grid-template-columns: 1.15fr .85fr; align-items: center; }
  .consultant-card { margin-left: auto; }

  .conoceme-grid { grid-template-columns: .9fr 1.1fr; }

  .cards-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-4 { grid-template-columns: repeat(4, 1fr); }
}
