:root {
  --brand: #009a9a;
  --brand-dark: #00666a;
  --brand-deep: #053c40;
  --accent: #ff9f22;
  --accent-dark: #e57800;
  --ink: #173033;
  --muted: #617174;
  --soft: #e7f6f5;
  --paper: #f7fbfb;
  --white: #ffffff;
  --line: rgba(0, 102, 106, 0.16);
  --shadow: 0 22px 55px rgba(5, 60, 64, 0.16);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Sans 3", sans-serif;
  font-size: 17px;
  line-height: 1.5;
}

body[data-page="educacao"] {
  --brand: #087f8c;
  --brand-dark: #055f69;
  --soft: #e6f6f8;
}

body[data-page="gestao"] {
  --brand: #005f73;
  --brand-dark: #003f4d;
  --soft: #e4f0f2;
}

body[data-page="saude"] {
  --brand: #00856f;
  --brand-dark: #05604f;
  --soft: #e3f6f1;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Archivo, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2.85rem, 6vw, 5.35rem);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

h1 span {
  display: block;
  max-width: 720px;
}

h1 strong {
  display: block;
  color: var(--accent);
  max-width: 520px;
  font-size: clamp(1.35rem, 2.85vw, 2.46rem);
  line-height: 1.12;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.6vw, 4.1rem);
  font-weight: 900;
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.26rem;
  line-height: 1.12;
}

.topbar {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px max(18px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.logo {
  width: 154px;
  min-width: 154px;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--brand-deep);
  font-family: Archivo, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
}

.topbar nav a:hover {
  color: var(--brand);
}

.topbar-button {
  min-width: max-content;
  padding: 12px 17px;
  color: var(--white);
  background: var(--brand);
  border-radius: 999px;
  font-family: Archivo, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 48%, rgba(255, 255, 255, 0.18), transparent 26%),
    radial-gradient(circle at 28% 18%, rgba(255, 159, 34, 0.18), transparent 28%),
    linear-gradient(108deg, var(--brand-deep) 0%, var(--brand-dark) 36%, var(--brand) 72%, #13b9ad 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  z-index: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.55) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.hero::after {
  position: absolute;
  right: -9vw;
  bottom: -18vw;
  width: 42vw;
  min-width: 360px;
  aspect-ratio: 1;
  content: "";
  background: rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.hero-dotted-surface {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.42;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(calc(100% - 40px), var(--max));
  min-height: 580px;
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.84fr) minmax(430px, 0.92fr);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 70px) 0 0;
}

.pill,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  padding: 7px 13px;
  color: var(--brand-deep);
  background: var(--white);
  border-radius: 999px;
  font-family: Archivo, sans-serif;
  font-size: 0.79rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pill {
  margin-bottom: 18px;
}

.hero-note {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy h2 {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(1.5rem, 2.65vw, 2.38rem);
  line-height: 1.08;
}

.hero-badges {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
}

.hero-badges span {
  position: relative;
  display: block;
  padding-left: 22px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-badges span::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--accent);
  content: "✓";
  font-family: Archivo, sans-serif;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: Archivo, sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  transform: none;
  box-shadow: none;
}

.button:disabled::after {
  animation: none;
}

.button-primary {
  position: relative;
  min-height: 72px;
  padding: 20px 40px;
  overflow: hidden;
  color: #20150a;
  background: linear-gradient(135deg, #ffc154, var(--accent));
  box-shadow:
    0 22px 40px rgba(255, 159, 34, 0.4),
    0 0 0 8px rgba(255, 159, 34, 0.12);
}

.button-primary::after {
  position: absolute;
  top: -30%;
  left: -42%;
  width: 34%;
  height: 160%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: rotate(18deg);
  animation: button-shine 2.8s ease-in-out infinite;
}

@keyframes button-shine {

  0%,
  42% {
    left: -42%;
  }

  68%,
  100% {
    left: 120%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button-primary::after {
    animation: none;
  }
}

.button-ghost {
  min-height: auto;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.button-ghost:hover {
  color: var(--accent);
  transform: none;
}

.legal-line {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 580px;
}

.hero-visual::before {
  position: absolute;
  right: -92px;
  bottom: -72px;
  width: 108%;
  aspect-ratio: 1.1;
  content: "";
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.2), transparent 43%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.03));
  border-radius: 58% 42% 0 42%;
}

