/* SiversaPOS landing: lean page styles (brand tokens from homepage) */
:root {
  --blue: #0B4CC2;
  --blue-dark: #082E72;
  --blue-deep: #061B49;
  --orange: #FF7A00;
  --orange-dark: #e86a00;
  --white: #FFFFFF;
  --bg-alt: #F7FAFF;
  --bg-soft: #F8FBFF;
  --text-muted: #5F6B7A;
  --text-body: #475467;
  --text-tagline: #667085;
  --border: #E4EAF5;
  --radius-btn: 999px;
  --radius-md: 18px;
  --shadow: 0 4px 24px rgba(11, 76, 194, 0.08);
  --shadow-lg: 0 28px 70px rgba(6, 27, 73, 0.18);
  --max: 1120px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 72px;
  --font-body: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Outfit", Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--blue-deep);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.pos-wrap {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

/* Header */
.pos-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(228, 234, 245, 0.85);
}

.pos-header__inner {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pos-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pos-brand img { width: 34px; height: 34px; border-radius: 8px; }
.pos-brand__name { font-size: 1.05rem; color: var(--blue); }
.pos-brand__pos { color: var(--orange); }

.pos-header__cta { flex-shrink: 0; }

/* Buttons */
.pos-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.pos-btn:hover { transform: translateY(-2px); }
.pos-btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.pos-btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(11, 76, 194, 0.22);
}

.pos-btn--primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 14px 30px rgba(11, 76, 194, 0.28);
}

.pos-btn--primary:focus-visible { outline-color: var(--blue-deep); }

.pos-btn--primary .pos-btn__arrow { color: var(--white); }

.pos-btn--ghost {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 10px 24px rgba(11, 76, 194, 0.22);
}

.pos-btn--ghost:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 0 14px 30px rgba(11, 76, 194, 0.28);
}

.pos-btn--ghost:focus-visible { outline-color: var(--orange); }

.pos-btn--soft {
  background: var(--white);
  color: var(--blue);
  border-color: var(--border);
}

.pos-btn--soft:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.pos-btn--block { width: 100%; }

.pos-btn__play {
  flex-shrink: 0;
  display: block;
  margin-left: 1px;
}

/* Hero */
.pos-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(4, 18, 48, 0.35) 0%, rgba(4, 18, 48, 0.72) 48%, rgba(4, 18, 48, 0.92) 100%),
    radial-gradient(900px 420px at 80% 10%, rgba(11, 76, 194, 0.45), transparent 55%),
    radial-gradient(700px 360px at 12% 90%, rgba(255, 122, 0, 0.18), transparent 50%),
    #061B49;
}

.pos-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pos-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.42;
  transform: none;
}

.pos-hero__content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 40px 24px 44px;
  max-width: 640px;
}

/* Soft dark wash behind copy: frosted blur, edge-fades into photo (no card box) */
.pos-hero__content::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -4px -32px -18px -24px;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  pointer-events: none;
  background:
    radial-gradient(ellipse 78% 70% at 32% 40%,
      rgba(4, 18, 48, 0.82) 0%,
      rgba(4, 18, 48, 0.52) 38%,
      rgba(4, 18, 48, 0.18) 64%,
      transparent 78%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-mask-image: radial-gradient(ellipse 88% 82% at 34% 42%, #000 18%, rgba(0, 0, 0, 0.55) 48%, transparent 78%);
  mask-image: radial-gradient(ellipse 88% 82% at 34% 42%, #000 18%, rgba(0, 0, 0, 0.55) 48%, transparent 78%);
}

.pos-hero__os {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow:
    0 1px 2px rgba(4, 18, 48, 0.9),
    0 2px 14px rgba(4, 18, 48, 0.5);
}

.pos-hero__os-logo {
  flex-shrink: 0;
  display: block;
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 1px 2px rgba(4, 18, 48, 0.75));
}

.pos-hero__os-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.pos-hero__os-vers {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 2px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.72);
}

