/* ═══════════════════════════════════════════════════
   MANUEL SEBE — style.css  (rev 2)
   Paleta: negro profundo · azul eléctrico · blanco frío
   Tipografía: Bricolage Grotesque (títulos) + Inter (body)
═══════════════════════════════════════════════════ */

:root {
  --bg:       #07080D;
  --bg2:      #0C0D14;
  --bg3:      #11121A;
  --accent:   #2B6AFE;      /* azul eléctrico */
  --accent2:  #7EB3FF;      /* azul claro */
  --text:     #EEF0F8;      /* blanco frío */
  --muted:    #5A5D70;
  --border:   rgba(238,240,248,.07);
  --whatsapp: #25D366;
  --whatsapp2:#1fba58;
  --ig:       #E1306C;
  --ok:       #34d399;
  --err:      #f87171;
  --radius:   12px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;   /* Bebas solo tiene un peso */
  line-height: 1.05;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── Gradient animado en títulos ── */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.section-title, .hero-title, .cta-title {
  background: linear-gradient(135deg, #fff 0%, var(--accent2) 55%, var(--accent) 100%);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 10s ease-in-out infinite;
}

/* ── Fade-in on scroll ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .35s, backdrop-filter .35s, box-shadow .35s;
}
.navbar.scrolled {
  background: rgba(7,8,13,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .08em;
  color: var(--text);
  flex-shrink: 0;
}
.nav-social {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-left: auto;
  margin-right: 1rem;
}
.nav-social a {
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: color .2s;
}
.nav-social a:hover { color: var(--text); }
.nav-social a.ig:hover { color: var(--ig); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: .45rem;
  background: var(--whatsapp);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  padding: .5rem 1.1rem;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--whatsapp2); transform: translateY(-1px); }

/* ════════════════════════════════
   HERO — layout split
════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* columna izquierda: contenido */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 3rem 4rem max(2rem, calc((100vw - 1200px) / 2 + 2rem));
  background: linear-gradient(
    to right,
    var(--bg) 60%,
    transparent 100%
  );
}
.hero-eyebrow {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 1.2rem;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
}
.hero-subtitle {
  font-size: clamp(.9rem, 1.8vw, 1.08rem);
  color: rgba(238,240,248,.65);
  font-weight: 300;
  margin-bottom: 1.8rem;
  letter-spacing: .01em;
  line-height: 1.7;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.2rem;
}
.pill {
  font-size: .75rem;
  font-weight: 500;
  padding: .36rem .82rem;
  border: 1px solid rgba(43,106,254,.35);
  border-radius: 50px;
  color: var(--accent2);
  background: rgba(43,106,254,.08);
  white-space: nowrap;
}
.hero-ctas {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--whatsapp);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(37,211,102,.22);
}
.hero-cta-wa:hover {
  background: var(--whatsapp2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.32);
}
.hero-cta-ig {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: rgba(238,240,248,.7);
  font-size: .88rem;
  font-weight: 500;
  padding: .85rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: color .2s, border-color .2s;
}
.hero-cta-ig:hover { color: var(--ig); border-color: rgba(225,48,108,.4); }

/* columna derecha: foto */
.hero-photo {
  position: relative;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
/* gradiente lateral para fusionar con el contenido */
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg) 0%,
    transparent 25%,
    transparent 80%,
    rgba(7,8,13,.6) 100%
  );
  pointer-events: none;
}
/* gradiente inferior */
.hero-photo::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg), transparent);
  z-index: 1;
  pointer-events: none;
}

/* ════════════════════════════════
   SECCIONES COMUNES
════════════════════════════════ */
.section { padding: 6rem 0; }
.section-dark  { background: var(--bg2); }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.section-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .8rem;
}
.section-label.light { color: var(--accent2); }
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 1.2rem;
}
.section-intro {
  font-size: 1.02rem;
  color: rgba(238,240,248,.6);
  max-width: 640px;
  margin-bottom: 3rem;
  font-weight: 300;
}

