/* SindiUp — site de apresentação */

/* Reset básico */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0 solid; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; tab-size: 4; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; }
b, strong { font-weight: bolder; }
img, svg { display: block; vertical-align: middle; }
img { max-width: 100%; height: auto; }

:root {
  --navy: #063b55;
  --navy-deep: #032c41;
  --blue: #075777;
  --blue-bright: #0b7297;
  --gold: #c9aa74;
  --gold-soft: #eadcc1;
  --sand: #f4efe6;
  --sand-light: #fbf9f5;
  --ink: #133447;
  --muted: #617481;
  --line: #dfe6e8;
  --white: #ffffff;
  --green: #149d70;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: var(--sand-light);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(1160px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(6, 59, 85, 0.1);
  background: rgba(251, 249, 245, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.brand-link { width: 174px; display: inline-flex; align-items: center; }
.brand-link img { display: block; width: 100%; height: auto; }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 650;
  color: #3f5968;
}
.desktop-nav a, .footer-inner a, .text-link { transition: color 160ms ease; }
.desktop-nav a:hover, .footer-inner a:hover, .text-link:hover { color: var(--blue-bright); }
.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--navy);
  color: white;
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 9px 26px rgba(6, 59, 85, 0.18);
  transition: transform 160ms ease, background 160ms ease;
}
.header-cta:hover, .button:hover { transform: translateY(-2px); }
.header-cta:hover { background: var(--blue); }

