/* Pulso Empresas — Landing (Opción A: Ejecutivo)
   Merged from the design source's landing-base.css + landing-a.css,
   adapted from a fixed 1440px design-canvas frame into a fluid, responsive page. */

:root {
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --violet: #5B4FE8;
  --violet-bright: #7C72F2;
  --violet-soft: #A9A2FF;
  --green: #1FAE5A;
  --green-bright: #34D27B;
  --navy: #0F1B3C;
  --ink: #101935;
  --paper: #F4F5FA;
  --text-2: #5C6184;
  --line-soft: #E7E8F4;
  --line-strong: rgba(255,255,255,.35);
  --bg: #fff;
  --nav-h: 94px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-snap-type: y proximity; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
.disp { font-family: var(--font-display); letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--violet); }
img { display: block; max-width: 100%; }
.wrap { max-width: 1220px; margin: 0 auto; padding: 0 60px; }
section { position: relative; }

/* Each section behaves like a full-screen presentation slide. */
.hero, .section-pad {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero {
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100svh - var(--nav-h));
}
.section-pad {
  scroll-snap-align: start;
  min-height: 100vh;
  min-height: 100svh;
}

/* ---------- Nav ---------- */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 60px; position: sticky; top: 0; z-index: 50;
  color: #fff; background: var(--navy);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; background: var(--violet); }
