:root {
  --navy: #0d1b2a;
  --navy-2: #142a40;
  --navy-3: #203b54;
  --gold: #d4af37;
  --gold-light: #f2d98a;
  --cream: #fbf8f1;
  --paper: #fffdf8;
  --ink: #152334;
  --muted: #647185;
  --line: #e7e1d5;
  --shadow: 0 24px 60px rgba(13, 27, 42, .11);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.swal2-shown { padding-right: 0 !important; }

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 72px);
  background: linear-gradient(180deg, rgba(6, 17, 29, .9), rgba(6, 17, 29, .42));
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
  transition: height .25s ease, background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  height: 66px;
  background: rgba(8, 23, 37, .97);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.brand { display: flex; align-items: center; }
.brand img {
  width: 126px;
  height: 40px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
}

.site-nav > a:not(.btn) {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-size: .87rem;
  font-weight: 600;
  transition: color .2s ease;
}
.site-nav > a:not(.btn):hover { color: var(--gold-light); }

.nav-toggle {
  display: none;
  color: #fff;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle svg { width: 25px; height: 25px; }

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 9px;
  font: 700 .87rem/1 "DM Sans", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 17px; height: 17px; }
.btn-large { min-height: 52px; padding: 0 25px; border-radius: 11px; font-size: .93rem; }

.btn-gold {
  color: #102234;
  background: linear-gradient(135deg, #f1d374, var(--gold));
  box-shadow: 0 10px 28px rgba(212, 175, 55, .23);
}
.btn-gold:hover { box-shadow: 0 14px 34px rgba(212, 175, 55, .34); }

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .06);
}

.btn-glass {
  color: #fff;
  border-color: rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255, 255, 255, .17); }

.hero {
  position: relative;
  width: 100%;
  height: min(calc(100svh - 76px), 44.9707vw);
  min-height: 560px;
  margin-top: 76px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: contain;
  object-position: center;
  animation: heroEntrance 1.4s ease-out both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 16, 28, .95) 0%, rgba(5, 18, 31, .84) 34%, rgba(5, 18, 31, .28) 67%, rgba(5, 18, 31, .08) 100%),
    linear-gradient(0deg, rgba(5, 18, 31, .55), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(690px, 90%);
  margin-left: clamp(24px, 7.5vw, 150px);
  padding: 120px 0 76px;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #9b7420;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 35px;
  height: 1px;
  background: currentColor;
}
.eyebrow-light { color: var(--gold-light); }

.hero h1,
.section-heading h2,
.journey-copy h2,
.final-cta h2 {
  font-family: "Playfair Display", Georgia, serif;
}

.hero h1 {
  max-width: 650px;
  margin: 18px 0;
  font-size: clamp(2.7rem, 5.4vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.hero h1 em { color: var(--gold-light); font-style: normal; }

.hero-content > p {
  max-width: 585px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1rem, 1.4vw, 1.17rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .68);
  font-size: .82rem;
}
.hero-note svg { width: 16px; color: var(--gold-light); }

.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .62);
  text-decoration: none;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.hero-scroll svg { width: 18px; animation: bob 1.8s ease-in-out infinite; }

.section {
  padding: clamp(76px, 9vw, 128px) max(24px, calc((100vw - 1200px) / 2));
}

.welcome {
  background:
    radial-gradient(circle at 15% 20%, rgba(212, 175, 55, .09), transparent 27%),
    var(--paper);
}

.section-heading { max-width: 720px; margin-bottom: 45px; }
.section-heading.centered { margin: 0 auto 54px; text-align: center; max-width: 850px; }
.section-heading.centered .eyebrow { justify-content: center; }

.section-heading h2,
.journey-copy h2 {
  margin: 13px 0 15px;
  color: var(--navy);
  font-size: clamp(2rem, 3.7vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.section-heading p,
.journey-copy > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .7);
}
.value-icon,
.feature-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #916d17;
  background: #f8edc9;
}
.value-icon svg, .feature-icon svg { width: 22px; height: 22px; }
.value h3 { margin: 18px 0 8px; color: var(--navy); font-size: 1.06rem; }
.value p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.65; }

