:root {
  --ink: #0a1829;
  --ink-2: #13243a;
  --blue: #335cff;
  --blue-soft: #eef3ff;
  --green: #58a82e;
  --green-dark: #407f1f;
  --text: #2c384a;
  --muted: #647184;
  --line: #dce4ee;
  --paper: #f7f9fc;
  --surface: #ffffff;
  --shadow: 0 24px 70px rgba(10, 24, 41, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  clip: auto;
  left: 16px;
  top: 16px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 228, 238, 0.86);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: 208px;
}

.brand-logo {
  width: 208px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a {
  transition: color 0.18s ease, background 0.18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.nav-cta,
.button-primary {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 14px 32px rgba(88, 168, 46, 0.25);
}

.button-secondary {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.nav-cta:hover,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -12% -36% 42%;
  height: 420px;
  background: linear-gradient(135deg, rgba(51, 92, 255, 0.16), rgba(88, 168, 46, 0.14));
  transform: skewY(-8deg);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 70px;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: 76px 0 92px;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 4.1rem;
  line-height: 1.02;
  font-weight: 950;
}

.hero-subtitle {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.hero-proof div {
  min-height: 132px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(10, 24, 41, 0.06);
}

.hero-proof strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.93rem;
}

.lead-card {
  width: 100%;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.lead-card-head img {
  width: auto;
  height: 50px;
}

.lead-card-head span {
  display: block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-card-head strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 1.42rem;
  line-height: 1.2;
}

.lead-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 850;
}

.lead-form input,
.lead-form select,
.story-form input,
.story-form select,
.story-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #f9fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus,
.story-form input:focus,
.story-form select:focus,
.story-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(51, 92, 255, 0.12);
}

.lead-form small,
.story-form small {
  color: var(--muted);
  font-size: 0.78rem;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: -42px auto 0;
  position: relative;
  z-index: 3;
}

.service-strip article {
  min-height: 178px;
  padding: 26px;
  color: #ffffff;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(10, 24, 41, 0.18);
}

.service-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: var(--green);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.service-strip h2 {
  margin: 20px 0 0;
  color: #ffffff;
  font-size: 1.42rem;
  line-height: 1.15;
}

.service-strip p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: 94px 0;
}

.section-white {
  background: #ffffff;
}

.section-intro {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto 42px;
  text-align: center;
}

.section-intro.align-left {
  width: auto;
  margin: 0;
  text-align: left;
}

.section h2,
.final-cta h2,
.split-layout h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.55rem;
  line-height: 1.08;
  font-weight: 950;
}

.section-intro > p:not(.eyebrow),
.split-layout p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.feature-grid article,
.document-grid article,
.lawyer-panel,
.faq-list details {
  border-radius: 8px;
}

.feature-grid article {
  min-height: 246px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(10, 24, 41, 0.05);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
  font-size: 0.82rem;
}

.feature-grid h3,
.document-grid h3,
.process-list h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.2;
}

.feature-grid p,
.document-grid p,
.process-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.process-section {
  color: #ffffff;
  background:
    linear-gradient(135deg, #0a1829 0%, #10243d 58%, #163322 100%);
}

.process-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 58px;
  align-items: start;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.process-section h2,
.process-section .section-intro > p:not(.eyebrow),
.process-list h3 {
  color: #ffffff;
}

.process-section .section-intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.process-list h3 {
  margin: 0;
}

.process-list p {
  color: rgba(255, 255, 255, 0.72);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--blue);
  font-weight: 900;
  border-bottom: 2px solid var(--green);
}

.lawyer-panel {
  padding: 28px;
  color: #ffffff;
  background: var(--ink);
}

.lawyer-panel strong {
  display: block;
  font-size: 1.28rem;
}

.lawyer-panel ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.lawyer-panel li {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.experience-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(10, 24, 41, 0.93), rgba(10, 24, 41, 0.78)),
    url("assets/people-advisor.jpg") center center / cover no-repeat;
}