.pos-hero__os-vers span + span {
  padding-left: 6px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.pos-hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 7.2vw, 4.85rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--white);
  text-shadow:
    0 1px 1px rgba(4, 18, 48, 0.95),
    0 2px 8px rgba(4, 18, 48, 0.75),
    0 8px 32px rgba(4, 18, 48, 0.55),
    0 0 48px rgba(4, 18, 48, 0.35);
}

.pos-hero__brand span {
  color: var(--orange);
  text-shadow:
    0 1px 1px rgba(4, 18, 48, 0.95),
    0 2px 10px rgba(4, 18, 48, 0.7),
    0 0 28px rgba(255, 122, 0, 0.55);
}

.pos-hero__lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.45;
  max-width: 40ch;
  margin-bottom: 14px;
  text-shadow:
    0 1px 2px rgba(4, 18, 48, 0.88),
    0 3px 14px rgba(4, 18, 48, 0.55);
}

.pos-hero__rule {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0 0 14px;
  border: 0;
  background: rgba(255, 255, 255, 0.34);
}

.pos-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 12px;
}

/* Descarregar: orange only in hero; elsewhere primary stays brand blue */
.pos-hero__actions .pos-btn--primary {
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(255, 122, 0, 0.28);
}

.pos-hero__actions .pos-btn--primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 14px 30px rgba(232, 106, 0, 0.34);
}

/* Video CTA (ghost = brand blue) stays solid over busy hero photo */
.pos-hero__actions .pos-btn--ghost {
  box-shadow:
    0 6px 18px rgba(4, 18, 48, 0.35),
    0 10px 24px rgba(11, 76, 194, 0.28);
}

.pos-hero__actions .pos-btn--ghost:hover {
  box-shadow:
    0 10px 24px rgba(4, 18, 48, 0.4),
    0 14px 30px rgba(11, 76, 194, 0.34);
}

.pos-hero__meta {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  text-align: center;
  text-shadow:
    0 1px 2px rgba(4, 18, 48, 0.85),
    0 2px 10px rgba(4, 18, 48, 0.5);
}

/* Proof */
.pos-proof {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.pos-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.pos-proof__item {
  padding: 22px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: left;
  border-right: 1px solid var(--border);
}

.pos-proof__item:last-child { border-right: 0; }

.pos-proof__mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #EAF1FF;
  color: var(--blue);
  font-weight: 900;
  font-size: 0.78rem;
  flex: 0 0 auto;
}

.pos-proof__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pos-proof__item span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* Sections */
.pos-section { padding: 72px 0; }

.pos-section--soft { background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%); }

.pos-section__head {
  max-width: 560px;
  margin: 0 auto 40px;
  text-align: center;
}

.pos-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pos-section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.55rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}

.pos-section__head p {
  color: var(--text-body);
  font-size: 1.02rem;
}

.pos-accent { color: var(--orange); }

/* Benefits */
.pos-beats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pos-beat {
  padding: 22px 20px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.pos-beat__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #2172ff, var(--blue));
  color: var(--white);
  box-shadow: 0 10px 20px rgba(11, 76, 194, 0.18);
}

.pos-beat h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.pos-beat p {
  color: var(--text-muted);
  font-size: 0.94rem;
}

/* Install demo spotlight (light band; reuses .pos-video__frame / play) */
#vantagens.pos-section {
  padding-bottom: 28px;
}

/* "Feito para Windows" compatibility strip: light band between vantagens and install */
.pos-winstrip {
  background: var(--bg-alt);
  padding: 26px 0;
}

.pos-winstrip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.pos-winstrip__copy { max-width: 460px; }

.pos-winstrip__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--blue-deep);
  margin-bottom: 4px;
}

.pos-winstrip__lead {
  color: var(--text-body);
  font-size: 0.9rem;
}