.hero-visual::after {
  position: absolute;
  right: -2%;
  bottom: -8px;
  width: 74%;
  height: 18px;
  content: "";
  background: rgba(5, 60, 64, 0.22);
  border-radius: 999px;
  filter: blur(16px);
}

.hero-image-wrap {
  position: absolute;
  right: -75%;
  bottom: -1px;
  overflow: visible;
  width: min(250%, 1950px);
  height: calc(100% + 74px);
  pointer-events: none;
  filter: drop-shadow(0 34px 38px rgba(5, 60, 64, 0.32));
}

.hero-image-wrap::before {
  position: absolute;
  inset: 6% -4% 3% 9%;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(ellipse at 58% 42%, rgba(255, 255, 255, 0.34), transparent 52%),
    radial-gradient(ellipse at 60% 90%, rgba(0, 102, 106, 0.42), transparent 48%);
  border-radius: 50%;
  filter: blur(4px);
  mix-blend-mode: screen;
}

.hero-image-wrap::after {
  position: absolute;
  inset: auto 11% 0 16%;
  z-index: -1;
  height: 18px;
  pointer-events: none;
  content: "";
  background: rgba(5, 60, 64, 0.28);
  border-radius: 999px;
  filter: blur(14px);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: saturate(1.03) contrast(1.02);
}

.hero-proof {
  position: absolute;
  z-index: 2;
  left: -42px;
  bottom: 150px;
  min-width: 158px;
  padding: 16px 18px;
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-proof-alt {
  left: auto;
  right: -10px;
  bottom: 330px;
}

.hero-proof strong {
  display: block;
  color: var(--brand);
  font-family: Archivo, sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.benefits,
.reputation-section,
.areas,
.mec-proof {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 112px) 0;
}

.section-title {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-title .section-kicker {
  margin-bottom: 14px;
  color: var(--white);
  background: var(--brand);
}

.section-title h2 {
  color: var(--brand-deep);
}

.benefit-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.benefit-grid article {
  min-height: 250px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(5, 60, 64, 0.06);
}

.benefit-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 34px;
  color: var(--white);
  background: var(--brand);
  border-radius: 50%;
  font-family: Archivo, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
}

.benefit-grid p,
.lead-copy p,
.reputation-copy p,
.form-footnote,
.areas p,
.mec-proof p {
  color: var(--muted);
}

.reputation-section {
  display: grid;
  align-items: center;
  gap: clamp(18px, 4vw, 38px);
  grid-template-columns: minmax(0, 1fr) auto;
  padding-top: 0;
  padding-bottom: clamp(44px, 6vw, 74px);
}

.reputation-copy .section-kicker {
  min-height: 28px;
  margin-bottom: 10px;
  padding: 5px 10px;
  color: var(--white);
  background: var(--brand);
  font-size: 0.7rem;
}

.reputation-copy h2 {
  max-width: 620px;
  color: var(--brand-deep);
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
  line-height: 1.06;
  margin-bottom: 10px;
}

.reputation-copy p {
  max-width: 660px;
  margin-bottom: 0;
  font-size: 0.98rem;
}

.rep-highlight {
  color: var(--brand);
}

.rep-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 22px 0 26px;
  padding: 18px 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.rep-stat-item {
  flex: 1;
  text-align: center;
}

.rep-stat-item strong {
  display: block;
  color: var(--brand);
  font-family: Archivo, sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}

.rep-stat-item span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.rep-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
  flex-shrink: 0;
}

.rep-cta {
  min-width: 280px;
}

.reputation-card {
  display: grid;
  min-height: auto;
  place-items: center;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid rgba(0, 102, 106, 0.12);
  border-radius: 12px;
  box-shadow: 0 22px 50px rgba(5, 60, 64, 0.1);
}

.reputation-card-label {
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: Archivo, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  width: 100%;
}

.reputation-card-hint {
  margin: 10px 0 0;
  color: var(--brand);
  font-family: Archivo, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#reputation-ra {
  display: grid;
  width: auto;
  min-width: 180px;
  min-height: 74px;
  place-items: center;
}

.lead-section {
  position: relative;
  display: grid;
  width: 100%;
  gap: clamp(28px, 6vw, 80px);
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 0.82fr);
  padding: clamp(70px, 9vw, 110px) max(20px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at 74% 72%, rgba(0, 154, 154, 0.22), transparent 34%),
    linear-gradient(135deg, var(--brand-deep), var(--brand-dark)),
    var(--brand-deep);
}