.experience-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 56px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.experience-copy h2,
.experience-copy p {
  color: #ffffff;
}

.experience-copy h2 {
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.08;
  font-weight: 950;
}

.experience-copy > p {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.experience-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.experience-notes article {
  min-height: 132px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.experience-notes strong,
.experience-notes span {
  display: block;
}

.experience-notes strong {
  color: #ffffff;
}

.experience-notes span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.story-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 850;
}

.story-form textarea {
  resize: vertical;
}

.location-section {
  background:
    linear-gradient(180deg, #ffffff, #f7f9fc);
}

.location-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 40px;
  align-items: stretch;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.location-card {
  padding: 32px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(10, 24, 41, 0.06);
}

.location-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 950;
}

.location-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.location-card dl {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.location-card dl div {
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.location-card dt {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.location-card dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 850;
}

.map-panel {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(10, 24, 41, 0.12), rgba(10, 24, 41, 0.72)),
    url("assets/people-analysis.jpg") center center / cover no-repeat;
  border-radius: 8px;
  overflow: hidden;
}

.map-panel::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}

.map-panel > * {
  position: relative;
  z-index: 1;
}

.map-pin {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 16px;
  color: #ffffff;
  background: var(--green);
  border-radius: 50%;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(88, 168, 46, 0.35);
}

.map-panel strong,
.map-panel span {
  display: block;
}

.map-panel strong {
  font-size: 1.6rem;
  line-height: 1.1;
}

.map-panel span {
  max-width: 300px;
  margin: 8px auto 0;
  color: rgba(255, 255, 255, 0.78);
}

.document-section {
  color: #ffffff;
  background: var(--paper);
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.document-grid article {
  min-height: 214px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
}

.faq-list details {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(10, 24, 41, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 84px;
  padding: 42px;
  color: #ffffff;
  background:
    radial-gradient(680px 360px at 88% -20%, rgba(76, 111, 238, 0.42), transparent 60%),
    radial-gradient(520px 320px at 4% 120%, rgba(109, 178, 62, 0.28), transparent 58%),
    linear-gradient(120deg, #0a1829 0%, #0d2036 55%, #0a1829 100%);
  border-radius: 8px;
}

.final-cta h2,
.final-cta p {
  color: #ffffff;
}

.final-cta p:not(.eyebrow) {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px max(20px, calc((100% - 1180px) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.site-footer img {
  width: 190px;
  margin-bottom: 12px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffffff;
  font-weight: 900;
}

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.05);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.55);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

@media (max-width: 1040px) {
  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
    border-radius: 8px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--paper);
  }

  .hero-shell,
  .process-shell,
  .split-layout,
  .experience-shell,
  .location-shell {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
    gap: 42px;
  }

  .lead-card {
    max-width: 560px;
  }

  .service-strip,
  .feature-grid,
  .document-grid,
  .experience-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .hero-shell,
  .service-strip,
  .section-intro,
  .feature-grid,
  .experience-shell,
  .location-shell,
  .process-shell,
  .split-layout,
  .document-grid,
  .faq-list,
  .final-cta {
    width: min(100% - 28px, 1180px);
  }

  .brand,
  .brand-logo {
    width: 154px;
  }

  .hero-shell {
    padding: 54px 0 70px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 248, 255, 0.94)),
      url("assets/people-hero.jpg") center top / auto 320px no-repeat,
      linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions,
  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .lead-form .button,
  .final-cta .button {
    width: 100%;
  }

  .hero-proof,
  .service-strip,
  .feature-grid,
  .document-grid,
  .experience-notes {
    grid-template-columns: 1fr;
  }

  .service-strip {
    margin-top: -22px;
  }

  .section {
    padding: 68px 0;
  }

  .section h2,
  .final-cta h2,
  .split-layout h2 {
    font-size: 1.9rem;
  }

  .process-list article {
    grid-template-columns: 1fr;
  }

  .lead-card,
  .story-form,
  .location-card,
  .final-cta {
    padding: 22px;
  }

  .experience-copy h2,
  .location-card h2 {
    font-size: 1.9rem;
  }

  .map-panel {
    min-height: 320px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .wa-float {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }

  .wa-float svg {
    width: 27px;
    height: 27px;
  }
}

/* =====================================================================
   SECOES INSPIRADAS NA REFERENCIA (verificacao, videos, FAQ, canais)
   ===================================================================== */

/* Verificacao / confianca */
.trust-section {
  background: var(--paper);
}
.verify-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.verify-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(10, 24, 41, 0.05);
}
.verify-tag {
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(76, 111, 238, 0.1);
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.verify-card h3 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 1.28rem;
}
.verify-card > p {
  margin: 8px 0 0;
  color: var(--muted);
}
.cnpj-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 0;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: 12px;
}
.cnpj-box strong {
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.copy-cnpj {
  padding: 8px 14px;
  color: #ffffff;
  background: var(--blue);
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease;
}
.copy-cnpj:hover {
  background: var(--blue-dark);
}
.copy-cnpj.copied {
  background: var(--green-dark);
}
.rating-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 18px 0 0;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.rating-box strong {
  color: var(--ink);
  font-size: 1.9rem;
  line-height: 1;
}
.rating-box .stars {
  color: #f5a623;
  font-size: 1.05rem;
  letter-spacing: 2px;
}
.rating-box small {
  color: var(--muted);
}
.verify-card .text-link {
  margin-top: auto;
  padding-top: 18px;
}
.verify-note {
  width: min(1180px, calc(100% - 40px));
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

/* Videos */
.video-section {
  color: #ffffff;
  background: linear-gradient(135deg, var(--ink) 0%, #102541 58%, #182d22 100%);
}
.video-section .section-intro h2 {
  color: #ffffff;
}
.video-section .section-intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.video-card {
  display: flex;
  flex-direction: column;
  padding-bottom: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.video-card:hover {
  transform: translateY(-5px);
  border-color: rgba(76, 111, 238, 0.5);
}
.video-thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #14263d, #0a1829);
}
.video-thumb .play {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  font-size: 1.1rem;
  box-shadow: 0 10px 24px rgba(76, 111, 238, 0.4);
}
.video-card strong {
  margin: 14px 20px 0;
  color: #ffffff;
  font-size: 1.08rem;
}
.video-meta {
  margin: 4px 20px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

/* Etiqueta de categoria no FAQ */
.faq-tag {
  display: inline-block;
  margin-right: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(76, 111, 238, 0.1);
  color: var(--blue-dark);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

/* Canais oficiais / anti-fraude */
.channels-section {
  color: #ffffff;
  background: var(--ink);
}
.channels-section .section-intro h2 {
  color: #ffffff;
}
.channels-section .section-intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}
.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.channels-grid article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
}
.channels-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.channels-grid strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 1.12rem;
  overflow-wrap: anywhere;
}
.channels-warn {
  width: min(1180px, calc(100% - 40px));
  margin: 22px auto 0;
  padding: 16px 20px;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: 12px;
  color: #ffe4b3;
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 900px) {
  .verify-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }
  .channels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .channels-grid {
    grid-template-columns: 1fr;
  }
  .cnpj-box {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .copy-cnpj {
    width: 100%;
  }
}

/* Hero media (imagem do comprovante de Pix) */
.hero-media {
  position: relative;
  justify-self: end;
  width: 100%;
}
.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(10, 24, 41, 0.22);
}
.hero-media-caption {
  margin: 12px 2px 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

/* Mockup de celular: comprovante de Pix recebido */
.pix-phone {
  width: 100%;
  max-width: 318px;
  margin: 0 auto;
  padding: 12px;
  background: linear-gradient(160deg, #14263d, #0a1829);
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 36px 80px rgba(10, 24, 41, 0.4);
}
.pix-screen {
  overflow: hidden;
  background: #ffffff;
  border-radius: 33px;
}
.pix-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 22px 6px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
}
.pix-sigs {
  letter-spacing: 1px;
}
.pix-topbar {
  padding: 12px 20px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
}
.pix-back {
  margin-right: 6px;
  opacity: 0.85;
}
.pix-body {
  padding: 24px 20px 22px;
  text-align: center;
}
.pix-check {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 2px auto 0;
  border-radius: 50%;
  background: #1db954;
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(29, 185, 84, 0.35);
}
.pix-ok {
  margin: 14px 0 0;
  color: #1a9c46;
  font-size: 1.06rem;
  font-weight: 800;
}
.pix-sub {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}
.pix-amount {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 1.95rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.pix-details {
  display: grid;
  gap: 13px;
  margin: 18px 0 0;
  padding: 18px 0 4px;
  border-top: 1px solid #eef2f7;
  text-align: left;
}
.pix-details dt {
  color: #8a97a8;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.pix-details dd {
  margin: 3px 0 0;
  color: #26364a;
  font-size: 0.82rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.pix-btn-outline,
.pix-btn-solid {
  display: block;
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 800;
  text-align: center;
}
.pix-btn-outline {
  color: #26364a;
  border: 1px solid #dbe4ee;
}
.pix-btn-solid {
  color: #ffffff;
  background: var(--ink);
}

/* Secao do formulario (movido do hero) */
.lead-section {
  background: var(--paper);
}
.lead-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: 54px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.lead-intro h2 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 2.3rem;
  line-height: 1.1;
  font-weight: 900;
}
.lead-intro > p {
  margin: 16px 0 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
}
.lead-benefits {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.lead-benefits li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
}
.lead-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.85);
}

@media (max-width: 900px) {
  .lead-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-media {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* Foto na secao Para advogados */
.advogados-media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(10, 24, 41, 0.18);
}
.advogados-copy .lawyer-panel {
  margin-top: 28px;
  border-radius: 16px;
}

@media (max-width: 860px) {
  .split-layout {
    grid-template-columns: 1fr;
  }
}

/* =====================================================================
   PRO THEME PASS 2026-07-13 — tipografia, paleta navy+laranja, profundidade
   ===================================================================== */
:root {
  --ink: #0B1B33;
  --ink-2: #16233c;
  --orange: #EA7B1F;
  --orange-dark: #CE6912;
  --text: #2A3547;
  --muted: #6B7688;
  --line: #E9EDF3;
  --paper: #F6F8FC;
  --shadow: 0 18px 50px rgba(11, 27, 51, 0.10);
  --card-shadow: 0 6px 28px rgba(11, 27, 51, 0.07);
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--text);
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3,
.hero h1, .section h2, .final-cta h2, .lead-intro h2,
.panel-head strong, .lead-card-head strong, .brand strong {
  font-family: 'Sora', 'Inter', system-ui, sans-serif;
  letter-spacing: -0.02em;
}

/* Titulos: pesos elegantes (menos 900) */
.hero h1 { font-weight: 800; font-size: 3.65rem; line-height: 1.07; }
.section h2, .final-cta h2 { font-weight: 700; font-size: 2.35rem; line-height: 1.12; }
.lead-intro h2, .experience-copy h2, .location-card h2, .split-layout h2 { font-weight: 700; }
.hero-subtitle, .section-intro > p:not(.eyebrow) { font-weight: 400; }

/* Eyebrow -> laranja da marca, tracking maior */
.eyebrow {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.section-dark .eyebrow, .final-cta .eyebrow,
.video-section .eyebrow, .channels-section .eyebrow,
.process-section .eyebrow, .experience-section .eyebrow { color: var(--orange); }
.panel-head span, .lead-card-head span, .info-card span, .verify-tag {
  color: var(--orange);
}

/* CTAs primarios -> laranja (verde so no WhatsApp) */
.button-primary {
  background: linear-gradient(180deg, #F2871E 0%, #E0701A 100%);
  box-shadow: 0 10px 24px rgba(234, 123, 31, 0.30);
}
.button-primary:hover, .button-primary:focus-visible {
  background: linear-gradient(180deg, #F79225 0%, #D9690F 100%);
  box-shadow: 0 14px 30px rgba(234, 123, 31, 0.40);
}
.nav-cta { background: var(--orange); border-color: transparent; }
.nav-cta:hover, .nav-cta:focus-visible { background: var(--orange-dark); }
.text-link { color: var(--orange-dark); border-bottom-color: var(--orange); }

/* Botoes: forma refinada */
.button { border-radius: 12px; min-height: 52px; font-weight: 700; letter-spacing: 0.01em; }

/* Header mais limpo */
.site-header { background: rgba(255,255,255,0.85); backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid rgba(11,27,51,0.06); }
.site-nav { font-weight: 600; color: #55617a; }
.site-nav a:hover { color: var(--ink); }

/* Profundidade sutil, menos borda dura, raios consistentes */
.hero-proof div, .info-card, .steps article, .feature-grid article,
.verify-card, .lead-card, .faq-list details, .lawyer-panel,
.channels-grid article, .document-grid article, .video-card, .lead-panel {
  border-radius: 16px;
}
.hero-proof div, .info-card, .steps article, .feature-grid article,
.verify-card, .faq-list details {
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
}
.lead-card { border: 1px solid var(--line); box-shadow: 0 24px 60px rgba(11,27,51,0.12); }
.trust-strip { border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }

/* Cards hover mais suave/orange */
.info-card:hover, .steps article:hover, .feature-grid article:hover, .verify-card:hover {
  transform: translateY(-4px);
  border-color: rgba(234,123,31,0.35);
  box-shadow: 0 18px 44px rgba(11,27,51,0.12);
}

/* Numeros dos passos -> laranja */
.steps span, .process-list span { background: linear-gradient(135deg, #F2871E, #E0701A); box-shadow: 0 8px 20px rgba(234,123,31,0.3); }
.steps article:nth-child(even) span { background: linear-gradient(135deg, var(--ink), var(--ink-2)); box-shadow: 0 8px 20px rgba(11,27,51,0.25); }

/* Feature icons refinados */
.feature-icon { background: rgba(234,123,31,0.10); color: var(--orange-dark); }

/* Mais respiro nas secoes */
.section { padding: 104px 0; }
.section-intro { margin-bottom: 46px; }
@media (max-width: 640px) { .section { padding: 72px 0; } }

/* Inputs mais suaves */
.lead-form input, .lead-form select, .story-form input, .story-form select, .story-form textarea {
  border-radius: 12px; border-color: var(--line); background: #fbfcfe;
}
.lead-form input:focus, .lead-form select:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(234,123,31,0.12);
}

/* Botao WhatsApp (verde) permanece so no float e onde e explicitamente WA */

/* Ajustes finais de cor: remover azuis remanescentes */
.copy-cnpj { background: var(--orange); }
.copy-cnpj:hover { background: var(--orange-dark); }
.copy-cnpj.copied { background: #2a9d4e; }
.faq-tag { background: rgba(234, 123, 31, 0.10); color: var(--orange-dark); }
.service-strip span { background: linear-gradient(135deg, #F2871E, #E0701A); }
.video-thumb .play { background: linear-gradient(135deg, #F2871E, #E0701A); box-shadow: 0 10px 24px rgba(234,123,31,0.4); }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--orange-dark); }

/* Remapeia todo o azul remanescente da base para a paleta laranja */
:root {
  --blue: #E0701A;
  --blue-dark: #CE6912;
  --blue-soft: #FCEFE3;
}
.map-pin { background: linear-gradient(135deg, #F2871E, #E0701A) !important; }