.pos-winstrip__badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.pos-winstrip__badge-row {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pos-winstrip__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--white);
  color: var(--blue-deep);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.pos-winstrip__badge-logo {
  flex-shrink: 0;
  color: var(--blue);
}

.pos-winstrip__badges-note {
  color: var(--text-muted);
  font-size: 0.78rem;
  text-align: center;
  max-width: 16rem;
  line-height: 1.35;
}

.pos-section.pos-install {
  padding-top: 24px;
}

.pos-install::before {
  content: "";
  display: block;
  width: min(calc(100% - 40px), var(--max));
  height: 1px;
  margin: 0 auto 36px;
  background: rgba(6, 27, 73, 0.1);
}

.pos-install__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.pos-install__copy .pos-kicker { color: var(--blue); }
.pos-install__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 10px 0 14px;
}
.pos-install__copy p {
  color: var(--text-muted);
  margin-bottom: 22px;
  max-width: 36ch;
}

.pos-install__frame {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

/* Video band */
.pos-video {
  color: var(--white);
  background:
    radial-gradient(700px 280px at 85% 20%, rgba(11, 76, 194, 0.35), transparent 55%),
    linear-gradient(135deg, #04122f 0%, #0a1e45 60%, #061B49 100%);
}

.pos-video__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.pos-video__copy .pos-kicker { color: #90b5ff; }
.pos-video__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 10px 0 14px;
}
.pos-video__copy p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 22px;
  max-width: 36ch;
}

.pos-video__frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  aspect-ratio: 16 / 10;
  background: #0b1730;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

.pos-video__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.pos-video__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(6, 27, 73, 0.72);
  backdrop-filter: blur(8px);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.pos-video__frame:hover .pos-video__play {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(11, 76, 194, 0.85);
}

.pos-video__play svg { margin-left: 3px; }

/* Final CTA */
.pos-cta {
  padding: 48px 0;
  color: var(--white);
  background: linear-gradient(135deg, #0046c8, var(--blue) 55%, #1a6cff);
}

.pos-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pos-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.pos-cta p { color: rgba(255, 255, 255, 0.78); }

.pos-cta .pos-btn--soft {
  background: var(--white);
  color: var(--blue);
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

/* Footer */
.pos-footer {
  padding: 36px 0 28px;
  background: #04122f;
  color: #96a5bb;
  font-size: 0.9rem;
}

.pos-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(150, 165, 187, 0.18);
}

.pos-footer__seo-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 560px;
  min-width: 0;
}

.pos-footer__logo {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 8px;
  object-fit: contain;
}

.pos-footer__seo {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #7c8ba5;
}

.pos-footer__connect {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 10px;
}

.pos-footer__connect-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: #96a5bb;
}

/* WhatsApp + social icons: one toolbar row (WA left) */
.pos-footer__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.pos-social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pos-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(150, 165, 187, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: #d6dfed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.pos-social-link svg { width: 16px; height: 16px; }

.pos-social-link:hover {
  transform: translateY(-2px);
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* Compact pill — mirrors homepage .contact-pill scale; green WA treatment */
.pos-wa-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 0;
  border-radius: var(--radius-btn);
  background: #25D366;
  color: var(--white);
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s var(--ease);
}

.pos-wa-pill svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.pos-wa-pill:hover {
  background: #1EBE5A;
  transform: translateY(-1px);
}

.pos-wa-pill:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.45);
  outline-offset: 2px;
}

.pos-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pos-footer a { color: #d6dfed; }
.pos-footer a:hover { color: var(--white); }

/* ===== Modal WhatsApp (qualificação, mesmo fluxo do site principal) ===== */
.sv-wa-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.sv-wa-modal.is-open { display: flex; }

body.sv-wa-lock { overflow: hidden; }

.sv-wa-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 27, 73, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: svWaFade 0.2s var(--ease);
}