/* ════════════════════════════════
   PARA QUIÉN
════════════════════════════════ */
.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
  margin-bottom: 2rem;
}
.for-whom-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: border-color .25s;
}
.for-whom-item:hover { border-color: rgba(43,106,254,.3); }
.for-whom-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(43,106,254,.12);
  color: var(--accent2);
  font-size: .9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.for-whom-item p {
  font-size: .93rem;
  color: rgba(238,240,248,.75);
  line-height: 1.58;
}
.for-whom-note {
  font-size: .85rem;
  color: var(--muted);
  font-style: italic;
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
  max-width: 480px;
}

/* ════════════════════════════════
   SPLIT (Quién es Manuel)
════════════════════════════════ */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  padding: 0;
}
.split-img {
  position: relative;
  overflow: hidden;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s ease;
}
.split-img:hover img { transform: scale(1.03); }
.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 4rem;
  background: var(--bg2);
}
.split-body {
  font-size: .97rem;
  color: rgba(238,240,248,.68);
  line-height: 1.78;
  margin-bottom: 1rem;
  font-weight: 300;
}
.credential-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.credential {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.2rem;
}
.credential-n {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent2);
  line-height: 1;
  margin-bottom: .3rem;
}
.credential-label {
  font-size: .76rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ════════════════════════════════
   FILOSOFÍA
════════════════════════════════ */
.philosophy-quote {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(238,240,248,.8);
  border-left: 3px solid var(--accent);
  padding: 1.2rem 0 1.2rem 2rem;
  margin-bottom: 3rem;
  max-width: 760px;
  line-height: 1.65;
}
.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}
.pillar {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: border-color .25s, transform .25s;
}
.pillar:hover { border-color: rgba(43,106,254,.35); transform: translateY(-3px); }
.pillar-icon { font-size: 1.4rem; color: var(--accent); margin-bottom: .8rem; }
.pillar h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: .5rem; }
.pillar p { font-size: .87rem; color: rgba(238,240,248,.58); line-height: 1.62; }

/* ════════════════════════════════
   PARALLAX
════════════════════════════════ */
.parallax-section {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-bg {
  position: absolute;
  inset: -80px 0;
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,8,13,.72);
}
.parallax-text {
  position: relative;
  z-index: 2;
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.2rem, 2.6vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(238,240,248,.9);
  text-align: center;
  max-width: 700px;
  padding: 0 2rem;
  line-height: 1.55;
}
.parallax-text strong { color: var(--accent2); font-weight: 500; font-style: normal; }

/* ════════════════════════════════
   SERVICIOS
════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  align-items: stretch;   /* todas las cards al mismo alto */
}
.service-card {
  display: flex;
  flex-direction: column;
}
.service-card {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: rgba(43,106,254,.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.service-card--featured {
  border-color: rgba(43,106,254,.45);
  background: linear-gradient(140deg, var(--bg2) 0%, rgba(43,106,254,.06) 100%);
  box-shadow: 0 0 0 1px rgba(43,106,254,.2), 0 8px 32px rgba(43,106,254,.1);
}
.service-card--featured:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 16px 48px rgba(43,106,254,.18);
}
.service-badge {
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--accent);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 0 0 8px 8px;
}
.service-icon { color: var(--accent); margin-bottom: 1rem; opacity: .9; }
.service-name { font-size: 1.18rem; font-weight: 700; margin-bottom: .6rem; }
.service-desc {
  font-size: .88rem;
  color: rgba(238,240,248,.62);
  line-height: 1.62;
  margin-bottom: 1.2rem;
}
.service-list { margin-bottom: 1.6rem; flex: 1; }
.service-list li {
  font-size: .87rem;
  color: rgba(238,240,248,.7);
  padding: .35rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.service-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.service-cta {
  display: block;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  padding: .75rem 1.5rem;
  border-radius: 10px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.service-cta.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(43,106,254,.22);
}
.service-cta.primary:hover {
  background: #4B7FFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(43,106,254,.32);
}
.service-cta.secondary {
  border: 1px solid var(--border);
  color: var(--text);
}
.service-cta.secondary:hover { border-color: rgba(43,106,254,.4); color: var(--accent2); }

/* ════════════════════════════════
   CÓMO FUNCIONA — TIMELINE
════════════════════════════════ */
.timeline {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 2.4rem;   /* espacio para la línea + dot */
}

/* línea vertical continua */
.timeline::before {
  content: '';
  position: absolute;
  left: 6px;              /* centrada en el dot (14px de ancho, margen 7px) */
  top: 9px;               /* centro del primer dot (top:2px + 7px radio) */
  bottom: 9px;            /* centro del último dot */
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--accent) 0%,
    rgba(43,106,254,.3) 80%,
    rgba(43,106,254,.08) 100%
  );
}

