:root {
  --green-950: #18251d;
  --green-900: #223326;
  --green-800: #314431;
  --green-700: #45614a;
  --sage-300: #c6d3c1;
  --sage-200: #dde7d9;
  --sand-100: #f5efe6;
  --sand-200: #eadcc9;
  --clay-500: #b9825c;
  --gold-400: #d6b06d;
  --ivory: #fffaf2;
  --white: #ffffff;
  --ink: #1e2822;
  --muted: #657064;
  --line: rgba(34, 51, 38, .14);
  --shadow: 0 24px 70px rgba(24, 37, 29, .14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1120px;
  --header-height: 82px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 12%, rgba(214, 176, 109, .22), transparent 24rem),
    radial-gradient(circle at 86% 10%, rgba(198, 211, 193, .35), transparent 28rem),
    linear-gradient(180deg, rgba(255, 250, 242, .98), rgba(245, 239, 230, .7));
  z-index: -2;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

button, input, textarea, select { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section { padding: 96px 0; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--ivory);
  transition: top .2s ease;
}

.skip-link:focus { top: 16px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 250, 242, .78);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(24, 37, 29, .08);
  background: rgba(255, 250, 242, .94);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--green-900);
  background: linear-gradient(135deg, var(--gold-400), var(--sand-200));
  font-weight: 800;
  letter-spacing: -.04em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45), 0 10px 24px rgba(49, 68, 49, .16);
}

.brand strong,
.brand small { display: block; line-height: 1.2; }
.brand strong { font-size: 1rem; letter-spacing: -.02em; }
.brand small { color: var(--muted); font-size: .78rem; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 10px 13px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--green-800);
  font-weight: 650;
  font-size: .92rem;
  transition: background .18s ease, color .18s ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: var(--sage-200);
  color: var(--green-950);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .62);
  color: var(--green-900);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding-top: 74px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay-500);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  color: var(--green-950);
  line-height: 1.06;
  letter-spacing: -.045em;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.hero-text {
  max-width: 620px;
  color: #4c584f;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  color: var(--ivory);
  background: linear-gradient(135deg, var(--green-800), var(--green-950));
  box-shadow: 0 16px 34px rgba(49, 68, 49, .25);
}

.btn-primary:hover,
.btn-primary:focus-visible { box-shadow: 0 18px 42px rgba(49, 68, 49, .34); }

.btn-secondary {
  color: var(--green-900);
  background: rgba(255,255,255,.58);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible { background: var(--white); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(49, 68, 49, .12);
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(255, 255, 255, .62);
  font-size: .88rem;
  font-weight: 750;
}

.hero-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 40px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(245,239,230,.72));
  box-shadow: var(--shadow);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(2px);
}

.hero-card::before {
  width: 190px;
  height: 190px;
  left: -48px;
  top: 48px;
  background: rgba(214, 176, 109, .32);
}

.hero-card::after {
  width: 220px;
  height: 220px;
  right: -52px;
  bottom: -44px;
  background: rgba(198, 211, 193, .55);
}

.profile-note {
  margin-top: 16px;
  padding: 22px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(24,37,29,.08);
}

.profile-note p {
  color: var(--green-800);
  font-size: 1.08rem;
}
.profile-note strong,
.profile-note small { display: block; }
.profile-note small { color: var(--muted); }