.sv-wa-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--white);
  background-image: linear-gradient(180deg, rgba(11, 76, 194, 0.05), rgba(11, 76, 194, 0) 140px);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(6, 27, 73, 0.34);
  padding: 24px 26px 22px;
  text-align: left;
  animation: svWaPop 0.24s var(--ease);
}

.sv-wa-modal__dialog::-webkit-scrollbar { width: 6px; }

.sv-wa-modal__dialog::-webkit-scrollbar-thumb {
  background: rgba(11, 76, 194, 0.18);
  border-radius: var(--radius-btn);
}

.sv-wa-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease);
}

.sv-wa-modal__close svg { width: 15px; height: 15px; }

.sv-wa-modal__close:hover {
  color: var(--blue-deep);
  border-color: var(--blue);
}

.sv-wa-modal__head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 34px 14px 0;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.sv-wa-modal__avatar {
  position: relative;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: linear-gradient(150deg, #FFFFFF 0%, #EDF3FD 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 3px 10px rgba(11, 76, 194, 0.1);
}

.sv-wa-modal__avatar img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.sv-wa-modal__avatar-badge {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  border: 2px solid var(--white);
  display: grid;
  place-items: center;
}

.sv-wa-modal__avatar-badge svg { width: 9px; height: 9px; }

.sv-wa-modal__identity {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.sv-wa-modal__name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--blue-deep);
}

.sv-wa-modal__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  line-height: 1.35;
  color: var(--text-tagline);
}

.sv-wa-modal__status i {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: svWaDot 2.4s ease-out infinite;
}

.sv-wa-modal__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--blue-deep);
}

.sv-wa-modal__sub {
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-body);
}

.sv-wa-modal__form { margin-top: 6px; }

.sv-wa-field { margin-top: 14px; }

.sv-wa-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-deep);
}

.sv-wa-field input,
.sv-wa-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  color: var(--blue-deep);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
}

.sv-wa-field textarea {
  min-height: 78px;
  resize: vertical;
  line-height: 1.5;
}

.sv-wa-field input::placeholder,
.sv-wa-field textarea::placeholder { color: #9AA6B8; }

.sv-wa-field input:focus,
.sv-wa-field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11, 76, 194, 0.12);
}

.sv-wa-field.has-error input,
.sv-wa-field.has-error textarea {
  border-color: #E53935;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.12);
}

.sv-wa-field__error {
  display: none;
  margin-top: 5px;
  font-size: 11.5px;
  font-weight: 500;
  color: #C62828;
}

.sv-wa-field.has-error .sv-wa-field__error { display: block; }