.tl-item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 2.4rem;
}
.tl-item:last-child { padding-bottom: 0; }

/* ocultar las líneas individuales del HTML (se reemplazan por el ::before del wrapper) */
.tl-left { display: none; }

/* dot posicionado absolutamente sobre la línea continua */
.tl-item::before {
  content: '';
  position: absolute;
  left: -2.4rem;           /* vuelve al margen del wrapper */
  top: 5px;                /* centro del badge tl-num (~24px alto) = 12px − radio dot 7px = 5px */
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg2);
  box-shadow: 0 0 0 3px rgba(43,106,254,.25);
  transition: box-shadow .25s, transform .25s;
  z-index: 1;
}
.tl-item:last-child::before {
  background: var(--accent2);
  box-shadow: 0 0 0 3px rgba(43,106,254,.15);
}
.tl-item:hover::before {
  box-shadow: 0 0 0 5px rgba(43,106,254,.4);
  transform: scale(1.2);
}

.tl-content { width: 100%; }

.tl-num {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: .72rem;
  letter-spacing: .16em;
  color: var(--accent);
  background: rgba(43,106,254,.1);
  border: 1px solid rgba(43,106,254,.2);
  border-radius: 4px;
  padding: .12rem .55rem;
  margin-bottom: .5rem;
}
.tl-content h3 {
  font-size: 1.15rem;
  margin-bottom: .4rem;
  letter-spacing: .04em;
}
.tl-content p {
  font-size: .88rem;
  color: rgba(238,240,248,.6);
  line-height: 1.65;
}

/* ════════════════════════════════
   HERRAMIENTAS
════════════════════════════════ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}
.tool-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: border-color .25s, transform .25s;
}
.tool-item:hover { border-color: rgba(43,106,254,.3); transform: translateY(-3px); }
.tool-icon {
  color: var(--accent);
  margin: 0 auto 1rem;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43,106,254,.08);
  border-radius: 12px;
}
.tool-item h3 { font-size: .98rem; font-weight: 700; margin-bottom: .5rem; }
.tool-item p { font-size: .84rem; color: rgba(238,240,248,.58); line-height: 1.56; }

/* ════════════════════════════════
   PRESENCIAL
════════════════════════════════ */
.section-presencial { text-align: center; }
.presencial-text {
  font-size: 1rem;
  color: rgba(238,240,248,.62);
  line-height: 1.72;
  margin-bottom: 2rem;
}
.btn-outline {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  padding: .75rem 1.8rem;
  border: 1px solid rgba(43,106,254,.35);
  border-radius: 10px;
  color: var(--accent2);
  transition: border-color .2s, background .2s, transform .2s;
}
.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(43,106,254,.07);
  transform: translateY(-2px);
}

/* ════════════════════════════════
   CTA FINAL
════════════════════════════════ */
.section-cta {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  filter: saturate(.6);
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7,8,13,.85) 0%, rgba(7,8,13,.72) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 640px;
}
.cta-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.cta-sub {
  font-size: 1rem;
  color: rgba(238,240,248,.6);
  margin-bottom: 2.4rem;
  font-weight: 300;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--whatsapp);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: .95rem 2.2rem;
  border-radius: var(--radius);
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 6px 28px rgba(37,211,102,.22);
}
.cta-btn-wa:hover {
  background: var(--whatsapp2);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,.32);
}
.cta-btn-ig {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: rgba(238,240,248,.75);
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  padding: .95rem 2rem;
  border: 1px solid rgba(238,240,248,.15);
  border-radius: var(--radius);
  transition: color .2s, border-color .2s, background .2s;
}
.cta-btn-ig:hover {
  color: #fff;
  border-color: rgba(225,48,108,.5);
  background: rgba(225,48,108,.1);
}

/* ════════════════════════════════
   FLOATING WA WIDGET
════════════════════════════════ */
.wa-widget {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .7rem;
}