.intro-band {
  padding: 34px 0;
  background: var(--green-900);
  color: var(--ivory);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.intro-grid p { margin: 0; color: rgba(255,250,242,.82); font-size: 1.05rem; }
.intro-grid strong { color: var(--white); }

.split {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 68px;
}

.section-kicker { position: sticky; top: calc(var(--header-height) + 32px); align-self: start; }

.prose p {
  color: #4d5a50;
  font-size: 1.08rem;
}

.bio-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.bio-list div {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.bio-list strong { color: var(--green-950); }
.bio-list span { color: var(--muted); text-align: right; }

.muted { background: rgba(234, 220, 201, .36); }

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}
.section-heading.narrow { max-width: 680px; margin-inline: auto; text-align: center; }
.section-heading p { color: var(--muted); font-size: 1.08rem; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.content-item,
.step {
  border: 1px solid rgba(49, 68, 49, .1);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 50px rgba(24,37,29,.07);
}

.service-card {
  min-height: 310px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.service-card p,
.content-item p,
.step p { color: var(--muted); margin-bottom: 0; }

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 46px;
  border-radius: 50%;
  color: var(--green-900);
  background: var(--sage-200);
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
  counter-reset: steps;
}

.step {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  border-radius: 50%;
  color: var(--ivory);
  background: var(--green-800);
  font-weight: 900;
}

.editorial {
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(24,37,29,.96), rgba(49,68,49,.96)),
    radial-gradient(circle at top right, rgba(214,176,109,.18), transparent 28rem);
}

.editorial h2,
.editorial h3 { color: var(--white); }
.editorial p { color: rgba(255,250,242,.78); }

.editorial-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.editorial-copy { position: sticky; top: calc(var(--header-height) + 32px); }

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold-400);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.content-list {
  display: grid;
  gap: 16px;
}

.content-item {
  padding: 26px;
  background: rgba(255,250,242,.08);
  border-color: rgba(255,250,242,.12);
}

.content-item span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold-400);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.faq .section-kicker { position: static; }

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.68);
}

.accordion summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--green-950);
  font-weight: 850;
  list-style: none;
}

.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; float: right; color: var(--clay-500); }
.accordion details[open] summary::after { content: "−"; }
.accordion p { padding: 0 22px 22px; margin: 0; color: var(--muted); }

.contact { padding-top: 0; }

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 36px;
  color: var(--ivory);
  background: linear-gradient(135deg, var(--green-800), var(--green-950));
  box-shadow: var(--shadow);
}

.contact-card h2 { color: var(--white); }
.contact-card p { max-width: 690px; color: rgba(255,250,242,.78); margin-bottom: 0; }
.contact-card .btn-secondary { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.18); }
.contact-card .btn-primary { background: var(--ivory); color: var(--green-900); box-shadow: none; }

.site-footer {
  padding: 34px 0 96px;
  color: rgba(255,250,242,.78);
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.site-footer strong { display: block; color: var(--white); }
.site-footer p { margin: 6px 0 0; }

.float-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--ivory);
  background: var(--green-900);
  box-shadow: 0 18px 40px rgba(24,37,29,.24);
  text-decoration: none;
  font-weight: 900;
}

.float-whatsapp span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .section { padding: 74px 0; }
  .hero-grid,
  .split,
  .editorial-grid,
  .contact-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 36px; }
  .hero-card { max-width: 540px; margin-inline: auto; }
  .cards-grid,
  .steps { grid-template-columns: repeat(2, 1fr); }
  .section-kicker,
  .editorial-copy { position: static; }
  .contact-actions { margin-top: 0; }
}

@media (max-width: 780px) {
  :root { --header-height: 74px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .menu-toggle { display: inline-block; }
  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255,250,242,.98);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: 13px 14px; }
  .hero { padding-top: 42px; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.4rem); }
  .intro-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .bio-list div { display: grid; gap: 4px; }
  .bio-list span { text-align: left; }
}

