/* ===================================================
   Widy — Sistema de captación y reactivación con IA
   Web pública · estilos
   =================================================== */

:root {
  /* Marca */
  --verde-osc:   #06281a;   /* base oscura */
  --verde-osc2:  #0a3420;
  --verde-mid:   #0f3d29;
  --verde:       #16a34a;   /* verde principal */
  --verde-cta:   #22c55e;   /* CTA */
  --verde-claro: #86efac;
  --lima:        #cff57a;   /* acento marca */
  --lima-soft:   #e6fab4;

  /* Neutros */
  --tinta:  #11231a;
  --gris:   #51605a;
  --crema:  #f4f7f3;
  --linea:  #e2e9e3;
  --blanco: #ffffff;

  /* Sistema */
  --radio:   16px;
  --radio-s: 10px;
  --ancho:   1140px;
  --sombra:  0 24px 48px -28px rgba(6,40,26,.45);
  --ease:    cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--tinta);
  background: var(--blanco);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, .logo, .btn, .stat-num, .step-num, .plan-month {
  font-family: 'Sora', 'Inter', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.16;
}

a { color: inherit; }
img, svg { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--ancho);
  margin: 0 auto;
  padding: 0 24px;
}
.narrow { max-width: 760px; }
.center { text-align: center; }
em { font-style: normal; color: var(--verde); }

/* ---------- BOTONES ---------- */
.btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 14px 28px;
  cursor: pointer;
  transition: transform .15s var(--ease), background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--verde-cta); color: var(--verde-osc); }
.btn-primary:hover { background: var(--lima); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0) scale(.99); }
.btn-ghost { background: transparent; color: var(--blanco); border-color: rgba(207,245,122,.4); }
.btn-ghost:hover { border-color: var(--lima); color: var(--lima); }
.btn-outline { background: transparent; color: var(--verde); border-color: var(--linea); }
.btn-outline:hover { border-color: var(--verde-cta); background: var(--crema); }
.btn-block { width: 100%; padding: 16px; margin-top: 6px; }
.btn:focus-visible { outline: 3px solid var(--lima); outline-offset: 3px; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,40,26,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { flex-shrink: 0; display: block; height: 34px; width: auto; }
.logo-text { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 22px; color: var(--blanco); letter-spacing: -0.02em; }
.logo-dot { color: var(--lima); }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  color: #cfe3d6;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color .15s ease;
}
.nav a:hover { color: var(--blanco); }
.nav-cta {
  background: var(--verde-cta);
  color: var(--verde-osc) !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
}
.nav-cta:hover { background: var(--lima); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--blanco);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- HERO ---------- */
.hero {
  background:
    radial-gradient(820px 460px at 82% -8%, #15532f 0%, transparent 60%),
    radial-gradient(640px 420px at 0% 110%, #0c3a24 0%, transparent 55%),
    var(--verde-osc);
  color: var(--blanco);
  padding: 84px 0 96px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--lima);
  margin-bottom: 18px;
}
.eyebrow.center { text-align: center; }
.hero h1 { font-size: 52px; font-weight: 800; margin-bottom: 20px; }
.hero h1 em { color: var(--lima); }
.hero-sub { font-size: 19px; color: #cfe3d6; margin-bottom: 30px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.trust { font-size: 13.5px; color: #93b29e; margin-top: 18px; max-width: 540px; }

/* ---------- PANEL MOCKUP ---------- */
.hero-panel { display: flex; justify-content: center; }
.panel {
  width: 100%;
  max-width: 380px;
  background: linear-gradient(165deg, #0e442b, #082c1c);
  border: 1px solid #1d5d3c;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 40px 70px -24px rgba(0,0,0,.6);
}
.panel-head {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px;
  color: var(--blanco);
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.panel-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lima); box-shadow: 0 0 0 4px rgba(207,245,122,.18); }
.panel-live {
  margin-left: auto; font-family: 'Inter'; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; color: var(--verde-osc);
  background: var(--lima); padding: 3px 9px; border-radius: 999px;
}
.panel-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 18px; }
.stat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px; padding: 12px 10px; text-align: center;
}
.stat-num { display: block; font-weight: 800; font-size: 22px; color: var(--lima); }
.stat-unit { font-size: 12px; margin-left: 1px; }
.stat-label { font-size: 11px; color: #9cbcab; line-height: 1.3; display: block; margin-top: 3px; }
.panel-chart {
  display: flex; align-items: flex-end; gap: 7px; height: 78px;
  padding: 10px 4px; margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.panel-chart span {
  flex: 1; height: var(--h);
  background: linear-gradient(180deg, var(--lima), var(--verde-cta));
  border-radius: 5px 5px 2px 2px; opacity: .9;
}
.panel-feed { display: grid; gap: 10px; }
.feed-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: #cfe3d6;
  background: rgba(255,255,255,.03);
  border-radius: 10px; padding: 10px 12px;
}
.feed-row strong { color: var(--blanco); }
.feed-ico { color: var(--verde-cta); font-size: 9px; }

/* ---------- SECCIONES ---------- */
.section { padding: 90px 0; }
.section-alt { background: var(--crema); }
.section h2 { font-size: 38px; font-weight: 800; margin-bottom: 14px; }
.section h2.light { color: var(--blanco); }
.section-lead {
  font-size: 18.5px; color: var(--gris);
  max-width: 660px; margin: 0 auto;
}
.section-lead.light-mut { color: #b6cdbf; }
h2.center + .section-lead { margin-top: 8px; }

/* ---------- TARJETAS PROBLEMA ---------- */
.cards { display: grid; gap: 22px; margin-top: 46px; }
.leak { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--blanco);
  border: 1px solid var(--linea);
  border-radius: var(--radio);
  padding: 28px 24px;
  transition: transform .2s var(--ease), box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sombra); }
