:root {
  --purple-950: #25112f;
  --purple-900: #351842;
  --purple-800: #4b2460;
  --purple-100: #f4edf8;
  --green-950: #1f3b26;
  --green-900: #3f6f35;
  --green-800: #5f8f43;
  --green-100: #edf6ef;
  --sand: #f7f2e9;
  --ink: #24142d;
  --muted: #6f6078;
  --line: #e4ddea;
  --white: #fff;
  --shadow: 0 24px 80px rgba(10, 34, 20, 0.12);
  --radius: 26px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
a {
  color: inherit;
}
.container {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 80px;
}
.section {
  padding: 108px 0;
  position: relative;
  overflow: hidden;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--purple-950);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 10;
}
.skip-link:focus {
  left: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 8;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 229, 220, 0.8);
}
.header-grid {
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.05;
}
.brand small {
  font-weight: 500;
  color: var(--muted);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--purple-950);
  color: #fff;
  letter-spacing: -0.06em;
}
.desktop-nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 16px;
}
.desktop-nav a {
  text-decoration: none;
}
.desktop-nav a:hover {
  color: var(--green-900);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: 0.25s ease;
  white-space: nowrap;
}
.btn-small {
  padding: 10px 18px;
  background: var(--purple-950);
  color: #fff;
  font-size: 14px;
}
.btn-main {
  padding: 21px 32px;
  background: var(--purple-950);
  color: #fff;
  box-shadow: 0 14px 28px rgba(53, 24, 66, 0.22);
  font-size: 15px;
}
.btn-main:hover,
.btn-small:hover {
  transform: translateY(-2px);
  background: var(--purple-800);
}
.btn-light {
  padding: 21px 32px;
  background: #fff;
  color: var(--purple-950);
  font-size: 15px;
}
.text-link {
  font-weight: 800;
  color: var(--green-900);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.eyebrow {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-800);
  margin: 0 0 12px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(42px, 6vw, 80px);
  line-height: 0.92;
  letter-spacing: -0.075em;
  margin-bottom: 22px;
}
@media (max-width: 1550px) {
  h1 {
    font-size: clamp(42px, 6vw, 60px);
  }
}
h2 {
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}
h3 {
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
p {
  font-size: 20px;
}
.subtitle {
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.22;
  max-width: 760px;
  color: #1f2a25;
}
.support {
  font-size: 21px;
  max-width: 760px;
  color: var(--muted);
  margin-bottom: 30px;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 98px;
  background: linear-gradient(180deg, #fff 0%, #fbf7fd 58%, #f8fbf8 100%);
}

.hero:before {
  content: "";
  position: absolute;
  left: -120px;
  top: 120px;
  width: 420px;
  height: 420px;
  border: 2px solid rgba(53, 24, 66, 0.08);
  border-radius: 52% 48% 60% 40%;
  transform: rotate(-28deg);
  pointer-events: none;
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto -10% -36% -10%;
  height: 54%;
  background: radial-gradient(
    ellipse at center,
    rgba(95, 143, 67, 0.2),
    transparent 62%
  );
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 70px;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
}
.trust-row span {
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
}
.field-badge span {
  font-size: 18px;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-wrapper {
  position: relative;
  width: 100%;

  min-height: 620px;
}
.hero-bg-image {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 32px;
}
.field-card {
  position: relative;
  width: min(100%, 560px);
  height: 610px;
  border-radius: 36px;
  background: linear-gradient(155deg, #dbe9d8, #fff 38%, #c9dec7);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.field-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      transparent 45%,
      rgba(19, 63, 42, 0.12) 45.3%,
      transparent 46%
    ),
    linear-gradient(
      153deg,
      transparent 55%,
      rgba(19, 63, 42, 0.18) 55.2%,
      transparent 56%
    );
}
.field-lines {
  position: absolute;
  left: -40px;
  right: -40px;
  bottom: 70px;
  height: 190px;
  background: repeating-linear-gradient(
    164deg,
    rgba(8, 33, 19, 0.17) 0 2px,
    transparent 2px 20px
  );
  transform: skewY(-8deg);
  opacity: 0.9;
}
.law-card {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 44px rgba(8, 33, 19, 0.1);
}
.law-card strong {
  display: block;
  font-size: 22px;
  letter-spacing: -0.04em;
}
.law-card span {
  color: var(--muted);
}
.section-heading {
  max-width: 740px;
}
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 34px;
}
.card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(10, 34, 20, 0.04);
  transition: 0.25s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.icon {
  display: inline-flex;
  color: var(--green-900);
  font-weight: 900;
  margin-bottom: 36px;
}
.card p,
.copy-block p,
.authority p,
.quote,
.step p,
.faq p,
.footer p {
  color: var(--muted);
}
.center {
  text-align: center;
  margin-top: 34px;
}
.split-section {
  background: var(--sand);
}
.split-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
}
.copy-block {
  font-size: 22px;
}
.copy-block p {
  max-width: 900px;
}
.authority-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: center;
}
.photo-placeholder {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #f4f1ed;
}

