:root {
  --navy: #102A43;
  --navy-2: #17324d;
  --blue: #2F6690;
  --cyan: #5FA8D3;
  --slate: #4B5563;
  --paper: #F4F8FC;
  --white: #ffffff;
  --line: rgba(16, 42, 67, 0.12);
  --line-strong: rgba(16, 42, 67, 0.2);
  --shadow: 0 24px 80px rgba(16, 42, 67, 0.12);
  --shadow-soft: 0 18px 50px rgba(16, 42, 67, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --header-offset: 120px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  overflow-x: hidden;
  padding-top: var(--header-offset);
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--navy);
  background:
    radial-gradient(circle at top left, rgba(95,168,211,.10), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfe 34%, #eef4fa 100%);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p, h1, h2, h3 { margin: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 104px 0; }
.section-soft { background: rgba(255,255,255,.74); }
.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(95,168,211,.2), transparent 30%),
    linear-gradient(180deg, #10283f 0%, #0d2134 100%);
}
.stack-xl { display: grid; gap: 38px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(14px);
  border-bottom: none;
  box-shadow: 0 1px 0 rgba(16,42,67,.05);
  transition: background .2s ease, box-shadow .2s ease;
}
.header-inner {
  min-height: 120px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  transition: min-height .22s ease, gap .22s ease, padding .22s ease;
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand picture { display: inline-flex; align-items: center; }
.brand img { width: auto; height: 108px; transition: height .22s ease; }
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--slate);
  font-size: .94rem;
}
.nav a { white-space: nowrap; }
.nav a:hover { color: var(--blue); }
.site-header.is-compact {
  box-shadow: 0 10px 28px rgba(16,42,67,.08);
}
.site-header.is-compact .header-inner {
  min-height: 92px;
  gap: 26px;
}
.site-header.is-compact .brand img {
  height: 82px;
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(16,42,67,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  box-shadow: 0 18px 40px rgba(16,42,67,.18);
}
.button-secondary,
.button-ghost {
  border-color: rgba(16,42,67,.12);
  background: rgba(255,255,255,.72);
  color: var(--navy);
}
.button-ghost:hover,
.button-secondary:hover { box-shadow: var(--shadow-soft); }

.hero {
  padding-top: 72px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, .72fr);
  gap: 56px;
  align-items: center;
}
.hero-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}
.eyebrow {
  margin-bottom: 16px;
  color: var(--blue);
  font-weight: 800;
  font-size: .84rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero h1,
.section-head h2,
.cta-band h2 {
  font-family: 'Manrope', 'Inter', sans-serif;
  letter-spacing: -0.04em;
}
.hero h1 {
  max-width: 16ch;
  font-size: clamp(2rem, 2.95vw, 41px);
  line-height: 1.08;
  margin: 0 auto 20px;
  text-align: center;
  text-wrap: balance;
}
.lead {
  max-width: 64ch;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  color: #334155;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 24px auto 0;
  display: grid;
  gap: 10px;
  color: #334155;
  justify-content: center;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 0 6px rgba(95,168,211,.12);
}

.hero-visual { position: relative; }
.visual-shell {
  position: relative;
  min-height: 0;
  border-radius: 36px;
  overflow: visible;
  margin-top: 8px;
}
.visual-panel {
  position: absolute;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.visual-panel-main {
  position: relative;
  inset: auto;
  z-index: 2;
  padding: 18px;
  max-width: 420px;
  margin-left: auto;
  background: linear-gradient(180deg, rgba(16,42,67,.98), rgba(29,61,91,.92));
  color: var(--white);
}
.visual-panel-main h3 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(1.55rem, 2vw, 1.95rem);
  line-height: 1.08;
  margin: 10px 0 12px;
}
.visual-panel-main p { color: rgba(255,255,255,.8); max-width: 34ch; font-size: .95rem; }
.hero-art {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 14px;
}
.hero-art-copy {
  padding: 4px 8px 0;
}
.panel-label,
.panel-mini {
  display: flex;
  width: 100%;
  padding: 11px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.84);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.visual-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: stretch;
  margin-top: 18px;
}
.flow-step {
  padding: 11px 10px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}