.card-ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--crema); color: var(--verde);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card-ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 19px; font-weight: 700; margin-bottom: 7px; }
.card p { color: var(--gris); font-size: 15px; }

/* ---------- PASOS ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 50px; }
.step {
  position: relative;
  background: var(--blanco);
  border: 1px solid var(--linea);
  border-radius: var(--radio);
  padding: 34px 28px;
  transition: transform .2s var(--ease), box-shadow .2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--sombra); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px;
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--verde-osc); color: var(--lima);
  margin-bottom: 18px;
}
.step h3 { font-size: 21px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--gris); font-size: 15.5px; }

/* ---------- PLATAFORMA (oscuro) ---------- */
.section-dark {
  background:
    radial-gradient(700px 400px at 90% 0%, #14532d 0%, transparent 55%),
    var(--verde-osc);
}
.modules { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 50px; }
.module {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radio);
  padding: 28px 24px;
  transition: transform .2s var(--ease), border-color .2s ease, background .2s ease;
}
.module:hover { transform: translateY(-4px); border-color: rgba(207,245,122,.5); background: rgba(255,255,255,.06); }
.mod-ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(207,245,122,.12); color: var(--lima);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.mod-ico svg { width: 24px; height: 24px; }
.module h3 { font-size: 18.5px; font-weight: 700; color: var(--blanco); margin-bottom: 7px; }
.module p { color: #b6cdbf; font-size: 14.5px; }

/* ---------- SECTORES ---------- */
.sectors {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  margin-top: 44px;
}
.sector {
  display: flex; align-items: center; gap: 10px;
  background: var(--blanco);
  border: 1px solid var(--linea);
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 15.5px; font-weight: 500;
  transition: transform .15s var(--ease), border-color .15s ease;
}
.sector:hover { transform: translateY(-2px); border-color: var(--verde-cta); }
.sector-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--verde-cta); }

/* ---------- PRECIOS ---------- */
.plans {
  display: grid; grid-template-columns: repeat(2, minmax(0, 380px));
  gap: 24px; justify-content: center; margin-top: 50px;
}
.plan {
  position: relative;
  background: var(--blanco);
  border: 1px solid var(--linea);
  border-radius: 20px;
  padding: 34px 30px;
  display: flex; flex-direction: column;
}
.plan-featured {
  border: 2px solid var(--verde-cta);
  box-shadow: var(--sombra);
}
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--verde-osc); color: var(--lima);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 6px 16px; border-radius: 999px;
}
.plan-tag { font-family: 'Sora'; font-weight: 700; font-size: 15px; color: var(--verde); text-transform: uppercase; letter-spacing: 1px; }
.plan-desc { color: var(--gris); font-size: 15px; margin: 6px 0 18px; }
.plan-includes { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--verde); margin-bottom: 14px; }
.plan-price { font-size: 15px; color: var(--tinta); }
.plan-setup { font-weight: 800; font-size: 26px; font-family: 'Sora'; }
.plan-month { font-size: 30px; font-weight: 800; color: var(--verde); margin: 2px 0 20px; }
.plan-month span { font-size: 15px; color: var(--gris); font-weight: 600; }
.plan-list { list-style: none; display: grid; gap: 12px; margin-bottom: 26px; flex: 1; }
.plan-list li { position: relative; padding-left: 30px; font-size: 15px; }
.plan-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--verde-cta); color: #fff;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.plans-note { text-align: center; color: var(--gris); font-size: 14.5px; margin-top: 28px; max-width: 680px; margin-left: auto; margin-right: auto; }