.features-section { background: #f1f4f5; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  position: relative;
  min-height: 410px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  border: 1px solid #e0e5e8;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(13, 27, 42, .045);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover,
.feature-card:focus-visible {
  transform: translateY(-5px);
  border-color: #d8c07c;
  box-shadow: var(--shadow);
  outline: none;
}

.feature-card-wide {
  grid-column: span 2;
  min-height: 400px;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: center;
  gap: 36px;
}

.feature-kicker {
  margin-top: 24px;
  color: #9b7420;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin: 8px 0 11px;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.14;
}
.feature-card p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.65;
}
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--navy);
  font-size: .83rem;
  font-weight: 700;
}
.feature-link svg { width: 16px; transition: transform .2s ease; }
.feature-card:hover .feature-link svg { transform: translate(2px, -2px); }

.feature-dark {
  color: #fff;
  border-color: var(--navy);
  background:
    radial-gradient(circle at 85% 15%, rgba(212, 175, 55, .2), transparent 30%),
    linear-gradient(145deg, var(--navy-2), var(--navy));
}
.feature-dark h3, .feature-dark .feature-link { color: #fff; }
.feature-dark p { color: rgba(255, 255, 255, .69); }
.feature-dark .feature-kicker { color: var(--gold-light); }
.feature-dark .feature-icon { background: rgba(255, 255, 255, .1); color: var(--gold-light); }
.feature-warm { background: linear-gradient(140deg, #fffdf9, #f8efd7); }

.mock {
  width: 100%;
  border-radius: 17px;
  box-shadow: 0 22px 45px rgba(13, 27, 42, .18);
  overflow: hidden;
}
.mock-people { padding-bottom: 12px; background: #f7f9fb; transform: rotate(1.2deg); }
.mock-top {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  background: var(--navy);
}
.mock-top span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255, 255, 255, .35); }
.people-list { padding: 8px 12px 0; }
.people-list > div {
  display: grid;
  grid-template-columns: 38px 1fr 20px;
  align-items: center;
  gap: 11px;
  padding: 12px;
  margin-top: 7px;
  border: 1px solid #e9edf0;
  border-radius: 10px;
  background: #fff;
}
.people-list b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #7b5f17;
  background: #f5e8bb;
  font-size: .72rem;
}
.people-list span { display: flex; flex-direction: column; gap: 2px; }
.people-list strong { font-size: .76rem; color: var(--navy); }
.people-list small { color: #8a95a3; font-size: .63rem; }
.people-list svg { width: 16px; color: #49a271; }

.mini-chart {
  width: 100%;
  height: 105px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
  margin: 28px 0 5px;
  padding: 14px 14px 0;
  border-bottom: 1px solid #dfe5e8;
  background: linear-gradient(180deg, rgba(241, 244, 245, .6), transparent);
}
.mini-chart span {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #e2c35f, #b78a1c);
}

.approval-flow {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 34px 0 5px;
}
.approval-flow span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}
.approval-flow span.done { color: var(--navy); background: var(--gold-light); }
.approval-flow span svg { width: 20px; }
.approval-flow b { flex: 1; height: 1px; background: rgba(255, 255, 255, .24); }

.asset-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 28px; }
.asset-tags span {
  padding: 7px 11px;
  border: 1px solid #e1e6e8;
  border-radius: 999px;
  color: #677487;
  background: #f7f9fa;
  font-size: .72rem;
  font-weight: 600;
}

.mock-docs { display: grid; place-items: center; min-height: 285px; box-shadow: none; }
.doc-sheet {
  width: min(350px, 82%);
  min-height: 255px;
  padding: 29px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 24px 45px rgba(93, 69, 16, .15);
  transform: rotate(2deg);
}
.doc-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 21px;
  border-radius: 10px;
  color: #8e6c18;
  background: #f7ebc6;
}
.doc-mark svg { width: 20px; }
.doc-sheet > b { display: block; color: var(--navy); font-size: .85rem; }
.doc-sheet > i {
  display: block;
  height: 6px;
  margin-top: 12px;
  border-radius: 99px;
  background: #e8ecef;
}
.doc-sheet > i.short { width: 64%; }
.doc-sheet > small {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 31px;
  color: #418760;
  font-size: .65rem;
  font-weight: 700;
}
.doc-sheet > small svg { width: 14px; }