.section-dotted-surface {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.72;
  pointer-events: none;
  mix-blend-mode: screen;
}

.section-dotted-surface canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.lead-copy,
.lead-form {
  position: relative;
  z-index: 1;
}

.lead-copy {
  color: var(--white);
}

.lead-section-light {
  scroll-margin-top: 86px;
}

.lead-section-light .lead-copy h2 {
  color: var(--brand-deep);
}

.lead-section-light .lead-subtext {
  color: var(--muted);
}

.lead-section-light .check-list li {
  color: var(--brand-deep);
}

.lead-urgency-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 14px;
  color: var(--accent);
  background: rgba(255, 159, 34, 0.14);
  border: 1px solid rgba(255, 159, 34, 0.32);
  border-radius: 999px;
  font-family: Archivo, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lead-urgency-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.6s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.lead-copy .section-kicker {
  margin-bottom: 16px;
  color: var(--brand-deep);
  background: var(--accent);
}

.lead-copy h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.4vw, 3rem);
}

.lead-subtext {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.lead-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
}

.lead-live-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  padding: 5px 11px;
  background: rgba(76, 175, 80, 0.18);
  border: 1px solid rgba(76, 175, 80, 0.35);
  border-radius: 999px;
}

.lead-live-dot {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.lead-live-label {
  color: #6fcf72;
  font-family: Archivo, sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.lead-social-proof p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.3;
}

.lead-social-proof p strong {
  color: var(--accent);
  font-family: Archivo, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.check-list,
.compare-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  margin: 24px 0;
}

.check-list li,
.compare-card li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "✓";
  color: var(--accent);
  font-family: Archivo, sans-serif;
  font-weight: 900;
}

.faal-card li::before,
.other-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: Archivo, sans-serif;
  font-weight: 900;
}

.faal-card li::before {
  color: var(--accent);
  content: "✓";
}

.other-card li::before {
  color: rgba(255, 255, 255, 0.62);
  content: "–";
}

