:root {
  --bg: #f7faf9;
  --surface: #ffffff;
  --soft: #edf6f4;
  --text: #17312e;
  --muted: #60706d;
  --line: #dce8e5;
  --primary: #0e5f57;
  --primary-dark: #08443e;
  --accent: #d9eee9;
  --shadow: 0 20px 50px rgba(20, 67, 61, .10);
  --radius: 20px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: auto;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(247,250,249,.90);
  border-bottom: 1px solid rgba(220,232,229,.85);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-text strong,
.brand-text small,
.brand strong,
.brand small {
  display: block;
}

.brand small,
.brand-text small {
  color: var(--muted);
  margin-top: -2px;
  letter-spacing: .02em;
}

.brand-mark {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, #0e5f57, #0a4b45);
  box-shadow:
    0 14px 28px rgba(14,95,87,.18),
    inset 0 1px 0 rgba(255,255,255,.14);
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  right: -34px;
  top: -38px;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 65%);
  pointer-events: none;
}

.brand-mark-inner {
  position: relative;
  z-index: 1;
  width: 78%;
  height: 78%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
}

.brand-initial {
  color: #ffffff;
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(0,0,0,.08);
}

.brand-j {
  font-size: 1.65rem;
  transform: translateY(-1px);
}

.brand-r {
  font-size: 1.55rem;
  transform: translateY(1px);
}

.brand-divider {
  width: 1px;
  height: 24px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.15),
    rgba(255,255,255,.72),
    rgba(255,255,255,.15)
  );
  border-radius: 999px;
}

.brand:hover .brand-mark {
  transform: translateY(-1px);
  box-shadow:
    0 18px 34px rgba(14,95,87,.22),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.brand-mark,
.brand-mark::before,
.brand-mark::after {
  transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, #0e5f57, #0a4b45);
  color: white;
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: .04em;
}
.menu {
  display: flex;
  gap: 24px;
  color: #40524f;
  font-size: .95rem;
}

.menu a {
  position: relative;
  padding: 8px 0;
  transition: color .22s ease, transform .22s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}

.menu a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.menu a:hover::after,
.menu a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  padding: 92px 0 76px;
  background:
    radial-gradient(circle at 80% 20%, rgba(217,238,233,.85), transparent 30%),
    linear-gradient(180deg, #f8fbfa, #f4f9f7);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--primary);
  margin-bottom: 14px;
}
h1, h2, h3 { line-height: 1.15; margin-top: 0; }
h1 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  letter-spacing: -.05em;
  margin-bottom: 22px;
  max-width: 900px;
}
h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  letter-spacing: -.035em;
  margin-bottom: 16px;
}
h3 { font-size: 1.22rem; margin-bottom: 10px; }
.lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 720px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0 26px; }

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  background: var(--primary);
  color: white;
  font-weight: 750;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background .22s ease,
    border-color .22s ease;
  box-shadow: 0 10px 24px rgba(14,95,87,.16);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255,255,255,.08) 25%,
    rgba(255,255,255,.28) 50%,
    rgba(255,255,255,.08) 75%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left .5s ease;
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-3px) scale(1.015);
  background: var(--primary-dark);
  box-shadow: 0 16px 32px rgba(14,95,87,.22);
}

.btn:hover::before {
  left: 150%;
}

.btn:active {
  transform: translateY(-1px) scale(.995);
}