/* Card expandida */
.wa-card {
  background: #1C1F2E;
  border: 1px solid rgba(37,211,102,.25);
  border-radius: 16px;
  width: 300px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.55);
  transform: scale(.92) translateY(12px);
  opacity: 0;
  pointer-events: none;
  transform-origin: bottom right;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), opacity .2s;
}
.wa-card.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.wa-card-header {
  background: var(--whatsapp);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.wa-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  overflow: hidden;
  flex-shrink: 0;
}
.wa-avatar img { width: 100%; height: 100%; object-fit: cover; }
.wa-card-name { font-family: 'Bebas Neue', sans-serif; font-weight: 700; font-size: .95rem; color: #fff; }
.wa-card-status { font-size: .73rem; color: rgba(255,255,255,.75); margin-top: 1px; display: flex; align-items: center; gap: .3rem; }
.wa-card-status::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #7fffb3; display: block; }
.wa-card-body { padding: 1.2rem; }
.wa-bubble {
  background: #2A2E40;
  border-radius: 12px 12px 12px 2px;
  padding: .75rem 1rem;
  font-size: .85rem;
  color: rgba(238,240,248,.88);
  line-height: 1.55;
  margin-bottom: .75rem;
}
.wa-time { font-size: .68rem; color: var(--muted); text-align: right; margin-top: .3rem; }
.wa-options { display: flex; flex-direction: column; gap: .5rem; margin-bottom: .8rem; }
.wa-option {
  background: rgba(37,211,102,.08);
  border: 1px solid rgba(37,211,102,.25);
  border-radius: 10px;
  padding: .6rem .9rem;
  font-size: .82rem;
  color: var(--whatsapp);
  font-weight: 500;
  cursor: pointer;
  transition: background .2s;
  text-align: left;
}
.wa-option:hover { background: rgba(37,211,102,.14); }
.wa-send {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  background: var(--whatsapp);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  padding: .7rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.wa-send:hover { background: var(--whatsapp2); }

/* Botón flotante */
.wa-fab {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.35);
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,.45); }
.wa-fab svg { transition: transform .25s; }
.wa-fab.open svg.icon-wa { display: none; }
.wa-fab.open svg.icon-close { display: block !important; }

/* Badge de notificación */
.wa-badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.15); }
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer {
  background: #040406;
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-name {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .12em;
  color: var(--text);
  margin-bottom: .3rem;
}
.footer-tagline {
  font-size: .76rem;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.footer-links { display: flex; justify-content: center; gap: 1.2rem; margin-bottom: 1.4rem; }
.footer-links a { color: var(--muted); display: flex; align-items: center; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-links a.ig:hover { color: var(--ig); }
.footer-links a.wa:hover { color: var(--whatsapp); }
.footer-copy { font-size: .77rem; color: var(--muted); }
.footer-copy a { color: var(--accent2); }
.footer-copy a:hover { opacity: .75; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: 100svh; position: relative; }
  .hero-content {
    padding: 7rem 2rem 3rem;
    background: transparent;
    position: relative;
    z-index: 2;
  }
  .hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
  .hero-photo::after {
    background: linear-gradient(to bottom, rgba(7,8,13,.72) 0%, rgba(7,8,13,.45) 40%, rgba(7,8,13,.82) 100%);
  }
  .section-split { grid-template-columns: 1fr; }
  .split-img { height: 380px; }
  .split-content { padding: 3rem 2rem; }
  .credential-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero-content { padding: 6rem 1.5rem 3rem; }
  .hero-pills { gap: .4rem; }
  .pill { font-size: .7rem; }
  .hero-ctas { flex-direction: column; }
  .hero-cta-wa, .hero-cta-ig { width: 100%; justify-content: center; }
  .section { padding: 4rem 0; }
  .split-img { height: 280px; }
  .split-content { padding: 2.5rem 1.5rem; }
  .credential-grid { gap: .7rem; }
  .services-grid { grid-template-columns: 1fr; }
  .step { gap: 1rem; }
  .step-num { width: 44px; font-size: 1.6rem; }
  .tools-grid { grid-template-columns: 1fr 1fr; }
  .philosophy-pillars { grid-template-columns: 1fr; }
  .for-whom-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
  .cta-btn-wa, .cta-btn-ig { width: 100%; justify-content: center; }
  .wa-card { width: 270px; }
  .wa-widget { bottom: 1.2rem; right: 1.2rem; }
  .nav-social { display: none; }
}