.important {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.lead-form {
  display: grid;
  justify-self: end;
  width: min(100%, 560px);
  gap: 11px 14px;
  grid-template-columns: 1fr;
  padding: clamp(26px, 3.4vw, 38px);
  background:
    linear-gradient(180deg, rgba(4, 68, 60, 0.92), rgba(4, 55, 50, 0.96)),
    radial-gradient(circle at 76% 4%, rgba(57, 211, 165, 0.18), transparent 34%),
    var(--brand-deep);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  box-shadow:
    0 34px 90px rgba(2, 37, 34, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.form-header,
.form-benefits,
.lead-form fieldset,
.lead-form .button-full,
.form-footnote,
.form-status {
  grid-column: 1 / -1;
}

.form-header {
  display: grid;
  gap: 16px;
  justify-items: center;
  padding-bottom: 2px;
  text-align: center;
}

.form-header h3 {
  width: 100%;
  max-width: 440px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.02rem, 1.68vw, 1.34rem);
  line-height: 1.12;
}

.form-header p {
  width: 100%;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: Archivo, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.form-benefits {
  display: grid;
  gap: 7px;
  margin: 0 0 13px;
  padding: 0;
  list-style: none;
}

.form-benefits li {
  position: relative;
  min-height: 18px;
  padding-left: 24px;
  color: var(--white);
  font-family: Archivo, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.form-benefits li::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  color: var(--accent);
  content: "✓";
  font-size: 0.75rem;
  font-weight: 900;
}

.lead-form label,
.lead-form legend {
  color: var(--white);
  font-family: Archivo, sans-serif;
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
  font-weight: 900;
  line-height: 1.16;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 58px;
  margin-top: 8px;
  padding: 0 20px;
  color: #111b1c;
  background: #edf4ff;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 20px rgba(0, 0, 0, 0.08);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.lead-form select {
  background: #ffffff;
}

.lead-form input::placeholder,
.area-outros-input::placeholder {
  color: rgba(17, 27, 28, 0.45);
  font-weight: 700;
}

.area-outros-input {
  margin-top: 8px;
  animation: slide-down 0.22s ease;
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lead-form input:focus,
.lead-form select:focus {
  background: #ffffff;
  border-color: var(--accent);
  box-shadow:
    0 0 0 4px rgba(57, 211, 165, 0.2),
    0 14px 30px rgba(0, 0, 0, 0.16);
}

.lead-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.lead-form fieldset legend {
  font-size: clamp(0.9rem, 1.18vw, 1.04rem);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 9px;
}

.radio-group label {
  position: relative;
  display: inline-flex;
  min-height: auto;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 0;
  color: var(--white);
  font-size: 0.9rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: color 160ms ease, transform 160ms ease;
}

.radio-group label:hover {
  transform: translateY(-1px);
  color: var(--accent);
}

.radio-group input {
  width: 17px;
  min-height: 17px;
  margin: 0;
  accent-color: #0072ff;
}

.radio-group label:has(input:checked) {
  color: var(--white);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.button-full {
  width: 100%;
  min-height: 62px;
  margin-top: 4px;
  border-radius: 24px;
  font-size: 0.92rem;
}

.form-footnote,
.form-status {
  margin: 0;
  text-align: center;
  font-size: 0.68rem;
}

.form-status {
  min-height: 20px;
  color: var(--accent);
  font-weight: 800;
}

.form-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  grid-column: 1 / -1;
  margin-top: 2px;
}

.form-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.66rem;
  font-weight: 700;
}

.form-trust svg {
  color: var(--accent);
  flex-shrink: 0;
}

.area-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

.area-grid button {
  min-height: 56px;
  padding: 12px 16px;
  color: var(--brand-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  text-align: left;
  transition: background 170ms ease, color 170ms ease, transform 170ms ease, border-color 170ms ease;
}

.area-grid button:hover,
.area-grid button.is-selected {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-2px);
}

.area-cta,
.compare-cta {
  margin-top: 28px;
}

.compare-cta {
  display: flex;
  width: max-content;
  min-width: 310px;
  margin: 34px auto 0;
}

.comparison {
  padding: clamp(70px, 9vw, 112px) max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(135deg, var(--brand-dark), var(--brand-deep));
}

.section-title-light .section-kicker {
  margin-bottom: 14px;
  color: var(--brand-deep);
  background: var(--accent);
}

.section-title-light h2 {
  color: var(--white);
}

.compare-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}

.compare-card {
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius);
}

.faal-card {
  color: var(--brand-deep);
  background: var(--white);
  box-shadow: 0 22px 54px rgba(255, 159, 34, 0.13);
}

.other-card {
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.other-card h3 {
  color: rgba(255, 255, 255, 0.9);
}

.compare-card h3 {
  font-size: 1.8rem;
}

.compare-card li {
  color: var(--muted);
  font-weight: 700;
}

.other-card li {
  color: rgba(255, 255, 255, 0.64);
}

.emec-proof {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 112px) 0;
}

.emec-proof-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.emec-proof-heading .section-kicker {
  margin-bottom: 14px;
  color: var(--white);
  background: var(--brand);
}

.emec-proof-heading h2 {
  color: var(--brand-deep);
}

.emec-proof-heading p {
  color: var(--muted);
  margin-bottom: 0;
}

.emec-proof-cards {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  max-width: 760px;
}

.emec-consult-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(5, 60, 64, 0.08);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.emec-consult-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(5, 60, 64, 0.14);
}

.emec-qr-wrap {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  border-radius: 8px;
  overflow: hidden;
}

.emec-qr-wrap img,
.emec-qr-wrap canvas {
  display: block !important;
  width: 130px !important;
  height: 130px !important;
}

.emec-consult-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.emec-brand-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-family: Archivo, sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
}

.emec-consult-body p {
  margin: 0;
  color: var(--brand-deep);
  font-family: Archivo, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.22;
}

.emec-access-cta {
  color: #2e7d32;
  font-family: Archivo, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.emec-recognition-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 34px 26px;
  background: linear-gradient(150deg, #0a2218, #163324);
  border-radius: 16px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.emec-recognition-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.36);
}

.emec-rec-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: Archivo, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.emec-rec-mec {
  display: block;
  color: var(--white);
  font-family: Archivo, sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
}

.emec-rec-stars {
  color: #4caf50;
  font-size: 1.45rem;
  letter-spacing: 4px;
  line-height: 1;
}

.emec-rec-excellence {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
}