.normas-showcase {
  grid-template-columns: .9fr 1.1fr;
  min-height: 650px;
  padding: clamp(30px, 4vw, 54px);
  gap: clamp(34px, 5vw, 72px);
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 175, 55, .17), transparent 28%),
    linear-gradient(140deg, #fffdf9, #f7efd9);
}

.normas-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.normas-showcase h3 {
  max-width: 620px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.normas-hierarchy {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 24px;
}

.normas-hierarchy > div {
  min-height: 82px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(13, 27, 42, .09);
  border-radius: 11px;
  background: rgba(255, 255, 255, .72);
}

.normas-hierarchy > div > svg {
  width: 32px;
  height: 32px;
  padding: 8px;
  border-radius: 9px;
  color: #866515;
  background: #f7eabc;
}

.normas-hierarchy span,
.normas-presentation span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.normas-hierarchy strong {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: .93rem;
}

.normas-hierarchy small {
  color: #697586;
  font-size: .68rem;
  line-height: 1.4;
}

.normas-presentation {
  width: 100%;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  padding: 13px 15px;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, #18354d, #0d1b2a);
}

.normas-presentation > svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 10px;
  color: var(--gold-light);
  background: rgba(255, 255, 255, .09);
}

.normas-presentation strong { font-size: .78rem; }
.normas-presentation small {
  color: rgba(255, 255, 255, .63);
  font-size: .65rem;
  line-height: 1.4;
}

.normas-screen {
  position: relative;
  align-self: center;
  width: 100%;
  margin: 0;
  padding: 37px 9px 36px;
  overflow: hidden;
  border: 1px solid rgba(13, 27, 42, .13);
  border-radius: 16px;
  background: #0d1b2a;
  box-shadow: 0 28px 55px rgba(13, 27, 42, .22);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
  transition: transform .3s ease, box-shadow .3s ease;
}

.normas-showcase:hover .normas-screen {
  transform: perspective(1200px) rotateY(0) rotateX(0) translateY(-3px);
  box-shadow: 0 34px 65px rgba(13, 27, 42, .28);
}

.normas-screen img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 7px;
  background: #f2f4f7;
}

.normas-screen-bar,
.normas-screen figcaption {
  position: absolute;
  left: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .67);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.normas-screen-bar { top: 11px; }
.normas-screen figcaption { bottom: 11px; justify-content: center; margin: 0; }
.normas-screen-bar svg,
.normas-screen figcaption svg { width: 13px; height: 13px; color: var(--gold-light); }