.sv-wa-modal__submit {
  margin-top: 18px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #04120a;
  border: 0;
  border-radius: var(--radius-btn);
  padding: 12px 18px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s var(--ease), transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.sv-wa-modal__submit svg { width: 17px; height: 17px; }

.sv-wa-modal__submit:hover {
  background: #1EBE5A;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3);
}

.sv-wa-modal__hint {
  margin-top: 10px;
  text-align: center;
  font-size: 11.5px;
  color: var(--text-tagline);
}

@keyframes svWaFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes svWaPop {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

@keyframes svWaDot {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile/tablet: ecrã inteiro, como o modal de vídeo/download */
@media (max-width: 768px) {
  .sv-wa-modal {
    padding: 0;
    align-items: stretch;
  }

  .sv-wa-modal__dialog {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100dvh;
    max-height: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    padding: calc(18px + env(safe-area-inset-top, 0px)) 20px calc(16px + env(safe-area-inset-bottom, 0px));
    box-shadow: none;
    background-image: linear-gradient(180deg, rgba(11, 76, 194, 0.06), rgba(11, 76, 194, 0) 180px);
    animation: svWaSheet 0.28s var(--ease);
    scrollbar-width: none;
  }

  .sv-wa-modal__dialog::-webkit-scrollbar { width: 0; }

  .sv-wa-modal__close {
    top: calc(14px + env(safe-area-inset-top, 0px));
    right: 14px;
    width: 34px;
    height: 34px;
  }

  .sv-wa-modal__head {
    padding-bottom: 14px;
    margin-bottom: 14px;
  }

  .sv-wa-modal__title { font-size: 20px; }

  .sv-wa-field { margin-top: 14px; }

  .sv-wa-field textarea { min-height: 76px; }

  .sv-wa-field input,
  .sv-wa-field textarea {
    font-size: 16px;
    padding: 13px 14px;
  }

  .sv-wa-modal__submit {
    margin-top: 20px;
    padding: 15px 18px;
    font-size: 15px;
  }

  .sv-wa-modal__hint { margin-top: 10px; }
}

@media (min-width: 561px) and (max-width: 768px) {
  .sv-wa-modal__dialog {
    padding-left: max(20px, calc((100% - 480px) / 2));
    padding-right: max(20px, calc((100% - 480px) / 2));
  }

  .sv-wa-modal__close { right: max(20px, calc((100% - 480px) / 2)); }
}

@keyframes svWaSheet {
  from { transform: translateY(100%); }
  to { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .sv-wa-modal__backdrop,
  .sv-wa-modal__dialog,
  .sv-wa-modal__status i { animation: none; }
  .sv-wa-modal__submit:hover { transform: none; }
}

/* Download gate modal */
.pos-dl-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.pos-dl-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pos-dl-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 10, 28, 0.78);
  backdrop-filter: blur(8px);
}

.pos-dl-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  padding: 28px 24px 22px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(10px) scale(0.98);
  transition: transform 0.22s var(--ease);
}

.pos-dl-modal.is-open .pos-dl-modal__panel {
  transform: none;
}

.pos-dl-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  color: var(--blue-deep);
}

.pos-dl-modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pos-dl-modal h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

/* POS page: align VSL modal title with Outfit display (sheet loads after sv-vsl-modal.css) */
.sv-vsl-modal__title {
  font-family: var(--font-display);
  font-weight: 700;
}

.pos-dl-modal__lead {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin-bottom: 18px;
}

.pos-dl-field { margin-bottom: 12px; }

.pos-dl-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--blue-deep);
}

.pos-dl-field input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fbfcff;
  color: var(--blue-deep);
}

.pos-dl-field input:focus {
  outline: none;
  border-color: #9bb8ef;
  box-shadow: 0 0 0 3px rgba(11, 76, 194, 0.12);
}

.pos-dl-modal__hint {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.pos-dl-modal__actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

body.pos-lock { overflow: hidden; }

/* Mobile guard modal: dark/premium (mesma família visual do sv-vsl-modal) */
.pos-mobile-modal {
  --pmg-bg-deep: #04142f;
  --pmg-bg-panel: #061f49;
  --pmg-orange: #ff8200;
  --pmg-orange-light: #ff9a00;
  --pmg-line: rgba(255, 255, 255, 0.14);
  --pmg-muted: rgba(255, 255, 255, 0.72);

  position: fixed;
  inset: 0;
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.pos-mobile-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pos-mobile-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 10, 27, 0.86);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.pos-mobile-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 400px);
  padding: 30px 24px 24px;
  border-radius: 20px;
  text-align: center;
  background:
    radial-gradient(640px 300px at 82% -10%, rgba(21, 88, 232, 0.28), transparent 55%),
    radial-gradient(520px 240px at 8% 110%, rgba(255, 130, 0, 0.16), transparent 50%),
    linear-gradient(165deg, var(--pmg-bg-panel) 0%, var(--pmg-bg-deep) 100%);
  border: 1px solid var(--pmg-line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(10px) scale(0.98);
  transition: transform 0.22s var(--ease);
}

.pos-mobile-modal.is-open .pos-mobile-modal__panel {
  transform: none;
}