.emec-rec-excellence strong {
  display: block;
  color: var(--white);
  font-family: Archivo, sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.emec-rec-excellence span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-family: Archivo, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer {
  display: grid;
  width: min(calc(100% - 40px), var(--max));
  align-items: center;
  gap: 20px;
  grid-template-columns: 170px 1fr;
  margin: 0 auto;
  padding: 34px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 4px 0 0;
}

.footer strong {
  color: var(--brand-deep);
}

/* ================================================
   THANKS PAGE
   ================================================ */

.thanks-page {
  min-height: 100vh;
  background: var(--brand-deep);
}

.thanks-screen {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 22%, rgba(255, 255, 255, 0.13), transparent 28%),
    radial-gradient(circle at 18% 72%, rgba(255, 159, 34, 0.15), transparent 26%),
    radial-gradient(circle at 88% 82%, rgba(0, 154, 154, 0.18), transparent 30%),
    linear-gradient(135deg, var(--brand-deep), var(--brand-dark) 60%, #0c4f54);
}

.thanks-card {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 820px);
  justify-items: center;
  padding: clamp(32px, 5vw, 52px) clamp(24px, 6vw, 64px);
  text-align: center;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  box-shadow:
    0 48px 100px rgba(5, 60, 64, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.thanks-logo {
  width: 136px;
  margin-bottom: 22px;
}

/* Anel de contagem regressiva */
.thanks-ring-wrap {
  margin-bottom: 20px;
}

.thanks-ring-svg {
  width: 96px;
  height: 96px;
  overflow: visible;
}

.thanks-ring-track {
  fill: none;
  stroke: rgba(0, 154, 154, 0.14);
  stroke-width: 5;
}

.thanks-ring-fill {
  fill: none;
  stroke: var(--brand);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 251.3;
  stroke-dashoffset: 0;
  transform: rotate(-90deg);
  transform-origin: 48px 48px;
  animation: ring-drain 8s linear forwards;
}

@keyframes ring-drain {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: 251.3;
  }
}

.thanks-check-mark {
  fill: none;
  stroke: white;
  stroke-width: 5.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: draw-check 0.45s ease-out 0.25s forwards;
}

@keyframes draw-check {
  to {
    stroke-dashoffset: 0;
  }
}

/* Badge de sucesso */
.thanks-success-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
  padding: 6px 15px;
  color: #1b5e20;
  background: #e8f5e9;
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 999px;
  font-family: Archivo, sans-serif;
  font-size: 0.77rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Títulos */
.thanks-card h1 {
  max-width: 620px;
  margin-bottom: 12px;
  color: var(--brand-deep);
  font-size: clamp(1.65rem, 3.8vw, 2.65rem);
  font-weight: 900;
  line-height: 1.06;
  text-transform: none;
}

.thanks-sub {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

/* Passos */
.thanks-steps {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 580px;
  margin-bottom: 28px;
  padding: 20px 18px;
  background: var(--soft);
  border-radius: 12px;
}

.thanks-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.thanks-step strong {
  color: var(--muted);
  font-family: Archivo, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.thanks-step.is-done strong,
.thanks-step.is-active strong {
  color: var(--brand-deep);
}

.thanks-step-ico {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  flex-shrink: 0;
  background: rgba(0, 102, 106, 0.1);
  border-radius: 50%;
  color: var(--muted);
}

.thanks-step-ico svg {
  width: 16px;
  height: 16px;
}

.is-done .thanks-step-ico {
  background: var(--brand);
  color: var(--white);
}

.is-active .thanks-step-ico {
  background: rgba(255, 159, 34, 0.12);
  border: 2px solid rgba(255, 159, 34, 0.35);
}

.thanks-pulse-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: thanks-pulse-ring 1.7s ease-out infinite;
}

.thanks-pulse-core {
  width: 13px;
  height: 13px;
  background: var(--accent);
  border-radius: 50%;
}

@keyframes thanks-pulse-ring {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.9);
  }
}

.thanks-connector {
  flex-shrink: 0;
  width: 36px;
  height: 2px;
  margin-top: 20px;
  background: rgba(0, 102, 106, 0.18);
  border-radius: 2px;
}

.thanks-connector.is-done {
  background: var(--brand);
}

/* WhatsApp CTA */
.thanks-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(100%, 480px);
  margin-bottom: 14px;
  font-size: 1rem;
}