/* ---------- ADD-ONS ---------- */
.addons { margin-top: 70px; padding-top: 56px; border-top: 1px solid var(--linea); }
.addons-title { font-size: 27px; font-weight: 800; margin-bottom: 8px; }
.addon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; }
.addon {
  background: var(--blanco);
  border: 1px solid var(--linea);
  border-radius: var(--radio-s);
  padding: 20px 22px;
  transition: transform .18s var(--ease), border-color .18s ease, box-shadow .18s ease;
}
.addon:hover { transform: translateY(-3px); border-color: var(--verde-cta); box-shadow: var(--sombra); }
.addon h4 {
  font-family: 'Sora', sans-serif; font-size: 16.5px; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 6px;
  position: relative; padding-left: 30px;
}
.addon h4::before {
  content: "+"; position: absolute; left: 0; top: 1px;
  width: 21px; height: 21px; border-radius: 7px;
  background: var(--lima); color: var(--verde-osc);
  font-size: 15px; font-weight: 800; line-height: 21px; text-align: center;
}
.addon p { color: var(--gris); font-size: 14px; }

/* ---------- NO HACEMOS ---------- */
.nofocus .section-lead strong { color: var(--verde); }
.nochips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.nochip {
  font-size: 14px; font-weight: 600; color: var(--gris);
  background: var(--crema); border: 1px solid var(--linea);
  border-radius: 999px; padding: 9px 18px;
}

/* ---------- EQUIPO ---------- */
.team { display: flex; justify-content: center; gap: 24px; margin-top: 46px; flex-wrap: wrap; }
.member {
  background: var(--blanco); border: 1px solid var(--linea);
  border-radius: var(--radio); padding: 32px 44px; text-align: center; min-width: 230px;
}
.avatar {
  width: 74px; height: 74px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--verde-osc); color: var(--lima);
  font-family: 'Sora'; font-weight: 800; font-size: 25px;
  display: flex; align-items: center; justify-content: center;
}
.member h3 { font-size: 20px; font-weight: 700; }
.member p { color: var(--gris); font-size: 14.5px; }

/* ---------- POR QUÉ WIDY / PROMESA ---------- */
.promise { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; }
.pillar {
  background: var(--blanco); border: 1px solid var(--linea);
  border-radius: var(--radio); padding: 28px 22px;
  transition: transform .2s var(--ease), box-shadow .2s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--sombra); }