.hero {
  position: relative;
  min-height: 710px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 86px 0 92px;
  background:
    linear-gradient(135deg, rgba(244, 239, 230, 0.92), rgba(251, 249, 245, 0.98) 48%, rgba(232, 241, 243, 0.82)),
    radial-gradient(circle at 75% 40%, rgba(11, 114, 151, 0.12), transparent 34%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background-image: radial-gradient(rgba(6, 59, 85, 0.16) 0.8px, transparent 0.8px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to right, transparent, black 72%, transparent);
}
.hero-glow { position: absolute; border-radius: 999px; filter: blur(2px); pointer-events: none; }
.hero-glow-one { width: 420px; height: 420px; right: -170px; top: 20px; background: rgba(201, 170, 116, 0.15); }
.hero-glow-two { width: 260px; height: 260px; left: -100px; bottom: -120px; background: rgba(7, 87, 119, 0.1); }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 76px;
}
.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(7, 87, 119, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--blue);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 590px;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 0.99;
  letter-spacing: -0.055em;
}
.hero h1 span { color: var(--gold); }
.hero-lead {
  max-width: 600px;
  margin: 27px 0 0;
  color: #516a78;
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 780;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button-primary { background: var(--navy); color: white; box-shadow: 0 16px 35px rgba(6, 59, 85, 0.19); }
.button-primary:hover { background: var(--blue); box-shadow: 0 18px 38px rgba(6, 59, 85, 0.24); }
.text-link {
  color: var(--navy);
  font-size: 14px;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(6, 59, 85, 0.28);
  text-underline-offset: 5px;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 31px;
  color: #586d78;
  font-size: 12px;
  font-weight: 660;
}
.hero-points span { display: inline-flex; align-items: center; gap: 6px; }
.hero-points svg { padding: 2px; border-radius: 999px; background: rgba(20, 157, 112, 0.12); color: #0c825a; }

.hero-visual { position: relative; min-height: 530px; display: grid; place-items: center; }
.visual-orbit { position: absolute; border: 1px solid rgba(7, 87, 119, 0.12); border-radius: 999px; }
.orbit-one { width: 490px; height: 490px; }
.orbit-two { width: 380px; height: 380px; }
.app-window {
  position: relative;
  z-index: 2;
  width: min(100%, 540px);
  min-height: 458px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 80px rgba(6, 59, 85, 0.17), 0 4px 18px rgba(6, 59, 85, 0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.app-window::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 250px;
  height: 250px;
  border-radius: 999px;
  background: rgba(201, 170, 116, 0.12);
}
.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 21px 23px;
  border-bottom: 1px solid #e8edef;
  background: rgba(251, 249, 245, 0.78);
}
.app-identity { display: flex; align-items: center; gap: 10px; }
.app-identity img { width: 38px; height: 38px; border-radius: 11px; object-fit: contain; }
.app-identity div { display: grid; gap: 1px; }
.app-identity strong { color: var(--navy); font-size: 14px; }
.app-identity span { color: #5c6f7a; font-size: 9px; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(20, 157, 112, 0.09);
  color: #0c7c57;
  font-size: 9px;
  font-weight: 750;
}
.status-pill span { width: 6px; height: 6px; border-radius: 999px; background: var(--green); box-shadow: 0 0 0 3px rgba(20, 157, 112, 0.13); }
.app-welcome { display: grid; gap: 3px; padding: 24px 24px 16px; }
.app-welcome span { color: #5c6f7a; font-size: 11px; }
.app-welcome strong { color: var(--navy-deep); font-size: 22px; letter-spacing: -0.03em; }
.app-modules { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 24px; }
.mini-module {
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #e9edef;
  border-radius: 15px;
  background: #fff;
  color: var(--navy);
  font-size: 11px;
  font-weight: 750;
  box-shadow: 0 5px 14px rgba(6, 59, 85, 0.04);
}
.mini-module > svg:first-child { width: 38px; height: 38px; padding: 8px; border-radius: 11px; }
.mini-module.blue > svg:first-child, .module-icon.blue { background: rgba(7, 87, 119, 0.1); color: var(--blue); }
.mini-module.gold > svg:first-child, .module-icon.gold { background: rgba(201, 170, 116, 0.2); color: #9f7434; }
.mini-module.green > svg:first-child, .module-icon.green { background: rgba(20, 157, 112, 0.1); color: #0d8a60; }
.mini-module.orange > svg:first-child, .module-icon.orange { background: rgba(212, 112, 42, 0.11); color: #b65a1f; }
.mini-module > svg:last-child { color: #a0acb2; }
.app-summary {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 16px 24px 24px;
  padding: 16px;
  border-radius: 15px;
  background: var(--navy);
  color: white;
}
.app-summary > div:first-child { display: grid; gap: 2px; }
.app-summary span { color: rgba(255, 255, 255, 0.61); font-size: 9px; }
.app-summary strong { font-size: 15px; }
.summary-bars { height: 32px; display: flex; align-items: flex-end; gap: 5px; }
.summary-bars i { width: 6px; border-radius: 4px 4px 1px 1px; background: var(--gold); }
.summary-bars i:nth-child(1) { height: 12px; opacity: 0.55; }
.summary-bars i:nth-child(2) { height: 21px; opacity: 0.7; }
.summary-bars i:nth-child(3) { height: 16px; opacity: 0.65; }
.summary-bars i:nth-child(4) { height: 28px; }
.summary-bars i:nth-child(5) { height: 24px; opacity: 0.82; }
.floating-note {
  position: absolute;
  z-index: 3;
  right: -28px;
  bottom: 17px;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 235px;
  padding: 13px 15px;
  border: 1px solid rgba(6, 59, 85, 0.08);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 36px rgba(6, 59, 85, 0.13);
}
.note-icon { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px; background: rgba(20, 157, 112, 0.12); color: #0c825a; }
.floating-note div { display: grid; gap: 2px; }
.floating-note strong { color: var(--navy); font-size: 12px; }
.floating-note div span { color: #5c6f7a; font-size: 9px; }

.section { padding: 108px 0; }
.section-heading { max-width: 680px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-kicker {
  display: block;
  margin-bottom: 13px;
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section-heading h2, .benefits-copy h2, .cta-copy h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.section-heading p { max-width: 600px; margin: 18px auto 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.solutions { background: #fff; }
.module-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.module-card {
  position: relative;
  min-height: 265px;
  padding: 27px 25px;
  overflow: hidden;
  border: 1px solid #e4e9eb;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(13, 56, 76, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.module-card:hover { transform: translateY(-5px); border-color: rgba(7, 87, 119, 0.18); box-shadow: 0 20px 42px rgba(13, 56, 76, 0.1); }
.module-card::after { content: ""; position: absolute; right: -38px; bottom: -50px; width: 115px; height: 115px; border-radius: 999px; background: var(--sand); opacity: 0.55; }
.module-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; }
.module-number { position: absolute; top: 28px; right: 25px; color: #687983; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; }
.module-card h3 { margin: 40px 0 10px; color: var(--navy); font-size: 19px; letter-spacing: -0.025em; }
.module-fullname { position: relative; z-index: 1; display: block; margin: -3px 0 9px; color: var(--blue); font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; line-height: 1.45; text-transform: uppercase; }
.module-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.65; }

.benefits { position: relative; overflow: hidden; background: var(--navy-deep); color: white; }
.benefits::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -260px;
  top: -260px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.02), 0 0 0 160px rgba(255, 255, 255, 0.015);
}
.benefits-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.75fr; align-items: center; gap: 110px; }
.section-kicker.light { color: var(--gold-soft); }
.benefits-copy h2 { max-width: 660px; color: white; }
.benefits-intro { max-width: 620px; margin: 20px 0 40px; color: rgba(255, 255, 255, 0.68); font-size: 16px; line-height: 1.7; }
.benefit-list { display: grid; gap: 24px; }
.benefit-item { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.benefit-icon { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 13px; background: rgba(255, 255, 255, 0.07); color: var(--gold-soft); }
.benefit-item h3 { margin: 0 0 5px; font-size: 16px; }
.benefit-item p { max-width: 520px; margin: 0; color: rgba(255, 255, 255, 0.58); font-size: 13px; line-height: 1.55; }
.benefits-panel {
  position: relative;
  min-height: 440px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  box-shadow: 0 36px 65px rgba(0, 18, 28, 0.25);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.panel-brand { display: flex; align-items: center; gap: 11px; color: rgba(255, 255, 255, 0.74); font-size: 12px; font-weight: 700; }
.panel-brand img { width: 42px; height: 42px; border-radius: 12px; }
.workflow-card { margin-top: 34px; padding: 22px; border-radius: 18px; background: #fff; color: var(--navy); box-shadow: 0 20px 46px rgba(0, 13, 22, 0.24); }
.workflow-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; }
.workflow-dot { width: 12px; height: 12px; border-radius: 999px; box-shadow: 0 0 0 5px rgba(7, 87, 119, 0.08); }
.workflow-dot.blue { background: var(--blue); }
.workflow-dot.gold { background: var(--gold); }
.workflow-dot.green { background: var(--green); }
.workflow-row div { display: grid; gap: 2px; }
.workflow-row strong { font-size: 13px; }
.workflow-row div span { color: #5f717c; font-size: 10px; }
.workflow-row > svg { color: #0d9567; }
.workflow-line { width: 1px; height: 25px; margin: 5px 0 5px 5px; background: #d9e0e3; }
.panel-slogan { display: block; margin-top: 34px; color: var(--gold-soft); font-size: 25px; letter-spacing: -0.03em; }

.how { background: var(--sand-light); }
.how .section-heading { margin-bottom: 40px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { min-height: 215px; padding: 28px; border-top: 3px solid var(--gold); border-radius: 0 0 18px 18px; background: white; box-shadow: 0 14px 34px rgba(13, 56, 76, 0.06); }
.step-card > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 999px; background: var(--navy); color: white; font-size: 12px; font-weight: 800; }
.step-card h3 { margin: 28px 0 9px; color: var(--navy); font-size: 18px; }
.step-card p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.6; }

.final-cta { padding-top: 18px; background: var(--sand-light); }
.cta-card {
  position: relative;
  min-height: 260px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  padding: 48px 55px;
  border-radius: 28px;
  background: linear-gradient(135deg, #efe5d2, #f6f0e5 60%, #e5edf0);
  box-shadow: 0 20px 50px rgba(13, 56, 76, 0.09);
}
.cta-card::after { content: ""; position: absolute; right: -85px; top: -120px; width: 330px; height: 330px; border: 1px solid rgba(6, 59, 85, 0.1); border-radius: 999px; box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.17); }
.cta-brandmark { width: 82px; height: 82px; display: grid; place-items: center; border-radius: 23px; background: rgba(255, 255, 255, 0.75); box-shadow: 0 12px 28px rgba(6, 59, 85, 0.09); }
.cta-brandmark img { width: 68px; height: 68px; }
.cta-copy { position: relative; z-index: 1; }
.cta-copy > span { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.cta-copy h2 { margin-top: 7px; font-size: 40px; }
.cta-copy p { max-width: 540px; margin: 11px 0 0; color: #5c707c; font-size: 14px; line-height: 1.6; }
.button-whatsapp { position: relative; z-index: 2; background: #0f7f57; color: white; box-shadow: 0 14px 30px rgba(17, 140, 96, 0.2); }
.button-whatsapp:hover { background: #0a6a47; }

footer { padding: 34px 0; border-top: 1px solid rgba(6, 59, 85, 0.08); background: var(--sand-light); }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; color: #5c6f7a; font-size: 11px; }
.footer-inner img { width: 130px; }
.footer-inner p { margin: 0; text-align: center; }
.footer-inner a { justify-self: end; color: var(--navy); font-weight: 750; }
.floating-whatsapp {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  display: none;
  place-items: center;
  border-radius: 999px;
  background: #0f7f57;
  color: white;
  box-shadow: 0 14px 30px rgba(17, 140, 96, 0.3);
}

@media (max-width: 1040px) {
  .hero-grid { gap: 34px; }
  .hero h1 { font-size: clamp(45px, 6vw, 64px); }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .module-card { min-height: 230px; }
  .benefits-grid { gap: 60px; }
  .cta-card { grid-template-columns: auto 1fr; }
  .button-whatsapp { grid-column: 2; justify-self: start; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 36px, 680px); }
  .header-inner { grid-template-columns: 1fr auto; min-height: 70px; }
  .brand-link { width: 144px; }
  .desktop-nav { display: none; }
  .hero { padding: 62px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .hero-visual { min-height: 490px; }
  .floating-note { right: -6px; }
  .section { padding: 82px 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-panel { width: min(100%, 480px); margin-inline: auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: auto; }
  .cta-card { grid-template-columns: 1fr; justify-items: center; padding: 42px 28px; text-align: center; }
  .button-whatsapp { grid-column: 1; justify-self: center; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, 520px); }
  .site-header { background: rgba(251, 249, 245, 0.95); }
  .header-inner { min-height: 66px; gap: 12px; }
  .brand-link { width: 129px; }
  .header-cta { min-height: 39px; padding: 0 12px; border-radius: 11px; font-size: 0; }
  .header-cta span { display: none; }
  .header-cta svg { width: 20px; height: 20px; }
  .hero { min-height: auto; padding: 48px 0 63px; }
  .hero::before { opacity: 0.2; }
  .eyebrow { margin-bottom: 19px; font-size: 10px; }
  .hero h1 { font-size: clamp(42px, 13vw, 58px); line-height: 1.01; }
  .hero-lead { margin-top: 21px; font-size: 15px; line-height: 1.62; }
  .hero-actions { display: grid; gap: 18px; margin-top: 27px; }
  .button { min-height: 53px; padding-inline: 19px; }
  .hero-points { gap: 9px 15px; margin-top: 25px; font-size: 10px; }
  .hero-visual { min-height: 390px; }
  .orbit-one { width: 360px; height: 360px; }
  .orbit-two { width: 280px; height: 280px; }
  .app-window { width: 100%; min-height: auto; border-radius: 21px; }
  .app-topbar { padding: 15px 16px; }
  .app-identity img { width: 33px; height: 33px; }
  .app-welcome { padding: 18px 17px 13px; }
  .app-welcome strong { font-size: 19px; }
  .app-modules { gap: 8px; padding: 0 16px; }
  .mini-module { min-height: 59px; grid-template-columns: auto 1fr; gap: 8px; padding: 9px; font-size: 9px; }
  .mini-module > svg:first-child { width: 32px; height: 32px; padding: 7px; }
  .mini-module > svg:last-child { display: none; }
  .app-summary { margin: 12px 16px 16px; }
  .floating-note { right: -4px; bottom: -24px; min-width: 215px; }
  .section { padding: 70px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .benefits-copy h2 { font-size: 34px; }
  .section-heading p, .benefits-intro { font-size: 14px; }
  .module-grid { grid-template-columns: 1fr; }
  .module-card { min-height: 215px; }
  .benefits-grid { gap: 48px; }
  .benefits-panel { min-height: 410px; padding: 22px; }
  .benefit-item p { font-size: 12.5px; }
  .cta-copy h2 { font-size: 36px; }
  .cta-brandmark { width: 72px; height: 72px; }
  .cta-brandmark img { width: 59px; height: 59px; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-inner a { justify-self: center; }
  .floating-whatsapp { display: grid; }
  footer { padding-bottom: 96px; }
}

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

/* Acessibilidade */
:focus-visible { outline: 3px solid var(--blue-bright); outline-offset: 3px; }
.button:focus-visible, .header-cta:focus-visible, .floating-whatsapp:focus-visible { outline-color: var(--gold); outline-offset: 3px; }
.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 100;
  padding: 11px 18px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: top 160ms ease;
}
.skip-link:focus { top: 12px; }