.advogados-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.lawyer-photo-board {
  width: 100%;
  max-width: 720px;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.56fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.lawyer-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: linear-gradient(
    145deg,
    var(--purple-950),
    #351842 58%,
    var(--green-950)
  );
  border: 1px solid rgba(96, 42, 124, 0.12);
  box-shadow: 0 18px 44px rgba(39, 18, 51, 0.08);
}
.lawyer-photo:after {
  content: "";
  position: absolute;
  inset: auto -20% -28% -20%;
  height: 52%;
  background: repeating-linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.12) 0 2px,
    transparent 2px 18px
  );
  pointer-events: none;
}
.lawyer-photo-main {
  grid-row: 1 / 3;
  border-radius: 32px;
}
.lawyer-photo-main:before {
  content: "";
  position: absolute;
  left: 26px;
  top: 26px;
  right: 26px;
  bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  pointer-events: none;
  z-index: 1;
}
.lawyer-photo-portrait {
  border-radius: 24px;
}
.lawyer-photo-main .advogados-img {
  max-height: 600px;
  object-position: center top;
}
.lawyer-photo-top .advogados-img {
  max-height: 290px;
  object-position: center;
}
.lawyer-photo-bottom .advogados-img {
  max-height: 290px;
  object-position: center;
}
.photo-placeholder:after {
  content: "";
  position: absolute;
  inset: auto -20% -25% -20%;
  height: 58%;
  background: repeating-linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.14) 0 2px,
    transparent 2px 18px
  );
}
.photo-placeholder span {
  position: relative;
  z-index: 1;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
  font-size: 18px;
}
.check-list li:before {
  content: "✓";
  margin-right: 10px;
  color: var(--green-800);
  font-weight: 900;
}
.proof {
  background: #fbfcfb;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.quote {
  margin: 0;
  padding: 36px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 20px;
}
.quote cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 14px;
  color: var(--green-900);
  font-weight: 800;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step {
  padding: 38px;
  border-left: 1px solid var(--line);
}
.step span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 900;
  margin-bottom: 20px;
}
.faq {
  background: #f6f8f6;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
}
.accordion {
  display: grid;
  gap: 12px;
  font-size: 20px;
}
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
}
summary {
  cursor: pointer;
  font-weight: 800;
}
summary::marker {
  color: var(--green-800);
}
details p {
  margin: 12px 0 0;
}
.final-cta {
  padding-top: 60px;
}
.final-box {
  text-align: center;
  border-radius: 44px;
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  color: #fff;
  padding: 58px 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.final-box:before {
  content: "";
  position: absolute;
  inset: -70% -20% auto -20%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.16),
    transparent 58%
  );
}
.final-box h2,
.final-box p,
.final-box a {
  position: relative;
}
.final-box h2 {
  max-width: 820px;
  margin-inline: auto;
}
.final-box p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}
.footer {
  padding: 42px 0;
  background: #0c120f;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
}
.footer p {
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0;
}