@media (max-width: 620px) {
  .cards-grid,
  .steps { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .card-icon,
  .step span { margin-bottom: 24px; }
  .hero-actions,
  .contact-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .float-whatsapp { left: 16px; right: 16px; justify-content: center; }
  .site-footer { padding-bottom: 114px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Ajustes de responsividade mobile - evita cortes laterais e melhora a leitura no celular */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 780px) {
  .site-header {
    min-height: 72px;
  }

  .header-inner {
    min-height: 72px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    flex: 1;
    overflow: hidden;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
  }

  .brand span:last-child {
    min-width: 0;
  }

  .brand strong,
  .brand small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .brand small {
    font-size: .82rem;
  }

  .menu-toggle {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
    padding-bottom: 48px;
    align-items: start;
  }

  .hero-copy {
    max-width: 100%;
  }

  .eyebrow {
    max-width: 100%;
    font-size: .72rem;
    letter-spacing: .105em;
    line-height: 1.55;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.6vw, 3rem);
    line-height: 1.1;
    letter-spacing: -.045em;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
  }

  .hero-text {
    max-width: 100%;
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .btn,
  .trust-row span,
  .service-card,
  .content-item,
  .step,
  .accordion summary {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .trust-row {
    margin-top: 24px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .trust-row span {
    flex: 0 0 auto;
  }

  .hero-card {
    width: 100%;
    max-width: 460px;
    border-radius: 28px;
    padding: 14px;
  }

  

  .profile-note {
    border-radius: 22px;
    padding: 18px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 32px;
    padding-bottom: 44px;
  }

  h1 {
    font-size: clamp(1.9rem, 8.2vw, 2.35rem);
    line-height: 1.12;
    margin-bottom: 18px;
  }

  .btn {
    min-height: 54px;
    padding-inline: 18px;
  }

  .btn-secondary {
    background: rgba(255,255,255,.74);
  }

  .float-whatsapp {
    display: none;
  }
}

@media (max-width: 390px) {
  .brand small {
    font-size: .74rem;
  }

  h1 {
    font-size: 1.82rem;
  }

  .hero-text {
    font-size: 1rem;
  }
}

/* Ajustes finais de responsividade: impede rolagem lateral e mantém elementos centralizados no celular */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.site-header,
main,
section,
.container,
.header-inner,
.hero-grid,
.hero-copy,
.hero-card,

.hero-card,
.photo-shell,
.btn,
.trust-row span {
  min-width: 0;
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .brand span:last-child {
    min-width: 0;
  }

  .brand strong,
  .brand small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
    overflow: hidden;
  }

  .hero-grid {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .hero-copy {
    width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10.5vw, 3.1rem);
    line-height: 1.04;
    letter-spacing: -.055em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }

  .hero-text {
    max-width: 100%;
    font-size: 1.06rem;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    max-width: 100%;
    padding-inline: 18px;
    text-align: center;
  }

  .trust-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-row span {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .hero-card {
    width: 100%;
    max-width: 440px;
    margin-inline: auto;
    padding: 12px;
    border-radius: 30px;
    overflow: hidden;
  }

  .hero-card::before,
  .hero-card::after {
    display: none;
  }

  

  

  .profile-note {
    border-radius: 22px;
    padding: 18px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 28px;
  }

  .eyebrow {
    font-size: .72rem;
    letter-spacing: .1em;
  }

  h1 {
    font-size: clamp(2.15rem, 10vw, 2.75rem);
  }

  .hero-actions {
    margin-top: 24px;
  }

  .trust-row {
    gap: 8px;
  }

  .hero-card {
    max-width: 100%;
  }

  .float-whatsapp {
    display: none;
  }

  .site-footer {
    padding-bottom: 44px;
  }
}

/* Correção definitiva da imagem do cartão profissional */
.hero-card {
  overflow: hidden;
}

.photo-shell {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 32px;
  background: transparent !important;
  line-height: 0;
  padding: 0 !important;
  aspect-ratio: auto !important;
}

.photo-shell img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center center;
  border-radius: inherit;
}

@media (max-width: 780px) {
  .hero-card {
    width: 100%;
    max-width: 440px;
    margin-inline: auto;
    padding: 12px;
    border-radius: 30px;
    overflow: hidden;
  }

  .photo-shell {
    border-radius: 24px;
    background: transparent !important;
  }

  .photo-shell img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }
}

@media (max-width: 620px) {
  .hero-card {
    max-width: 100%;
  }
}
