:root {
  --ink: #0c1428;
  --muted: #526078;
  --line: #dce3ea;
  --soft: #f3f7f9;
  --white: #ffffff;
  --blue: #078fd0;
  --teal: #08aa91;
  --navy: #07142c;
  --success: #0c7a61;
  --error: #b42318;
  --shadow: 0 26px 80px rgba(6, 20, 44, 0.14);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Montserrat, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.is-submitting { cursor: wait; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.35rem, 5vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 3.25rem); }
h3 { font-size: 1.12rem; }
p { margin: 0; }
.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  background: var(--navy);
}
.site-header__row {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 226px; height: auto; filter: brightness(0) invert(1); }
.site-nav { display: flex; align-items: center; gap: 26px; font-size: .88rem; font-weight: 700; }
.site-nav a { text-decoration: none; }
.site-nav a:not(.button):hover { color: #76e2d3; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--white); background: linear-gradient(120deg, var(--blue), var(--teal)); box-shadow: 0 12px 28px rgba(7, 143, 208, .22); }
.button--light { color: var(--navy); background: var(--white); }
.button--outline { color: var(--white); border-color: rgba(255,255,255,.48); background: transparent; }
.button--wide { width: 100%; }
.button:disabled { opacity: .58; cursor: not-allowed; transform: none; }
.breadcrumb { padding: 20px 0 0; color: #627087; font-size: .78rem; font-weight: 700; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: #9ba7b8; }
.sector-hero {
  overflow: hidden;
  padding: 54px 0 70px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(8,170,145,.35), transparent 29%),
    linear-gradient(135deg, #07142c 0%, #10294b 55%, #073b55 100%);
}
.sector-hero__grid { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(290px,.7fr); gap: 60px; align-items: end; }
.sector-hero__lead { max-width: 760px; margin-top: 22px; color: #d8e5ef; font-size: clamp(1.04rem, 1.7vw, 1.28rem); }
.sector-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.sector-hero__panel {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.sector-hero__panel strong { display: block; font-size: 1.1rem; }
.sector-hero__panel ul { display: grid; gap: 12px; padding: 0; margin: 20px 0 0; list-style: none; }
.sector-hero__panel li { display: flex; gap: 10px; color: #dce8f1; font-size: .9rem; }
.sector-hero__panel li::before { content: "✓"; color: #66e0ca; font-weight: 900; }
.trust-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-strip__item { padding: 22px 18px; border-right: 1px solid var(--line); text-align: center; }
.trust-strip__item:last-child { border-right: 0; }
.trust-strip__item strong { display: block; font-size: .88rem; }
.trust-strip__item span { color: var(--muted); font-size: .74rem; }
.content-section { padding: 82px 0; }
.content-section--soft { background: var(--soft); }
.section-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; margin-bottom: 42px; }
.section-intro__copy { color: var(--muted); font-size: 1.04rem; }
.section-intro__copy p + p { margin-top: 16px; }
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.info-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.info-card__number { display: block; margin-bottom: 32px; color: var(--teal); font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.info-card ul { display: grid; gap: 10px; padding-left: 18px; margin: 18px 0 0; color: var(--muted); font-size: .9rem; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.process-step { padding: 24px; border-top: 3px solid var(--teal); background: var(--white); box-shadow: 0 15px 40px rgba(6,20,44,.06); }
.process-step span { color: var(--teal); font-size: .75rem; font-weight: 900; }
.process-step h3 { margin-top: 18px; }
.process-step p { margin-top: 12px; color: var(--muted); font-size: .87rem; }
.faq-list { display: grid; gap: 10px; max-width: 900px; margin: 38px auto 0; }
.faq-list details { padding: 20px 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.faq-list summary { font-weight: 800; cursor: pointer; }
.faq-list p { margin-top: 13px; color: var(--muted); }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 34px; }
.related-grid a { padding: 20px; border: 1px solid var(--line); border-radius: 14px; text-decoration: none; font-weight: 800; background: var(--white); }
.related-grid a:hover { border-color: var(--teal); color: #047c6b; }
.final-cta { padding: 70px 0; color: var(--white); background: var(--navy); }
.final-cta__row { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.final-cta p { margin-top: 12px; color: #c9d8e5; }

/* Página concentrada para campañas: formulario y propuesta en el primer viewport. */
.landing-hero {
  padding: 54px 0 72px;
  background:
    radial-gradient(circle at 18% 12%, rgba(8,170,145,.18), transparent 26%),
    linear-gradient(180deg, #eef8fa 0%, #fff 72%);
}
.landing-hero__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,.82fr); gap: 52px; align-items: start; }
.landing-copy { padding-top: 38px; }
.landing-copy h1 { font-size: clamp(2.3rem, 4.4vw, 4.7rem); }
.landing-copy__lead { max-width: 700px; margin-top: 20px; color: var(--muted); font-size: 1.12rem; }
.landing-benefits { display: grid; gap: 13px; padding: 0; margin: 28px 0 0; list-style: none; }
.landing-benefits li { display: flex; gap: 12px; font-weight: 700; }
.landing-benefits li::before { content: "✓"; color: var(--teal); font-weight: 900; }
.landing-security { margin-top: 26px; padding: 15px 18px; border-left: 3px solid var(--teal); color: #425069; background: rgba(255,255,255,.74); font-size: .82rem; }
.quote-card { padding: 28px; border: 1px solid #d6e1e8; border-radius: 26px; background: var(--white); box-shadow: var(--shadow); }
.quote-card h2 { font-size: 1.65rem; }
.quote-card__intro { margin: 9px 0 22px; color: var(--muted); font-size: .86rem; }
.quote-form { display: grid; gap: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: grid; gap: 7px; }
.field span { font-size: .76rem; font-weight: 800; }
.field small { color: var(--muted); font-size: .69rem; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  border: 1px solid #cbd6df;
  border-radius: 11px;
  background: var(--white);
  outline: none;
}
.field textarea { min-height: 104px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(7,143,208,.12); }
.field input[aria-invalid="true"] { border-color: var(--error); box-shadow: 0 0 0 3px rgba(180,35,24,.1); }
.phone-helper.is-error { color: var(--error); }
.confirmation { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; color: #39475e; font-size: .78rem; }
.confirmation input { width: 18px; height: 18px; margin-top: 2px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.turnstile-slot { min-height: 66px; display: grid; align-items: center; color: var(--muted); font-size: .75rem; }
.form-feedback { min-height: 24px; color: var(--muted); font-size: .78rem; }
.form-feedback.is-success { color: var(--success); font-weight: 800; }
.form-feedback.is-error { color: var(--error); font-weight: 800; }
.quote-card__privacy { color: var(--muted); font-size: .68rem; text-align: center; }
.landing-proof { padding: 64px 0; border-top: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.proof-card { padding: 23px; border: 1px solid var(--line); border-radius: 16px; }
.proof-card strong { display: block; }
.proof-card p { margin-top: 8px; color: var(--muted); font-size: .83rem; }
.landing-faq { padding: 70px 0; background: var(--soft); }
.site-footer { padding: 42px 0; color: #c6d3df; background: #050e20; }
.site-footer__row { display: grid; grid-template-columns: 1.3fr .7fr; gap: 30px; align-items: end; }
.site-footer img { width: 220px; filter: brightness(0) invert(1); }
.site-footer p { margin-top: 14px; font-size: .8rem; }
.site-footer__links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 15px; font-size: .78rem; }
.site-footer__links a { text-decoration: none; }

@media (max-width: 900px) {
  .site-nav a:not(.button) { display: none; }
  .sector-hero__grid, .landing-hero__grid, .section-intro { grid-template-columns: 1fr; }
  .sector-hero__grid { gap: 34px; }
  .landing-hero__grid { gap: 34px; }
  .landing-copy { padding-top: 8px; }
  .trust-strip__grid, .proof-grid { grid-template-columns: repeat(2,1fr); }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 24px, 1180px); }
  .site-header__row { min-height: 72px; }
  .brand img { width: 184px; }
  .site-nav .button { min-height: 42px; padding: 9px 12px; font-size: .76rem; }
  h1 { font-size: clamp(2.08rem, 12vw, 3.35rem); }
  .sector-hero, .landing-hero { padding: 42px 0 54px; }
  .content-section { padding: 58px 0; }
  .trust-strip__grid, .card-grid, .process-grid, .related-grid, .proof-grid, .site-footer__row { grid-template-columns: 1fr; }
  .trust-strip__item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip__item:last-child { border-bottom: 0; }
  .form-row { grid-template-columns: 1fr; }
  .quote-card { padding: 21px 18px; border-radius: 20px; }
  .final-cta__row { align-items: flex-start; flex-direction: column; }
  .site-footer__links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