.pillar-ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--verde-osc); color: var(--lima);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.pillar-ico svg { width: 24px; height: 24px; }
.pillar h3 { font-size: 18px; font-weight: 700; margin-bottom: 7px; }
.pillar p { color: var(--gris); font-size: 14.5px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; margin-top: 40px; }
.faq-item {
  background: var(--blanco); border: 1px solid var(--linea);
  border-radius: var(--radio-s); padding: 0 22px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.faq-item[open] { border-color: var(--verde-cta); box-shadow: var(--sombra); }
.faq-item summary {
  list-style: none; cursor: pointer;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16.5px;
  padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 24px; font-weight: 400; color: var(--verde);
  line-height: 1; transition: transform .2s var(--ease); flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:focus-visible { outline: 3px solid var(--verde-cta); outline-offset: 4px; border-radius: 4px; }
.faq-item p { padding: 0 0 20px; margin-top: -2px; color: var(--gris); font-size: 15.5px; }

/* ---------- CTA / FORM ---------- */
.cta-section { background: var(--crema); }
.lead-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  max-width: 580px; margin: 40px auto 0; text-align: left;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--tinta); }
.field .opt { color: var(--gris); font-weight: 400; }
.field input {
  font-family: inherit; font-size: 16px;
  padding: 13px 16px;
  border: 1px solid var(--linea); border-radius: var(--radio-s);
  background: var(--blanco); color: var(--tinta); outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus { border-color: var(--verde-cta); box-shadow: 0 0 0 3px rgba(34,197,94,.18); }
.lead-form .btn-block { grid-column: 1 / -1; }
.form-msg { grid-column: 1 / -1; font-size: 14.5px; font-weight: 500; min-height: 1px; text-align: center; }
.form-msg.ok { color: var(--verde); }
.form-msg.error { color: #dc2626; }
.cta-section .trust { color: var(--gris); margin: 18px auto 0; }
.cta-section .trust a { color: var(--verde); font-weight: 600; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--verde-osc); color: #cfe3d6; padding: 58px 0 30px; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 28px; flex-wrap: wrap; padding-bottom: 30px;
  border-bottom: 1px solid #14402b;
}
.footer-brand .logo-text { font-size: 23px; }
.footer-brand p { margin-top: 10px; font-size: 14.5px; color: #8fae9b; max-width: 360px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; text-align: right; }
.footer-contact a { color: var(--lima); text-decoration: none; font-weight: 600; font-size: 15px; }
.footer-legal { padding-top: 24px; }
.footer-legal p { font-size: 12.5px; color: #7e9888; line-height: 1.7; }
.footer-legal .copyright { margin-top: 12px; color: #5f7a6b; }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .leak { grid-template-columns: repeat(2, 1fr); }
  .modules { grid-template-columns: repeat(2, 1fr); }
  .promise { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--verde-osc);
    padding: 8px 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transform: translateY(-130%); transition: transform .28s var(--ease);
    z-index: 90;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav-cta { text-align: center; margin-top: 12px; }
  .nav-toggle { display: flex; }
  .hero { padding: 56px 0 66px; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero h1 { font-size: 38px; }
  .hero-panel { order: -1; }
  .section { padding: 64px 0; }
  .section h2 { font-size: 30px; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .leak, .modules { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
  .promise { grid-template-columns: 1fr; }
  .lead-form { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .hero-actions .btn { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section h2 { font-size: 27px; }
  .panel-stats { gap: 7px; }
  .stat-num { font-size: 19px; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .step:hover, .module:hover, .sector:hover { transform: none; }
}

/* ===================================================
   PULIDO ESTÉTICO
   =================================================== */
::selection { background: var(--lima); color: var(--verde-osc); }

/* Patrón de puntos sutil en el hero */
.hero { position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(207,245,122,.08) 1px, transparent 1.4px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(circle at 72% 16%, #000 0%, transparent 66%);
  mask-image: radial-gradient(circle at 72% 16%, #000 0%, transparent 66%);
}
.hero-inner { position: relative; z-index: 1; }

/* Eyebrow del hero como badge */
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(207,245,122,.09);
  border: 1px solid rgba(207,245,122,.22);
  padding: 7px 15px; border-radius: 999px;
}
.hero .eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--lima); box-shadow: 0 0 0 3px rgba(207,245,122,.18);
}

/* Glow en el botón primario */
.btn-primary { box-shadow: 0 10px 26px -10px rgba(34,197,94,.55); }
.btn-primary:hover { box-shadow: 0 14px 32px -10px rgba(207,245,122,.6); }

/* Panel: glow + flotación + barras + punto que late */
.hero-panel { position: relative; }
.panel { position: relative; animation: floaty 6s ease-in-out infinite; }
.panel::before {
  content: ""; position: absolute; inset: -2px; z-index: -1; border-radius: 24px;
  background: radial-gradient(60% 50% at 50% 0%, rgba(207,245,122,.28), transparent 70%);
  filter: blur(22px);
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.panel-dot { animation: dotpulse 2.2s ease-in-out infinite; }
@keyframes dotpulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(207,245,122,.5); }
  70% { box-shadow: 0 0 0 9px rgba(207,245,122,0); }
}
.panel-chart span { transform-origin: bottom; animation: growbar .8s var(--ease) both; }
.panel-chart span:nth-child(1){ animation-delay:.04s }
.panel-chart span:nth-child(2){ animation-delay:.10s }
.panel-chart span:nth-child(3){ animation-delay:.16s }
.panel-chart span:nth-child(4){ animation-delay:.22s }
.panel-chart span:nth-child(5){ animation-delay:.28s }
.panel-chart span:nth-child(6){ animation-delay:.34s }
.panel-chart span:nth-child(7){ animation-delay:.40s }
.panel-chart span:nth-child(8){ animation-delay:.46s }
@keyframes growbar { from { transform: scaleY(0); } to { transform: scaleY(1); } }

/* Acento lima al pasar por tarjetas y módulos */
.card, .module { position: relative; overflow: hidden; }
.card::after, .module::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--lima), var(--verde-cta));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.card:hover::after, .module:hover::after { transform: scaleX(1); }

/* Botón flotante de WhatsApp */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 32px -8px rgba(0,0,0,.45);
  transition: transform .16s var(--ease), box-shadow .16s ease;
  animation: fabin .4s var(--ease) .6s both;
}
.fab:hover { transform: scale(1.08); box-shadow: 0 18px 38px -8px rgba(37,211,102,.6); }
.fab svg { width: 30px; height: 30px; }
@keyframes fabin { from { transform: scale(0); } to { transform: scale(1); } }
@media (max-width: 620px) {
  .fab { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .fab svg { width: 27px; height: 27px; }
}