.pos-mobile-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--pmg-line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.pos-mobile-modal__close:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.pos-mobile-modal__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--pmg-orange-light);
  background: rgba(255, 130, 0, 0.14);
  border: 1px solid rgba(255, 154, 0, 0.3);
}

.pos-mobile-modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  color: var(--pmg-orange-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pos-mobile-modal h2 {
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.28;
  color: var(--white);
  margin-bottom: 10px;
}

.pos-mobile-modal__desc {
  color: var(--pmg-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.pos-mobile-modal__hint {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
  line-height: 1.45;
  margin-bottom: 20px;
}

.pos-mobile-modal__actions {
  display: grid;
  gap: 10px;
}

.pos-mobile-modal__btn {
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease), transform 0.18s var(--ease), box-shadow 0.18s var(--ease), color 0.18s var(--ease);
}

.pos-mobile-modal__btn:focus-visible {
  outline: 2px solid var(--pmg-orange-light);
  outline-offset: 2px;
}

.pos-mobile-modal__btn--primary {
  background: linear-gradient(135deg, var(--pmg-orange-light) 0%, var(--pmg-orange) 55%, #e86f00 100%);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(255, 130, 0, 0.3);
}

.pos-mobile-modal__btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255, 130, 0, 0.38);
}

.pos-mobile-modal__btn--primary.is-copied {
  background: linear-gradient(135deg, #2fbf71 0%, #22a862 100%);
  box-shadow: 0 10px 24px rgba(34, 168, 98, 0.32);
}

.pos-mobile-modal__btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.pos-mobile-modal__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Reveal */
.pos-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.pos-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .pos-proof__grid { grid-template-columns: 1fr; }
  .pos-proof__item {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .pos-proof__item:last-child { border-bottom: 0; }
  .pos-beats { grid-template-columns: 1fr; }
  .pos-winstrip__inner { flex-direction: column; align-items: flex-start; }
  .pos-winstrip__badges { align-items: center; width: 100%; }
  .pos-install__grid,
  .pos-video__grid { grid-template-columns: 1fr; }
  .pos-cta__inner { flex-direction: column; align-items: flex-start; }
  .pos-cta .pos-btn { width: 100%; }
}

@media (max-width: 640px) {
  .pos-wrap,
  .pos-header__inner,
  .pos-hero__content { width: min(calc(100% - 28px), var(--max)); }
  .pos-header__cta .pos-btn__label-full { display: none; }
  .pos-hero { align-items: flex-end; }
  .pos-hero__content { padding: 32px 16px 36px; }
  .pos-hero__content::before {
    inset: -2px -14px -14px -10px;
  }
  .pos-hero__os { margin-bottom: 10px; }
  .pos-hero__brand { margin-bottom: 10px; }
  .pos-hero__lead { margin-bottom: 12px; font-size: 0.95rem; }
  .pos-hero__rule { margin-bottom: 12px; }
  .pos-hero__actions {
    flex-direction: column;
    margin-bottom: 10px;
  }
  /* Mobile: video first, download second (DOM stays download → video for desktop) */
  .pos-hero__actions .pos-btn--ghost { order: -1; }
  .pos-hero__actions .pos-btn { width: 100%; }
  .pos-section { padding: 56px 0; }
  #vantagens.pos-section { padding-bottom: 20px; }
  .pos-winstrip { padding: 22px 0; }
  .pos-winstrip__badge-row { flex-wrap: wrap; justify-content: center; }
  .pos-winstrip__badge { flex: 0 0 auto; justify-content: center; }
  .pos-section.pos-install { padding-top: 20px; }
  .pos-install::before { margin-bottom: 28px; }
  .pos-footer__top {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .pos-footer__seo-block {
    max-width: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .pos-footer__logo { margin-top: 0; }
  .pos-footer__connect { align-items: flex-start; }
  .pos-footer__toolbar { justify-content: flex-start; }
  .pos-social-links { flex-wrap: wrap; }
}