.floating-whatsapp {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9;
  background: var(--green-900);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(8, 33, 19, 0.3);
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.22s;
}
.pulse {
  animation: pulse 2.8s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 14px 28px rgba(19, 63, 42, 0.22);
  }
  50% {
    box-shadow: 0 20px 40px rgba(19, 63, 42, 0.36);
  }
}
@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }
  .header-grid {
    grid-template-columns: 1fr auto;
  }
  .section {
    padding: 58px 0;
  }
  .hero {
    padding-top: 42px;
  }
  .hero-grid,
  .split-grid,
  .authority-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-visual {
    min-height: auto;
  }
  .field-card {
    height: 360px;
    border-radius: 28px;
  }
  .cards-3,
  .testimonials,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .step {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .photo-placeholder {
    min-height: 340px;
  }
  h1 {
    font-size: 48px;
  }
  .btn-main,
  .btn-light {
    width: 100%;
    text-align: center;
  }
  .floating-whatsapp {
    left: 18px;
    text-align: center;
  }
  .footer {
    padding-bottom: 86px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Detalhes minimalistas em verde folha */
.section-heading:after {
  content: "";
  display: block;
  width: 88px;
  height: 5px;
  border-radius: 999px;
  background: var(--green-800);
  margin-top: 24px;
}
.pain-section:before,
.steps-section:before,
.proof:before {
  content: "";
  position: absolute;
  right: 80px;
  top: 52px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(95, 143, 67, 0.28);
  border-radius: 36px;
  transform: rotate(14deg);
  pointer-events: none;
}
.split-section:after,
.faq:after {
  content: "";
  position: absolute;
  left: 80px;
  bottom: 44px;
  width: 180px;
  height: 180px;
  background: repeating-linear-gradient(
    135deg,
    rgba(95, 143, 67, 0.18) 0 2px,
    transparent 2px 18px
  );
  border-radius: 50%;
  opacity: 0.6;
  pointer-events: none;
}
.card,
.quote,
details,
.step {
  position: relative;
  overflow: hidden;
}
.card:after,
.quote:after,
details:after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(95, 143, 67, 0.1);
}
.brand {
  font-size: 18px;
  color: var(--purple-950);
}
.desktop-nav a {
  font-weight: 700;
  color: var(--purple-950);
}
.brand small {
  color: var(--purple-800);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 960px) {
  .container {
    padding-inline: 20px;
  }
  .section {
    padding: 70px 0;
  }
  .hero {
    padding-top: 56px;
    padding-bottom: 72px;
  }
  .hero:before {
    left: -210px;
    top: 110px;
  }
  .hero-grid,
  .split-grid,
  .authority-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hero-visual {
    min-height: auto;
  }
  .field-card {
    height: 390px;
    border-radius: 28px;
    width: 100%;
  }
  .cards-3,
  .testimonials,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .step {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .photo-placeholder {
    min-height: 360px;
  }
  .lawyer-photo-board {
    max-width: none;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
    gap: 12px;
  }
  .lawyer-photo-main {
    grid-column: 1 / 3;
    grid-row: auto;
    aspect-ratio: 4 / 3;
    border-radius: 28px;
  }
  .lawyer-photo-portrait {
    aspect-ratio: 1 / 1;
    border-radius: 20px;
  }
  .lawyer-photo-main:before {
    left: 18px;
    top: 18px;
    right: 18px;
    bottom: 18px;
    border-radius: 22px;
  }
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 46px;
  }
  h3 {
    font-size: 26px;
  }
  .subtitle {
    font-size: 24px;
  }
  .support {
    font-size: 19px;
  }
  .copy-block {
    font-size: 19px;
  }
  .btn-main,
  .btn-light {
    width: 100%;
    text-align: center;
  }
  .floating-whatsapp {
    left: 20px;
    right: 20px;
    text-align: center;
  }
  .footer {
    padding-bottom: 92px;
  }
  .pain-section:before,
  .steps-section:before,
  .proof:before {
    right: 20px;
    top: 24px;
    width: 80px;
    height: 80px;
  }
  .split-section:after,
  .faq:after {
    left: 20px;
    width: 90px;
    height: 90px;
  }
}

/* Ajustes v3: identidade Lenz e Ribeiro + elementos agrários elegantes */
:root {
  --purple-950: #602a7c;
  --purple-900: #602a7c;
  --purple-800: #764094;
  --purple-100: #f4edf8;
  --green-950: #17381f;
  --green-900: #3f6f35;
  --green-800: #5f8f43;
  --green-100: #edf6ef;
  --line: #e7ddeb;
  --ink: #271233;
  --muted: #65536d;
}
body {
  background: #fffdfb;
}
.site-header {
  box-shadow: 0 10px 30px rgba(96, 42, 124, 0.04);
}
.brand-mark {
  background: transparent;
  color: var(--purple-950);
  font-size: 34px;
  border: 2px solid rgba(96, 42, 124, 0.18);
}
.brand-mark i {
  line-height: 1;
}
.brand {
  letter-spacing: -0.02em;
}
.btn-main,
.btn-small {
  background: var(--purple-950);
  box-shadow: 0 16px 32px rgba(96, 42, 124, 0.22);
}
.btn-main:hover,
.btn-small:hover {
  background: #4f2069;
}
.btn-light:hover {
  transform: translateY(-2px);
  color: #4f2069;
}
.hero {
  background: linear-gradient(180deg, #fff 0%, #fbf8fc 45%, #f7faf5 100%);
}
.hero:before {
  border-color: rgba(96, 42, 124, 0.12);
}
.hero:after {
  background: radial-gradient(
    ellipse at center,
    rgba(95, 143, 67, 0.18),
    transparent 62%
  );
}
.hero-copy:before {
  content: "";
  position: absolute;
  left: -38px;
  top: -28px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(95, 143, 67, 0.22);
  border-radius: 24px;
  transform: rotate(15deg);
  z-index: -1;
}
.field-card {
  background: linear-gradient(150deg, #f4f1f7 0%, #fff 34%, #dfeedd 100%);
  border: 1px solid rgba(96, 42, 124, 0.08);
}
.field-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 78% 16%,
      rgba(96, 42, 124, 0.12),
      transparent 24%
    ),
    radial-gradient(circle at 16% 76%, rgba(95, 143, 67, 0.14), transparent 26%);
}
.field-lines {
  background: repeating-linear-gradient(
    164deg,
    rgba(63, 111, 53, 0.22) 0 2px,
    transparent 2px 18px
  );
}
.field-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 30px rgba(39, 18, 51, 0.08);
  backdrop-filter: blur(14px);
  font-weight: 800;
  color: var(--purple-950);
  font-size: 14px;
}
.field-badge i {
  color: var(--green-800);
  font-size: 18px;
}
.field-badge.top {
  left: 28px;
  top: 34px;
}
.field-badge.mid {
  right: 28px;
  top: 130px;
}
.field-badge.bottom {
  left: 28px;
  top: 226px;
}
.law-card {
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-items: center;
}
.law-card i {
  grid-row: 1/3;
  color: var(--green-800);
  font-size: 34px;
}
.law-card strong,
.law-card span {
  grid-column: 2;
}
.section:before {
  z-index: 0;
}
.container {
  position: relative;
  z-index: 1;
}
.section-heading:after {
  background: linear-gradient(90deg, var(--purple-950), var(--green-800));
}
.card {
  min-height: 100%;
  padding: 44px;
  background: linear-gradient(180deg, #fff 0%, #fffdff 100%);
}
.card .icon {
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--purple-100);
  color: var(--purple-950);
  font-size: 28px;
  margin-bottom: 24px;
}
.card-number {
  position: absolute;
  right: 28px;
  top: 24px;
  font-size: 52px;
  line-height: 1;
  font-weight: 900;
  color: rgba(96, 42, 124, 0.08);
  letter-spacing: -0.08em;
}
.card h3 {
  position: relative;
  z-index: 2;
}
.card p {
  position: relative;
  z-index: 2;
}
.card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--purple-950), var(--green-800));
  opacity: 0.9;
}
.card:after {
  background: rgba(95, 143, 67, 0.09);
}
.split-section {
  background: linear-gradient(135deg, #f7f2e9 0%, #faf7fb 100%);
}
.split-section .copy-block {
  position: relative;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(96, 42, 124, 0.08);
}
.copy-block:before {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(95, 143, 67, 0.28);
  border-radius: 16px;
  transform: rotate(18deg);
}
.photo-placeholder {
  background: linear-gradient(
    145deg,
    var(--purple-950),
    #351842 58%,
    var(--green-950)
  );
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.photo-placeholder:before {
  content: "";
  position: absolute;
  left: 26px;
  top: 26px;
  right: 26px;
  bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
}
.photo-placeholder:after {
  background: repeating-linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.12) 0 2px,
    transparent 2px 18px
  );
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ink);
}
.check-list li:before {
  display: none;
}
.check-list i {
  color: var(--green-800);
  font-size: 20px;
}
.quote {
  border-top: 4px solid var(--green-800);
}
.quote:before {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: var(--purple-950);
  margin-bottom: 20px;
}
.steps {
  position: relative;
}
.steps:before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 64px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--green-800),
    transparent
  );
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(96, 42, 124, 0.04);
}
.step span {
  background: var(--purple-100);
  color: var(--purple-950);
}
.step-icon {
  display: block;
  color: var(--green-800);
  font-size: 34px;
  margin-bottom: 16px;
}
details {
  box-shadow: 0 10px 26px rgba(96, 42, 124, 0.04);
}
summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  display: grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--purple-100);
  color: var(--purple-950);
  font-weight: 900;
}
details[open] summary:after {
  content: "−";
  background: var(--green-100);
  color: var(--green-900);
}
.final-cta {
  padding: 108px 0;
}
.final-box {
  padding: 80px;
  border-radius: 46px;
  background: linear-gradient(
    135deg,
    var(--purple-950) 0%,
    #3b174d 52%,
    var(--green-950) 100%
  );
  text-align: left;
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 42px;
  align-items: center;
}
.final-box:after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 46% 54% 58% 42%;
  transform: rotate(-18deg);
}
.final-box h2 {
  margin-left: 0;
  margin-right: 0;
  max-width: 940px;
}
.final-box p {
  max-width: 760px;
}
.final-detail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 70px);
  gap: 12px;
}
.final-detail i {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 28px;
}
.footer {
  border-top: 5px solid var(--green-800);
  background: #13091a;
}
.floating-whatsapp {
  background: var(--green-900);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
@media (max-width: 860px) {
  .hero-copy:before {
    left: auto;
    right: 0;
    top: -24px;
    width: 82px;
    height: 82px;
  }
  .field-badge {
    font-size: 12px;
    padding: 9px 11px;
  }
  .field-badge.top {
    left: 18px;
    top: 20px;
  }
  .field-badge.mid {
    right: 18px;
    top: 88px;
  }
  .field-badge.bottom {
    left: 18px;
    top: 156px;
  }
  .field-badge span {
    font-size: 12px;
  }
  .law-card i {
    font-size: 28px;
  }
  .card {
    padding: 34px 28px;
  }
  .steps:before {
    display: none;
  }
  .final-cta {
    padding: 70px 0;
  }
  .final-box {
    padding: 40px 24px;
    grid-template-columns: 1fr;
    text-align: left;
    border-radius: 30px;
  }
  .final-detail {
    grid-template-columns: repeat(3, 58px);
  }
  .final-detail i {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 23px;
  }
}

/* ===== Marca d'água do Hero ===== */

/* Remove os elementos decorativos antigos */
.hero:before {
  display: none;
}

.hero-copy:before {
  display: none;
}

/* Logo ao fundo do título */
.hero-copy::after {
  content: "";
  position: absolute;
  left: -250px;
  top: -100px;
  width: 700px;
  height: 700px;
  background: url("logo-fundo.png") center/contain no-repeat;
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 860px) {
  .hero-copy::after {
    left: -120px;
    top: -60px;
    width: 520px;
    height: 520px;
    opacity: 0.08;
  }
}
/* Ajuste cards da seção Como funciona */
.steps {
  margin-top: 38px; /* distância dos cards para a linha superior */
}

.step {
  position: relative;
  padding-top: 56px;
}

.step span {
  position: absolute;
  top: 38px;
  left: 38px;
  margin-bottom: 0;
}

.step-icon {
  position: absolute;
  top: 44px;
  right: 38px;
  margin-bottom: 0;
}

.step h3 {
  margin-top: 65px;
}
/* ===== Depoimentos Google ===== */

.quote {
  position: relative;
}

.quote p {
  margin-bottom: 28px;
}

.quote cite {
  display: block;
  margin-top: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--purple-950);
}