.brand .mark svg { width: 24px; height: 24px; }
.brand .name { font-family: var(--font-display); font-weight: 700; font-size: 21px; }
.nav-links { display: flex; align-items: center; gap: 38px; font-size: 15.5px; font-weight: 600; }
.nav-links a { color: #C7CCEC; }
.nav-cta { font-family: var(--font-display); font-weight: 700; font-size: 15px; padding: 12px 22px; border-radius: 10px; white-space: nowrap; background: #fff; color: var(--navy); }

/* ---------- Buttons ---------- */
.btn { font-family: var(--font-display); font-weight: 700; display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 28px; border-radius: 13px; font-size: 17px; cursor: pointer; border: none; white-space: nowrap; }
.btn-lg { padding: 19px 32px; font-size: 18px; }
.btn-ghost { background: transparent; border: 1.5px solid var(--line-strong); color: inherit; }
.btn-primary { background: var(--violet); color: #fff; }
.btn-primary:hover { background: var(--violet-bright); color: #fff; }

/* ---------- Eyebrow / section headers ---------- */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600;
  font-size: 13.5px; letter-spacing: 0.06em; text-transform: uppercase; padding: 8px 16px; border-radius: 999px; margin-bottom: 22px; }
.eyebrow.on-dark { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); color: #C7CCEC; }
.eyebrow.on-light { background: #fff; border: 1px solid var(--line-soft); color: var(--violet); }
.sec-title { font-size: 44px; font-weight: 700; line-height: 1.12; }
.sec-sub { font-size: 19px; font-weight: 500; line-height: 1.55; margin-top: 16px; max-width: 620px; color: var(--text-2); }
.sec-head { margin-bottom: 52px; }
.sec-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.sec-head.center .sec-sub { margin-left: auto; margin-right: auto; }
.section-pad { padding: 110px 0; }
.section-pad.alt { background: var(--paper); }

/* ---------- Hero ---------- */
.hero {
  padding: 30px 60px 100px;
  background: radial-gradient(125% 95% at 82% -5%, #1d3066 0%, #12224b 48%, #0C1530 100%);
  color: #fff;
}
.hero-glow { position: absolute; width: 900px; height: 900px; border-radius: 50%; background: radial-gradient(circle, rgba(91,79,232,.38), transparent 62%); top: -320px; right: -220px; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero h1 { font-size: 58px; font-weight: 700; line-height: 1.06; margin-top: 22px; margin-bottom: 0; }
.hero .sub { font-size: 20px; font-weight: 500; line-height: 1.55; margin-top: 22px; max-width: 480px; color: #A8AFD6; }
.hero-ctas { display: flex; align-items: center; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 26px; font-size: 14px; font-weight: 600; color: #A8AFD6; }

/* device frames */
.browser { border-radius: 16px; overflow: hidden; background: #fff; box-shadow: 0 50px 90px -30px rgba(7,10,40,.5), 0 8px 20px rgba(7,10,40,.18); }
.browser .bar, .screens-hero .bar { height: 38px; display: flex; align-items: center; gap: 8px; padding: 0 16px; background: #E7E8F2; }
.browser .dot, .screens-hero .dot { width: 10px; height: 10px; border-radius: 50%; }
.browser .url, .screens-hero .url { margin-left: 10px; height: 20px; flex: 1; max-width: 260px; background: #fff; border-radius: 6px; display: flex; align-items: center; padding: 0 10px; font-size: 10.5px; color: #9094ad; font-family: var(--font-body); }
.browser .shot img, .screens-hero .shot img { width: 100%; display: block; }

.phone { border-radius: 38px; background: #0B1230; padding: 10px; box-shadow: 0 40px 80px -28px rgba(7,10,40,.55), 0 8px 20px rgba(7,10,40,.22); }
.phone .screen { border-radius: 29px; overflow: hidden; background: #fff; position: relative; }
.phone .screen img { width: 100%; display: block; }
.phone .notch { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 74px; height: 6px; border-radius: 99px; background: rgba(12,16,48,.3); z-index: 2; }

.hero-visual { position: relative; }
.hero-stage { position: relative; }
.hero-stage .browser { width: 100%; }
.hero-stage .phone { position: absolute; width: 168px; }
.callout { position: absolute; z-index: 5; background: #fff; color: var(--ink); border-radius: 15px; padding: 13px 17px; box-shadow: 0 22px 48px -16px rgba(7,10,40,.5); display: flex; align-items: center; gap: 12px; }
.callout .ic { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; background: rgba(91,79,232,.14); }
.callout .big { font-family: var(--font-display); font-weight: 700; font-size: 24px; line-height: 1; color: var(--violet); }
.callout .lbl { font-size: 12.5px; font-weight: 600; color: #6b6f8c; line-height: 1.2; }

/* ---------- Feature cards ---------- */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card { border-radius: 18px; padding: 32px 30px; background: #fff; border: 1px solid var(--line-soft); box-shadow: 0 20px 44px -30px rgba(7,10,40,.25); }
.feature-card .ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 22px; }
.feature-card:nth-child(1) .ico { background: rgba(91,79,232,.12); color: var(--violet); }
.feature-card:nth-child(2) .ico { background: rgba(15,27,60,.08); color: var(--navy); }
.feature-card:nth-child(3) .ico { background: rgba(31,174,90,.13); color: var(--green); }
.feature-card:nth-child(4) .ico { background: rgba(178,59,78,.12); color: #B23B4E; }
.feature-card h3 { font-family: var(--font-display); font-size: 21px; font-weight: 700; margin: 0; }
.feature-card p { font-size: 15.5px; font-weight: 500; line-height: 1.55; margin-top: 10px; color: var(--text-2); }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.team-card { border-radius: 18px; padding: 30px 28px; background: #fff; border: 1px solid var(--line-soft); box-shadow: 0 20px 44px -30px rgba(7,10,40,.25); display: flex; flex-direction: column; }
.team-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.team-card-head .ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; background: rgba(91,79,232,.12); color: var(--violet); }
.team-card-head h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin: 0; }
.team-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.team-list li { display: flex; align-items: center; gap: 13px; padding: 12px 0; border-top: 1px solid var(--line-soft); }
.team-list li:first-child { border-top: none; padding-top: 0; }
.team-list li:last-child { padding-bottom: 0; }
.avatar { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 12.5px; }
.who { flex: 1; min-width: 0; }
.who-name { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.who-meta { font-size: 13px; font-weight: 500; color: var(--text-2); margin-top: 1px; }
.team-list .amt { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); flex-shrink: 0; }
.badge { font-family: var(--font-display); font-weight: 700; font-size: 12px; padding: 5px 11px; border-radius: 999px; flex-shrink: 0; white-space: nowrap; }
.badge.ok { background: rgba(31,174,90,.13); color: var(--green); }
.badge.warn { background: #FFF3CD; color: #9A6B00; }
.badge.muted { background: var(--paper); color: var(--text-2); }
.team-total { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-soft); font-size: 13.5px; font-weight: 600; color: var(--text-2); }
.team-total b { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--ink); }

/* ---------- Screens gallery ---------- */
.screens-hero { border-radius: 20px; overflow: hidden; border: 1px solid var(--line-soft); }
.screens-hero .bar { height: 42px; }

/* ---------- Problem vs solution ---------- */
.vs-grid { display: grid; grid-template-columns: 1fr 74px 1fr; align-items: stretch; margin-top: 44px; }
.vs-col { display: flex; flex-direction: column; }
.vs-lab { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 16px; display: flex; align-items: center; gap: 9px; }
.vs-lab.a { color: #B23B4E; }
.vs-lab.b { color: var(--green); }
.vs-frame { flex: 1; border-radius: 18px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; padding: 20px; }
.vs-frame.a { background: var(--paper); border: 1px solid var(--line-soft); }
.vs-frame.b { background: var(--navy); }
.vs-mid { display: flex; align-items: center; justify-content: center; }
.vs-badge { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 15px; background: var(--navy); color: #fff; }
.pain-list { display: flex; flex-direction: column; gap: 14px; margin-top: 40px; }
.pain-item { display: flex; align-items: center; gap: 16px; border-radius: 14px; padding: 18px 22px; background: var(--paper); border: 1px solid var(--line-soft); }
.pain-item .x { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0; font-weight: 700; background: #FBE3E5; color: #C0303F; }
.pain-item p { font-size: 17px; font-weight: 500; line-height: 1.35; margin: 0; }

/* excel mock */
.xls { width: 100%; font-family: var(--font-body); background: #fff; border: 1px solid #cfd3da; border-radius: 8px; overflow: hidden; box-shadow: 0 14px 30px -16px rgba(7,10,40,.35); }
.xls .ribbon { height: 20px; background: #1d7a44; display: flex; align-items: center; padding: 0 8px; gap: 6px; }
.xls .ribbon i { width: 7px; height: 7px; border-radius: 2px; background: rgba(255,255,255,.55); display: block; }
.xls .fbar { height: 17px; background: #f1f1f1; border-bottom: 1px solid #d4d4d4; display: flex; align-items: center; padding: 0 7px; font-size: 9px; color: #555; }
.xls .fbar b { color: #1d7a44; margin-right: 6px; font-family: var(--font-display); }
.xls table { border-collapse: collapse; width: 100%; font-size: 9.5px; color: #333; }
.xls th, .xls td { border: 1px solid #d8dadf; padding: 3px 5px; text-align: right; white-space: nowrap; height: 15px; }
.xls th { background: #eef0f2; color: #888; font-weight: 600; text-align: center; width: 14px; }
.xls .rh { background: #eef0f2; color: #888; text-align: center; width: 14px; }
.xls td.l { text-align: left; }
.xls td.err { background: #fde0e2; color: #b3261e; font-weight: 700; text-align: center; }
.xls td.warn { background: #fff3cd; color: #9a6b00; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan-card { border-radius: 20px; padding: 36px 32px; display: flex; flex-direction: column; position: relative; background: #fff; border: 1px solid var(--line-soft); }
.plan-card.popular { border: 2px solid var(--violet); box-shadow: 0 30px 60px -30px rgba(91,79,232,.35); }
.plan-card .tag { position: absolute; top: -14px; left: 32px; font-family: var(--font-display); font-weight: 700; font-size: 12.5px;
  padding: 7px 14px; border-radius: 999px; letter-spacing: 0.02em; background: var(--violet); color: #fff; }
.plan-card .pname { font-family: var(--font-display); font-weight: 700; font-size: 21px; }
.plan-card .pdesc { font-size: 14.5px; font-weight: 500; margin-top: 6px; color: var(--text-2); }
.plan-card .price { display: flex; align-items: baseline; gap: 8px; margin-top: 24px; }
.plan-card .price .amt { font-family: var(--font-display); font-weight: 700; font-size: 40px; }
.plan-card .price .per { font-size: 15px; font-weight: 600; color: var(--text-2); }
.plan-list { display: flex; flex-direction: column; gap: 13px; margin: 28px 0 32px; flex: 1; padding: 0; }
.plan-list li { list-style: none; display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; font-weight: 500; }
.plan-list li .ck { width: 19px; height: 19px; border-radius: 6px; display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; background: rgba(31,174,90,.13); color: var(--green); }
.price-note { text-align: center; font-size: 14px; font-weight: 500; margin-top: 30px; color: var(--text-2); }

/* ---------- Final CTA ---------- */
.cta-band { border-radius: 28px; padding: 64px 70px; display: flex; align-items: center; justify-content: space-between; gap: 40px;
  background: linear-gradient(120deg, #1d3066 0%, #12224b 55%, #0C1530 100%); color: #fff; }
.cta-band h2 { font-family: var(--font-display); font-weight: 700; font-size: 36px; line-height: 1.15; max-width: 480px; margin: 0; }
.cta-band .sub { font-size: 16.5px; font-weight: 500; margin-top: 14px; max-width: 460px; line-height: 1.5; color: #A8AFD6; }
.cta-band-btns { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }
.cta-band .btn-primary { background: #fff; color: var(--violet); }
.cta-band .btn-ghost { border-color: rgba(255,255,255,.35); color: #fff; }

/* ---------- Contact / Footer ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.contact-card { border-radius: 16px; padding: 26px 26px; display: flex; align-items: center; gap: 16px; background: var(--paper); border: 1px solid var(--line-soft); }
.contact-card .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; background: #fff; color: var(--violet); }
.contact-card .lab { font-size: 13px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; color: var(--text-2); }
.contact-card .val { font-family: var(--font-display); font-weight: 700; font-size: 17px; margin-top: 3px; }
.footer { display: flex; align-items: center; justify-content: space-between; padding: 34px 60px; font-size: 14px; font-weight: 500; background: var(--navy); color: #C7CCEC; }
.footer .brand .mark { background: var(--violet); }
.footer .brand .name { font-size: 16px; color: #fff; }

/* ================================================================
   Responsive
   ================================================================ */
@media (max-width: 1080px) {
  :root { --nav-h: 86px; }
  .wrap { padding: 0 40px; }
  .nav { padding: 22px 40px; }
  .hero { padding: 24px 40px 90px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 60px; }
  .hero h1 { font-size: 46px; }
  .sec-title { font-size: 34px; }
  .features-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .vs-grid { grid-template-columns: 1fr; gap: 24px; }
  .vs-mid { display: none; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 44px 36px; }
}

@media (max-width: 720px) {
  :root { --nav-h: 78px; }
  .nav { padding: 18px 20px; }
  .nav-links { display: none; }
  .wrap { padding: 0 20px; }
  .hero { padding: 20px 20px 70px; }
  .hero h1 { font-size: 36px; }
  .hero .sub { font-size: 17px; }
  .hero-note { flex-wrap: wrap; }
  .section-pad { padding: 70px 0; }
  .sec-title { font-size: 28px; }
  .sec-sub { font-size: 16.5px; }
  .hero-stage .phone { display: none; }
  .callout { position: static; margin-top: 16px; display: inline-flex; }
  .cta-band-btns { flex-direction: column; align-items: stretch; }
  .cta-band-btns .btn { justify-content: center; }
  .footer { flex-direction: column; gap: 12px; text-align: center; }
}