.church-nodes {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 35px 0 5px;
  color: #8b6b1b;
}
.church-nodes > svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 50%;
  background: #f7ebc6;
}
.church-nodes > span { flex: 1; height: 1px; background: #ded7c4; }

.journey {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  background: var(--paper);
}
.journey-visual {
  position: relative;
  min-height: 490px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px;
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
  text-align: center;
  background: linear-gradient(145deg, #18354d, #0b1928);
}
.journey-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(212, 175, 55, .2);
  filter: blur(65px);
}
.journey-visual > svg { position: relative; width: 55px; height: 55px; color: var(--gold-light); }
.journey-visual blockquote {
  position: relative;
  max-width: 350px;
  margin: 34px 0 17px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1.35;
}
.journey-visual > span {
  position: relative;
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.journey-copy ol { list-style: none; margin: 30px 0 0; padding: 0; }
.journey-copy li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.journey-copy li > span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #775914;
  background: #f5e8bd;
  font-size: .75rem;
  font-weight: 700;
}
.journey-copy li div { display: flex; flex-direction: column; gap: 4px; }
.journey-copy li strong { color: var(--navy); font-size: .94rem; }
.journey-copy li small { color: var(--muted); font-size: .83rem; line-height: 1.5; }

.final-cta {
  position: relative;
  padding: clamp(85px, 11vw, 145px) 24px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 20% 0%, rgba(212, 175, 55, .25), transparent 36%),
    radial-gradient(circle at 85% 100%, rgba(51, 105, 145, .35), transparent 35%),
    var(--navy);
}
.final-cta-inner { position: relative; max-width: 850px; margin: auto; }
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 {
  margin: 17px 0;
  font-size: clamp(2.25rem, 4.7vw, 4.35rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.final-cta p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .7);
  font-size: 1rem;
  line-height: 1.7;
}
.final-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 31px; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px 30px;
  padding: 42px clamp(24px, 6vw, 90px);
  color: rgba(255, 255, 255, .62);
  background: #07131f;
}
.site-footer img { width: 105px; }
.site-footer p { margin: 0; font-size: .82rem; }
.site-footer div { grid-column: 2; grid-row: 1 / span 2; display: flex; gap: 25px; }
.site-footer a { color: rgba(255, 255, 255, .7); text-decoration: none; font-size: .78rem; }
.site-footer a:hover { color: var(--gold-light); }
.site-footer small { font-size: .68rem; color: rgba(255, 255, 255, .42); }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Apresentação dentro do SweetAlert */
.selaa-modal.swal2-popup {
  width: min(920px, calc(100vw - 28px));
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
}
.selaa-modal .swal2-html-container { margin: 0; padding: 0; overflow: visible; }
.selaa-modal .swal2-close {
  z-index: 3;
  width: 42px;
  height: 42px;
  color: #fff;
  font-size: 30px;
  text-shadow: none;
}
.feature-modal { text-align: left; }
.feature-modal-head {
  position: relative;
  min-height: 185px;
  padding: 43px 48px 35px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 90% 15%, rgba(212, 175, 55, .32), transparent 32%),
    linear-gradient(135deg, #17344d, #0b1827);
}
.feature-modal-head > i { width: 32px; height: 32px; color: var(--gold-light); }
.feature-modal-head span {
  display: block;
  margin-top: 17px;
  color: var(--gold-light);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.feature-modal-head h2 {
  margin: 6px 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.75rem, 4vw, 2.7rem);
  line-height: 1.1;
}
.feature-modal-body { padding: 35px 48px 42px; }
.feature-modal-body > p { margin: 0 0 23px; color: var(--muted); line-height: 1.7; font-size: .93rem; }
.feature-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 26px;
}
.feature-benefits span {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 11px;
  border-radius: 9px;
  color: #405063;
  background: #f5f7f8;
  font-size: .76rem;
  font-weight: 600;
  line-height: 1.35;
}
.feature-benefits svg { flex: 0 0 auto; width: 15px; height: 15px; color: #a27c20; }
.screen-demo {
  margin: 0;
  overflow: hidden;
  border: 1px solid #dfe5e8;
  border-radius: 13px;
  background: #f5f7f9;
  box-shadow: 0 12px 30px rgba(13, 27, 42, .09);
}
.screen-demo-bar {
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  color: rgba(255, 255, 255, .8);
  background: var(--navy);
  font-size: .65rem;
}
.screen-demo-dots { display: flex; gap: 4px; }
.screen-demo-dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, .4); }
.screen-demo-content { display: grid; grid-template-columns: 125px 1fr; min-height: 210px; }
.screen-demo-nav { padding: 14px 10px; background: #18334a; }
.screen-demo-nav i { display: block; width: 75%; height: 7px; margin: 0 0 11px; border-radius: 99px; background: rgba(255, 255, 255, .13); }
.screen-demo-main { padding: 18px; }
.demo-title { width: 42%; height: 10px; margin-bottom: 18px; border-radius: 99px; background: #293e50; }
.demo-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.demo-stats i { height: 44px; border-radius: 7px; border: 1px solid #e0e5e8; background: #fff; }
.demo-table { margin-top: 10px; padding: 3px 10px; border-radius: 7px; background: #fff; }
.demo-table i { display: block; height: 6px; margin: 10px 0; border-radius: 99px; background: #e7ebee; }
.screen-demo-real img {
  display: block;
  width: 100%;
  height: auto;
}
.modal-closing {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 23px;
  color: #695116;
  font-size: .8rem;
  font-weight: 700;
}
.modal-closing svg { width: 17px; }
.selaa-modal .swal2-actions { margin: 0 48px 36px; }
.selaa-modal-confirm {
  min-height: 44px;
  padding: 0 23px;
  border: 0;
  border-radius: 9px;
  color: #fff;
  background: var(--navy);
  font: 700 .83rem "DM Sans", sans-serif;
  cursor: pointer;
}

@keyframes heroEntrance {
  from { opacity: .55; transform: scale(1.045); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: rgba(8, 23, 37, .98);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .25);
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a:not(.btn) { padding: 12px; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 16, 28, .94), rgba(5, 18, 31, .55)),
      linear-gradient(0deg, rgba(5, 18, 31, .65), transparent);
  }
  .values { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr; }
  .journey-visual { min-height: 420px; }
}

@media (max-width: 700px) {
  .site-header { height: 66px; padding-inline: 18px; }
  .brand img { width: 105px; }
  .hero {
    height: auto;
    min-height: 760px;
    margin-top: 66px;
    align-items: flex-end;
  }
  .hero-image { object-fit: cover; object-position: 62% center; }
  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(4, 14, 24, .97) 5%, rgba(4, 16, 28, .83) 55%, rgba(4, 16, 28, .3)),
      linear-gradient(90deg, rgba(4, 16, 28, .7), transparent);
  }
  .hero-content {
    width: auto;
    margin: 0;
    padding: 110px 23px 92px;
  }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-scroll { display: none; }
  .section { padding-inline: 20px; }
  .section-heading.centered { text-align: left; }
  .section-heading.centered .eyebrow { justify-content: flex-start; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card,
  .feature-card-wide { grid-column: auto; min-height: 390px; padding: 26px; }
  .feature-card-wide { display: flex; }
  .feature-card-wide .mock { margin-top: 28px; }
  .mock-docs { display: none; }
  .normas-showcase { min-height: auto; }
  .normas-hierarchy { grid-template-columns: 1fr; }
  .normas-screen { margin-top: 30px; transform: none; }
  .journey-visual { min-height: 380px; padding: 32px 24px; }
  .final-actions { flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .site-footer div { grid-column: auto; grid-row: auto; flex-wrap: wrap; justify-content: center; }
  .feature-modal-head { padding: 36px 25px 27px; }
  .feature-modal-body { padding: 25px; }
  .feature-benefits { grid-template-columns: 1fr; }
  .screen-demo-content { grid-template-columns: 72px 1fr; }
  .selaa-modal .swal2-actions { margin: 0 25px 27px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Compatibilidade com a tela simples de cadastro, que também usa este arquivo. */
body.selaa-home {
  min-height: 100vh;
  color: #fff;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(212, 175, 55, .18), transparent 45%),
    linear-gradient(160deg, #0d1b2a 0%, #1a2f45 55%, #0a1520 100%);
}
.selaa-home-hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 18vh 24px 48px;
  text-align: center;
}
.selaa-home-hero h1 {
  margin: 8px 0 12px;
  font: 700 clamp(2.8rem, 8vw, 4.5rem)/1.1 "Playfair Display", Georgia, serif;
}
.selaa-home-lead { color: rgba(255, 255, 255, .82); font-size: 1.1rem; line-height: 1.5; }
body.selaa-home .Cl_btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 9px;
  color: #0d1b2a;
  background: linear-gradient(135deg, #f1d374, #d4af37);
  font-weight: 700;
  text-decoration: none;
}