/* Countdown text */
.thanks-countdown-text {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.thanks-countdown-text strong {
  color: var(--brand);
  font-family: Archivo, sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

/* Trust row */
.thanks-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 12px;
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 700;
}

@media (max-width: 540px) {
  .thanks-steps {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .thanks-connector {
    display: none;
  }

  .thanks-step {
    flex: 0 0 calc(33% - 16px);
  }
}

@media (max-width: 980px) {
  .topbar nav {
    display: none;
  }

  .hero-inner,
  .reputation-section,
  .lead-section {
    grid-template-columns: 1fr;
  }

  .emec-proof-cards {
    max-width: 100%;
  }

  .rep-cta {
    min-width: auto;
    width: 100%;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-image-wrap {
    right: -4%;
    bottom: -1px;
    width: min(108%, 560px);
    height: 610px;
  }

  .benefit-grid,
  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .topbar {
    gap: 12px;
    min-height: 66px;
    padding: 10px 14px;
  }

  .logo {
    width: 126px;
    min-width: 126px;
  }

  .topbar-button {
    padding: 10px 12px;
    font-size: 0.72rem;
  }

  .hero-inner,
  .benefits,
  .reputation-section,
  .areas,
  .emec-proof,
  .footer {
    width: min(calc(100% - 28px), var(--max));
  }

  h1 {
    font-size: clamp(2.45rem, 12.5vw, 3.7rem);
  }

  h1 strong {
    font-size: clamp(1.55rem, 8.2vw, 2.3rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .hero-actions,
  .footer {
    align-items: stretch;
  }

  .hero-actions {
    width: 100%;
  }

  /* ---- Lead / formulário mobile ---- */

  .lead-section {
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .lead-section-light {
    gap: 24px;
    padding: 42px 20px 48px;
  }

  /* Formulário sobe para o topo no mobile */
  .lead-form {
    order: -1;
    width: 100%;
    gap: 12px;
    grid-template-columns: 1fr;
    padding: 28px 20px 24px;
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid var(--line);
  }

  .lead-section-light .lead-form {
    order: 0;
    border-radius: 10px;
    box-shadow: 0 24px 56px rgba(2, 37, 34, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  /* Cópia fica abaixo, compacta */
  .lead-copy {
    padding: 28px 20px 36px;
  }

  .lead-urgency-bar {
    font-size: 0.72rem;
    padding: 5px 12px;
  }

  .lead-copy h2 {
    font-size: clamp(1.45rem, 6.5vw, 1.9rem);
    margin-bottom: 10px;
  }

  .lead-subtext {
    font-size: 0.93rem;
    margin-bottom: 14px;
  }

  .check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    margin: 16px 0;
  }

  .check-list li {
    font-size: 0.88rem;
  }

  .lead-social-proof {
    margin-top: 16px;
    padding: 10px 14px;
    gap: 10px;
  }

  .lead-social-proof p {
    font-size: 0.84rem;
  }

  .important {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
  }

  /* Form inputs */
  .lead-form input,
  .lead-form select {
    min-height: 54px;
    font-size: 1rem;
  }

  .radio-group {
    gap: 14px;
  }

  .radio-group label {
    min-height: auto;
    font-size: 0.88rem;
  }

  .form-header h3 {
    font-size: 1.04rem;
  }

  .form-header p {
    font-size: 0.76rem;
  }

  .button-full {
    min-height: 62px;
    width: 100%;
    font-size: 0.9rem;
  }

  .button-primary {
    width: 100%;
  }

  .form-trust {
    gap: 8px;
  }

  .form-trust span {
    font-size: 0.64rem;
  }

  .button-ghost {
    width: auto;
    align-self: center;
  }

  .benefit-grid,
  .area-grid,
  .compare-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .benefit-grid article {
    min-height: auto;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-image-wrap {
    right: -12%;
    bottom: -1px;
    width: min(116%, 460px);
    height: 530px;
  }

  .hero-proof {
    left: 0;
    bottom: 112px;
    min-width: 136px;
    padding: 13px 15px;
  }

  .hero-proof-alt {
    right: 0;
    bottom: 226px;
  }

  .emec-proof-cards {
    grid-template-columns: 1fr;
  }

  .emec-consult-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .emec-qr-wrap {
    width: 110px;
    height: 110px;
  }

  .emec-qr-wrap img,
  .emec-qr-wrap canvas {
    width: 110px !important;
    height: 110px !important;
  }

  .rep-stats-row {
    gap: 0;
    padding: 14px 16px;
  }

  .rep-stat-item strong {
    font-size: 1.45rem;
  }

  .lead-urgency-bar {
    font-size: 0.7rem;
  }

  .form-trust {
    gap: 10px;
  }
}

/* ================================================
   ANIMAÇÕES DE ENTRADA
   ================================================ */

[data-animate] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-in"] {
  transform: none;
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