.flow-step strong {
  display: block;
  font-size: .92rem;
  margin-bottom: 4px;
}
.flow-step span {
  color: rgba(255,255,255,.76);
  font-size: .78rem;
}
.flow-step.active {
  background: rgba(95,168,211,.18);
  border-color: rgba(95,168,211,.35);
}
.flow-line {
  display: none;
}
.visual-glow {
  position: absolute;
  right: 18px;
  top: 12px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(95,168,211,.32), rgba(95,168,211,0));
  filter: blur(16px);
  z-index: 1;
}

.section-head {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}
.narrow { max-width: 760px; }
.section-head .eyebrow {
  margin-bottom: 0;
  font-size: 46.08px;
  letter-spacing: .04em;
  line-height: 1;
}
.section-head h2 {
  font-size: 30.24px;
  line-height: 1.08;
}
.section-head p:last-child {
  max-width: 62ch;
  color: #334155;
  font-size: 1.08rem;
}
.section-head.light p:last-child { color: rgba(255,255,255,.8); }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card,
.service-card,
.sector-card,
.contact-form,
.step {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.card,
.service-card,
.sector-card,
.step { padding: 28px; }
.card,
.service-card,
.sector-card { background: rgba(255,255,255,.96); }
.card h3,
.service-card h3,
.sector-card h3,
.step h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.card p,
.service-card p,
.sector-card p,
.step p { color: #334155; }
.card-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 800;
}
.problem-grid {
  align-items: stretch;
  gap: 20px;
}
.problem-grid .card {
  min-height: 0;
  padding: 28px 22px 22px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
}
.problem-grid .card h3 {
  font-size: 23px;
  line-height: 1.14;
  margin-bottom: 12px;
}
.problem-grid .card p {
  font-size: 17px;
  line-height: 1.52;
}
.problem-grid .card-kicker {
  margin-bottom: 14px;
  font-size: 17px;
}
.problem-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  margin-top: 16px;
  align-self: end;
  border: 1px solid rgba(16,42,67,.08);
  box-shadow: var(--shadow-soft);
}
.problem-grid .card:nth-child(2) { transform: none; }
.problem-grid .card:nth-child(3) { transform: none; }
.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.46fr) minmax(280px, .64fr);
  gap: 22px;
  align-items: center;
}
.section-visual-column {
  display: grid;
  gap: 16px;
  justify-items: end;
}
.adoption-panel {
  max-width: 390px;
  padding: 20px 22px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(180deg, rgba(16,42,67,.98), rgba(29,61,91,.92));
  color: var(--white);
}
.adoption-panel h3 {
  margin: 12px 0 10px;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(1.08rem, 1.45vw, 1.36rem);
  line-height: 1.14;
}
.adoption-panel p {
  color: rgba(255,255,255,.82);
  font-size: .92rem;
}
.section-visual {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(16,42,67,.08);
  background: rgba(255,255,255,.84);
  max-width: 390px;
  justify-self: end;
}
.section-visual img {
  width: 100%;
  height: 100%;
  display: block;
}

.service-grid .service-card:nth-child(odd),
.sectors .sector-card:nth-child(even) {
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(240,247,253,.96));
}

.method-layout { display: grid; gap: 34px; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.step {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
}
.step span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-weight: 800;
}
.step h3 { color: var(--white); }
.step p { color: rgba(255,255,255,.8); }

.credibility-layout { display: grid; gap: 30px; }
.credibility-media {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .82fr);
  gap: 24px;
  align-items: center;
}
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.proof-strip > div {
  min-height: 324px;
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
}
.proof-strip strong {
  display: block;
  margin-bottom: 14px;
  font-size: 23px;
  line-height: 1.18;
}
.proof-strip span {
  color: var(--slate);
  font-size: 18px;
  line-height: 1.45;
}