.quote-stars {
  display: flex;
  gap: 4px;
  margin-top: 8px;
  color: #fbbc04;
  font-size: 15px;
}

.quote-google {
  position: absolute;
  top: 26px;
  right: 26px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #fff;
  border: 1px solid #ececec;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.quote-google i {
  font-size: 20px;
  color: #4285f4;
}
.hero-grid,
.hero-copy {
  min-width: 0;
  width: 100%;
}

@media (max-width: 400px) {
  .container {
    width: 100%;
    padding-inline: 16px;
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .hero .subtitle {
    font-size: 20px;
    line-height: 1.45;
    max-width: 100%;
  }

  .hero .support {
    font-size: 17px;
    line-height: 1.65;
    max-width: 100%;
  }

  .btn-main {
    width: 100%;
    max-width: 100%;
    padding: 18px 16px;
    font-size: 13px;
    line-height: 1.3;
    white-space: normal;
    text-align: center;
  }

  .trust-row {
    width: 100%;
  }

  .trust-row span {
    font-size: 12px;
    padding: 7px 10px;
  }
}

/* =========================================================
   NAVBAR PRINCIPAL + DROPDOWN — referência do site institucional
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 4px solid #2f2632;
  border-bottom: 1px solid #ece8ef;
  box-shadow: 0 3px 18px rgba(39, 18, 51, 0.035);
  overflow: visible;
}

.site-header .header-grid {
  height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  line-height: 1;
}

.site-header .brand img {
  display: block;
  width: 132px;
  max-width: 100%;
  height: auto;
}

.site-header .desktop-nav {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 31px;
  color: #3f3a43;
  font-size: 15px;
  overflow: visible;
}

.site-header .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #3f3a43;
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.18s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus-visible,
.site-header .nav-dropdown.is-open > .nav-dropdown-toggle,
.site-header .nav-dropdown:focus-within > .nav-dropdown-toggle {
  color: #4e1f84;
}

.site-header .nav-current {
  color: #3f3a43;
}

.site-header .nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.site-header .nav-dropdown-toggle i {
  font-size: 12px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.site-header .nav-dropdown:hover > .nav-dropdown-toggle i,
.site-header .nav-dropdown:focus-within > .nav-dropdown-toggle i,
.site-header .nav-dropdown.is-open > .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.site-header .nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 310px;
  padding: 18px 12px 12px;
  border: 1px solid #e7e1eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(42, 26, 47, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
  z-index: 1200;
}

/* ponte invisível entre o item e o dropdown para o hover não “cair” */
.site-header .nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.site-header .nav-dropdown:hover > .nav-dropdown-menu,
.site-header .nav-dropdown:focus-within > .nav-dropdown-menu,
.site-header .nav-dropdown.is-open > .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-header .nav-dropdown-title {
  margin: 0 12px 12px;
  color: #777080;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-header .nav-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 46px;
  padding: 11px 12px;
  border-radius: 10px;
  color: #48424d;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  transition:
    color 0.16s ease,
    background-color 0.16s ease;
}

.site-header .nav-dropdown-item i {
  flex: 0 0 auto;
  color: #179245;
  font-size: 13px;
  font-weight: 800;
}

.site-header .nav-dropdown-item:hover,
.site-header .nav-dropdown-item:focus-visible {
  background: #eee7f5;
  color: #5c2a89;
  outline: none;
}

.site-header .nav-dropdown-divider {
  height: 1px;
  margin: 8px 0 4px;
  background: #e5e0e8;
}

.site-header .nav-dropdown-all {
  margin-top: 2px;
}

.site-header .btn-header {
  min-width: 154px;
  min-height: 46px;
  padding: 0 23px;
  border-radius: 999px;
  background: #4f2085;
  color: #fff;
  box-shadow: 0 10px 24px rgba(79, 32, 133, 0.18);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.site-header .btn-header:hover,
.site-header .btn-header:focus-visible {
  background: #42176f;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e6e0e9;
  border-radius: 12px;
  background: #fff;
  color: #4f2085;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .site-header .header-grid {
    gap: 24px;
  }

  .site-header .desktop-nav {
    gap: 22px;
    font-size: 14px;
  }

  .site-header .btn-header {
    min-width: 142px;
    padding-inline: 20px;
  }
}

@media (max-width: 980px) {
  .site-header .header-grid {
    height: 76px;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .site-header .brand img {
    width: 122px;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 2;
  }

  .site-header .btn-header {
    grid-column: 3;
    min-width: 0;
    min-height: 42px;
    padding-inline: 18px;
    font-size: 12px;
  }

  .site-header .desktop-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    width: auto;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    justify-self: auto;
    gap: 0;
    padding: 10px;
    border: 1px solid #e7e1eb;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(42, 26, 47, 0.16);
    z-index: 1200;
  }

  .site-header.nav-open .desktop-nav {
    display: flex;
  }

  .site-header .nav-link {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding: 0 12px;
    border-radius: 10px;
  }

  .site-header .nav-link:hover,
  .site-header .nav-link:focus-visible {
    background: #f6f1f9;
  }

  .site-header .nav-dropdown {
    width: 100%;
    display: block;
  }

  .site-header .nav-dropdown-menu {
    display: none;
    position: static;
    width: 100%;
    padding: 14px 8px 8px;
    margin: 2px 0 7px;
    border: 0;
    border-radius: 14px;
    box-shadow: none;
    background: #fbf9fc;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .site-header .nav-dropdown-menu::before {
    display: none;
  }

  .site-header .nav-dropdown:hover > .nav-dropdown-menu,
  .site-header .nav-dropdown:focus-within > .nav-dropdown-menu {
    display: none;
    transform: none;
  }

  .site-header .nav-dropdown.is-open > .nav-dropdown-menu,
  .site-header .nav-dropdown.is-open:focus-within > .nav-dropdown-menu {
    display: block;
    transform: none;
  }

  .site-header .nav-dropdown-title {
    margin-inline: 10px;
  }
}

@media (max-width: 620px) {
  .site-header .header-grid {
    grid-template-columns: 1fr auto;
  }

  .site-header .btn-header {
    display: none;
  }

  .site-header .desktop-nav {
    left: 14px;
    right: 14px;
  }
}