.btn:focus-visible,
.menu a:focus-visible {
  outline: 3px solid rgba(14,95,87,.20);
  outline-offset: 4px;
}
.btn-sm { min-height: 42px; padding-inline: 16px; font-size: .92rem; }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-secondary:hover { background: white; }
.btn-light { background: white; color: var(--primary-dark); box-shadow: none; }
.btn-light:hover { background: #f2f7f5; }

.trust-list {
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  list-style: none;
  color: #3f514e;
}
.trust-list li::before {
  content: "✓";
  font-weight: 900;
  color: var(--primary);
  margin-right: 9px;
}
.disclaimer { font-size: .82rem; color: #76837f; margin-top: 18px; max-width: 650px; }

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.card-kicker { color: var(--primary); font-weight: 800; font-size: .78rem; letter-spacing: .12em; }
.hero-card h2 { font-size: 2rem; margin-top: 10px; }
.check-grid { display: grid; gap: 10px; margin-top: 24px; }
.check-grid div {
  padding: 15px 16px;
  background: var(--soft);
  border-radius: 12px;
  font-weight: 650;
}

.section { padding: 90px 0; }
.section-soft { background: var(--soft); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading p, .docs-grid p { color: var(--muted); font-size: 1.04rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 250px;
}
.service-card p { color: var(--muted); margin-bottom: 0; }
.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 24px;
}

.steps { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.step {
  display: flex;
  gap: 18px;
  background: white;
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: var(--radius);
}
.step > span {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 800;
}
.step p { margin: 0; color: var(--muted); }

.docs-grid, .contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.document-box, .contact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.document-box ul { margin: 0; padding-left: 0; list-style: none; display: grid; gap: 12px; }
.document-box li {
  padding: 13px 14px;
  background: var(--soft);
  border-radius: 10px;
}
.document-box li::before { content: "•"; color: var(--primary); font-weight: 900; margin-right: 10px; }

.cta-section { padding: 26px 0 90px; }
.cta-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  border-radius: 28px;
  padding: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}
.cta-box h2 { margin-bottom: 8px; }
.cta-box p { max-width: 720px; color: #dcecea; margin: 0; }
.eyebrow-light { color: #bfe2dd; }

.faq-wrap { max-width: 880px; }
.faq { display: grid; gap: 12px; }
details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
}
summary { cursor: pointer; font-weight: 800; }
details p { color: var(--muted); margin-bottom: 2px; }

.contact-section { padding: 80px 0; background: #eef5f3; }
.contact-meta { color: var(--muted); }
.contact-card p { color: var(--muted); }

footer { padding: 34px 0; border-top: 1px solid var(--line); background: white; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
footer p { color: var(--muted); margin: 4px 0; font-size: .9rem; }

@media (max-width: 900px) {
  .menu { display: none; }
  .hero-grid, .docs-grid, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .cards { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: 1fr; }
  .hero { padding-top: 66px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 26px, 1120px); }
  .nav .btn-sm { display: none; }
  .cards { grid-template-columns: 1fr; }
  .hero-card { padding: 24px; }
  .section { padding: 68px 0; }
  .cta-box { padding: 30px 24px; display: block; }
  .cta-box .btn { margin-top: 22px; width: 100%; }
  .footer-grid { display: block; }
  h1 { font-size: 2.55rem; }
}


/* Microinterações adicionais */
.service-card,
.hero-card,
.document-box,
.contact-card,
details {
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.service-card:hover,
.document-box:hover,
.contact-card:hover {
  transform: translateY(-5px);
  border-color: #c9ddd9;
  box-shadow: 0 18px 38px rgba(20,67,61,.10);
}

details:hover {
  border-color: #c9ddd9;
}

summary {
  transition: color .2s ease;
}

details:hover summary {
  color: var(--primary);
}

/* Respeita usuários que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* Evita a barra de digitação piscando em textos comuns */
body,
a,
button,
section,
div,
p,
span,
h1,
h2,
h3,
li,
summary,
details {
  caret-color: transparent;
}

input,
textarea,
[contenteditable="true"] {
  caret-color: auto;
}


@media (max-width: 640px) {
  .brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .brand-j { font-size: 1.5rem; }
  .brand-r { font-size: 1.42rem; }
  .brand-divider { height: 22px; }

  .brand-text strong {
    font-size: .98rem;
  }

  .brand-text small {
    font-size: .8rem;
  }
}