.cta-band { padding-top: 26px; }
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(16,42,67,.98), rgba(47,102,144,.94));
  color: var(--white);
  box-shadow: var(--shadow);
}
.cta-band-inner .eyebrow {
  display: block;
  width: 100%;
  color: rgba(255,255,255,.82);
  margin-bottom: 14px;
  font-size: 1.22rem;
  letter-spacing: .06em;
}
.cta-band-inner h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); }
.cta-band .hero-actions {
  min-width: 280px;
  display: grid;
  gap: 12px;
}
.cta-band .hero-actions .button {
  width: 100%;
  min-height: 52px;
}
.cta-band .button-ghost {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.contact-form {
  padding: 28px;
  display: grid;
  gap: 16px;
  background: rgba(255,255,255,.98);
}
.contact-form-full {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}
.contact-form label { display: grid; gap: 8px; font-weight: 700; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16,42,67,.12);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--navy);
  background: #fff;
}
.contact-form textarea { resize: vertical; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.form-actions-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.contact-inline-note {
  margin: 0;
  color: #334155;
  font-size: .98rem;
}
.contact-inline-note a {
  font-weight: 700;
  text-decoration: underline;
}
.form-note,
.form-disclaimer { color: #334155; }
.form-disclaimer { font-size: .9rem; }

.site-footer {
  padding: 28px 0 42px;
  border-top: 1px solid rgba(16,42,67,.12);
  background: rgba(255,255,255,.9);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer-brand picture { display: inline-flex; align-items: center; }
.footer-brand img { width: auto; height: 120px; margin-bottom: 10px; }
.footer-brand p { color: var(--slate); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--slate);
  font-size: .95rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(37,211,102,.34);
}
.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}
.js-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@media (max-width: 1080px) {
  .hero-grid,
  .contact-grid,
  .steps,
  .grid-3,
  .proof-strip,
  .cta-band-inner,
  .problem-layout,
  .credibility-media {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 28px; }
  .hero h1 { max-width: 14ch; }
  .visual-shell { min-height: 560px; }
  .visual-panel-main { inset: 0 30px 70px 0; }
  .visual-panel-side { width: 250px; }
  .visual-flow { grid-template-columns: 1fr; }
  .flow-line { display: none; }
  .problem-grid .card:nth-child(2),
  .problem-grid .card:nth-child(3) { transform: none; }
  .proof-strip > div { min-height: auto; }
  .cta-band-inner { display: grid; }
}

@media (max-width: 860px) {
  :root { --header-offset: 114px; }
  body.menu-open { overflow: hidden; }
  .site-header.is-compact .header-inner {
    min-height: auto;
    padding: 8px 0;
  }
  .site-header.is-compact .brand img { height: 78px; }
  .nav { display: none; }
  .header-inner {
    min-height: auto;
    padding: 12px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
  }
  .brand img { height: 90px; }
  .button-secondary { display: none; }
  .menu-toggle { display: inline-flex; justify-self: end; }
  .mobile-menu {
    display: none;
    padding: 0 0 14px;
    border-top: 1px solid rgba(16,42,67,.08);
    background: rgba(255,255,255,.98);
  }
  .mobile-menu.is-open { display: block; }
  .mobile-menu-panel {
    display: grid;
    gap: 10px;
    padding: 18px 16px 0;
  }
  .mobile-menu-panel a {
    padding: 10px 2px;
    color: var(--navy);
    font-weight: 600;
  }
  .mobile-menu-panel .mobile-menu-cta {
    margin-top: 8px;
    padding: 0 16px;
    justify-content: center;
    min-height: 48px;
  }
  .grid-2,
  .steps { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .proof-strip { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --header-offset: 104px; }
  .site-header { border-bottom: 1px solid rgba(16,42,67,.08); }
  .site-header.is-compact .brand img { height: 72px; }
  .header-inner { padding: 10px 0; }
  .brand img { height: 84px; }
  .mobile-menu-panel { padding: 16px 0 0; }
  .section { padding: 68px 0; }
  .container { width: min(1180px, calc(100% - 22px)); }
  .stack-xl,
  .grid,
  .hero-grid,
  .problem-layout,
  .contact-grid,
  .credibility-layout,
  .credibility-media,
  .cta-band-inner { gap: 20px; }
  .hero { padding-top: 24px; }
  .eyebrow {
    margin-bottom: 12px;
    font-size: .72rem;
    letter-spacing: .06em;
  }
  .hero h1 {
    max-width: none;
    font-size: clamp(2.05rem, 8.8vw, 2.7rem);
    line-height: 1.02;
    margin-bottom: 14px;
  }
  .lead,
  .section-head p:last-child,
  .card p,
  .service-card p,
  .sector-card p,
  .step p,
  .form-note,
  .form-disclaimer,
  .contact-list li,
  .footer-links,
  .footer-brand p {
    font-size: .96rem;
    line-height: 1.55;
  }
  .section-head .eyebrow {
    font-size: clamp(1.4rem, 6vw, 2rem);
    letter-spacing: .05em;
  }
  .section-head h2,
  .cta-band-inner h2,
  #contacto h2 {
    font-size: clamp(1.4rem, 5vw, 1.9rem);
    line-height: 1.08;
  }
  .hero-actions,
  .form-actions,
  .form-actions-3 {
    display: grid;
    gap: 10px;
  }
  .hero-actions .button,
  .form-actions .button,
  .button {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    font-size: .96rem;
  }
  .hero-points {
    gap: 10px;
    margin-top: 22px;
    font-size: .95rem;
  }
  .visual-shell {
    min-height: auto;
    border-radius: 28px;
  }
  .visual-panel-main {
    position: relative;
    inset: auto;
    margin-right: 0;
    padding: 14px;
    border-radius: 24px;
  }
  .hero-art {
    aspect-ratio: 16 / 11;
    border-radius: 18px;
    margin-bottom: 14px;
  }
  .hero-art-copy { padding: 0; }
  .visual-panel-main h3 {
    font-size: 1.45rem;
    line-height: 1.12;
    margin: 10px 0 12px;
  }
  .visual-flow {
    margin-top: 18px;
    gap: 8px;
  }
  .flow-step {
    padding: 12px;
    border-radius: 14px;
  }
  .flow-step strong { font-size: 1rem; }
  .flow-step span { font-size: .88rem; }
  .visual-panel-side,
  .visual-panel-side-top,
  .visual-panel-side-bottom,
  .visual-glow {
    display: none;
  }
  .card,
  .service-card,
  .sector-card,
  .step,
  .contact-form,
  .proof-strip > div,
  .cta-band-inner,
  .adoption-panel {
    padding: 20px;
    border-radius: 22px;
  }
  .proof-strip strong {
    font-size: 1.22rem;
    margin-bottom: 10px;
  }
  .proof-strip span {
    font-size: 1rem;
    line-height: 1.55;
  }
  .problem-grid .card {
    min-height: auto;
    padding: 22px 18px 18px;
  }
  .problem-grid .card h3 {
    font-size: 1.16rem;
    margin-bottom: 10px;
  }
  .problem-grid .card p {
    font-size: .95rem;
    line-height: 1.5;
  }
  .problem-grid .card-kicker {
    font-size: .86rem;
    margin-bottom: 12px;
  }
  .problem-card-image {
    margin-top: 14px;
    border-radius: 16px;
  }
  .problem-grid .card:nth-child(2),
  .problem-grid .card:nth-child(3) { transform: none; }
  .card h3,
  .service-card h3,
  .sector-card h3,
  .step h3 {
    font-size: 1.08rem;
    margin-bottom: 10px;
  }
  .card-kicker,
  .step span {
    font-size: .78rem;
  }
  .panel-label,
  .panel-mini {
    font-size: .92rem;
    padding: 10px 12px;
  }
  .section-visual-column,
  .section-visual {
    max-width: none;
    justify-self: stretch;
    justify-items: stretch;
  }
  .section-visual,
  .section-visual img {
    border-radius: 22px;
  }
  .section-visual img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 13px 14px;
    border-radius: 14px;
    font-size: 16px;
  }
  .footer-brand img { height: 50px; }
  .footer-links {
    gap: 12px;
    font-size: .92rem;
  }
  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 12px;
    bottom: 12px;
  }
  .whatsapp-float span { font-size: 1.35rem; }
}
