:root {
  --bg: #FAF7F2; --surface: #F2EDE2; --surface-2: #EDE6D5;
  --ink: #1F2A37; --ink-soft: #5A6273; --ink-muted: #8A8E99;
  --line: #E5DED1; --gold: #D9A441; --gold-logo: #f2c40b; --gold-hover: #C28F2E;
  --gold-soft: #FBE9B8; --white: #FFFFFF;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
  --section-y: 128px; --container: 1200px;
  --radius: 14px; --radius-lg: 22px;
  --shadow-soft: 0 2px 14px -4px rgba(31,42,55,.06);
  --shadow-card: 0 14px 40px -16px rgba(31,42,55,.14);
  --shadow-cta: 0 14px 28px -12px rgba(217,164,65,.55);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--ink); font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; letter-spacing: -.015em; color: var(--ink); line-height: 1.15; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: .18em; color: var(--ink-soft); }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.btn-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--ink); font-weight: 600; font-size: 15.5px; padding: 18px 30px; border-radius: 999px; transition: all .25s ease; box-shadow: var(--shadow-cta); white-space: nowrap; }
.btn-cta:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 18px 32px -10px rgba(217,164,65,.7); }
.btn-cta svg { width: 20px; height: 20px; }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 500; font-size: 15px; padding: 14px 22px; border-radius: 999px; border: 1px solid var(--line); transition: all .2s ease; }
.btn-ghost:hover { background: var(--white); border-color: var(--ink); }
.highlight { background-image: linear-gradient(180deg, transparent 60%, var(--gold-soft) 60%); padding: 0 4px; }

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background:rgb(26 63 69); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s ease; }
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner { max-width: var(--container); margin: 0 auto; padding: 18px 32px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 20px; font-weight: 600; }
.nav-logo img { height: 40px; width: auto; }
.nav-menu { display: flex; gap: 36px; list-style: none; }
.nav-menu a { font-size: 14.5px; font-weight: 500; color: #fff; transition: color .2s ease; }
.nav-menu a:hover { color: #ffcb00; }
.nav-cta { background: #eaeaea; color: var(--ink); font-weight: 600; font-size: 14px; padding: 11px 22px; border-radius: 999px; transition: all .2s ease; }
.nav-cta:hover { background: #dbbc48; transform: translateY(-1px); }
.nav-burger { display: none; }

/* HERO — Split layout com formulário de agendamento à direita */
.hero { padding-top: 168px; padding-bottom: var(--section-y); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.hero h1 { font-size: clamp(38px, 5.2vw, 52px); font-weight: 500; line-height: 1.20; margin-top: 24px; letter-spacing: -.025em; }
.hero h1 em { font-style: italic; font-weight: 400; }
.hero-sub { margin-top: 28px; font-size: 18px; color: var(--ink-soft); max-width: 540px; line-height: 1.7; }
.hero-trust { margin-top: 32px; display: inline-flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-muted); }
.hero-trust svg { width: 16px; height: 16px; color: var(--gold); }

/* Card do formulário */
.hero-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px 36px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.hero-form-card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 4px;
  background: var(--gold);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 8px 0;
}
.form-header { text-align: center; margin-bottom: 28px; }
.form-header .form-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--gold-hover);
  margin-bottom: 12px;
}
.form-header .form-eyebrow svg { width: 14px; height: 14px; }
.form-header h3 {
  font-family: var(--serif);
  font-size: 26px; font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.form-header p {
  font-size: 14.5px; color: var(--ink-soft);
  line-height: 1.55;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px; font-weight: 500;
  color: var(--ink);
  margin-bottom: 7px;
}
.form-group label .req { color: var(--gold-hover); }
.form-input, .form-select {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.form-input::placeholder { color: var(--ink-muted); }
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(217, 164, 65, 0.12);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%235A6273' stroke-width='2'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%;
  margin-top: 8px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600; font-size: 15.5px;
  padding: 16px 24px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: all .25s ease;
  box-shadow: var(--shadow-cta);
  border: none; cursor: pointer;
  font-family: inherit;
}
.form-submit:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -10px rgba(217,164,65,.7);
}
.form-submit svg { width: 20px; height: 20px; }
.form-trust {
  margin-top: 18px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12.5px; color: var(--ink-muted);
  line-height: 1.4;
}
.form-trust svg { width: 13px; height: 13px; color: var(--gold-hover); flex-shrink: 0; }

.pains { padding: var(--section-y) 0; background: var(--surface); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head h2 { font-size: clamp(32px, 4vw, 46px); margin-top: 18px; letter-spacing: -.02em; }
.section-head p { margin-top: 22px; font-size: 17px; color: var(--ink-soft); line-height: 1.7; }
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pain-card { background: var(--white); padding: 36px 32px; border-radius: var(--radius); border: 1px solid var(--line); transition: all .25s ease; }
.pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: transparent; }
.pain-icon { width: 52px; height: 52px; background: var(--gold-soft); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--gold-hover); margin-bottom: 22px; }
.pain-icon svg { width: 26px; height: 26px; }
.pain-card h3 { font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.pain-card p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; }

/* ===== SERVICES ===== */
.services { padding: var(--section-y) 0; background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 30px 32px; display: flex; flex-direction: column; gap: 0; transition: all .25s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: transparent; }
.service-icon { width: 56px; height: 56px; background: var(--gold-soft); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--gold-hover); margin-bottom: 20px; flex-shrink: 0; }
.service-icon svg { width: 28px; height: 28px; }
.service-tag { font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-hover); margin-bottom: 10px; }
.service-card h3 { font-size: 22px; font-weight: 600; margin-bottom: 14px; line-height: 1.2; }
.service-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; flex-grow: 1; margin-bottom: 28px; }
.service-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--ink); font-size: 14px; font-weight: 600; padding: 13px 20px; border-radius: 999px; transition: all .22s ease; box-shadow: var(--shadow-cta); margin-top: auto; white-space: nowrap; }
.service-btn:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(217,164,65,.7); }
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.transform { padding: var(--section-y) 0; }
.transform-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: center; }
.transform-image { position: relative; border-radius: var(--radius-lg); aspect-ratio: 4/5; box-shadow: var(--shadow-card); }
.transform-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); aspect-ratio: 4 / 5; box-shadow: var(--shadow-card);}
.transform-quote { position: absolute; right: -40px; bottom: 48px; background: #e6dfd5; padding: 22px 26px 22px 55px; border-radius: 14px; max-width: 272px; box-shadow: var(--shadow-soft); font-family: var(--serif); font-size: 16px; font-style: italic; line-height: 1.5; }
.transform-quote::before { content: "\201C"; position: absolute; top: 18px; left: 14px; font-family: var(--serif); font-size: 70px; line-height: 1; color: var(--gold); }
.transform-content h2 { font-size: clamp(32px, 4vw, 40px); margin-top: 18px; margin-bottom: 22px; }
.transform-content > p { color: var(--ink-soft); font-size: 17px; line-height: 1.75; margin-bottom: 40px; }
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 28px; }
.benefit-item { display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start; }
.benefit-num { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--gold-hover); }
.benefit-item h4 { font-size: 20px; font-family: var(--serif); font-weight: 600; margin-bottom: 6px; }
.benefit-item p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }

.about { padding: var(--section-y) 0; background: var(--surface); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 90px; align-items: center; }
.about-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-card); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { font-size: clamp(30px, 3.8vw, 40px); margin-top: 18px; letter-spacing: -.02em; }
.about-pullquote { margin: 32px 0; padding: 20px 0 19px 28px; border-left: 2px solid var(--gold); font-family: var(--serif); font-style: italic; font-size: 21px; line-height: 1.5; }
.about-content > p { color: var(--ink-soft); font-size: 16px; line-height: 1.75; margin-bottom: 14px; }
.about-badges { margin-top: 36px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.badge-item { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: var(--white); border-radius: 12px; border: 1px solid var(--line); }
.badge-icon { width: 38px; height: 38px; background: var(--gold-soft); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold-hover); flex-shrink: 0; }
.badge-icon svg { width: 20px; height: 20px; }
.badge-item span { font-size: 14.5px; font-weight: 500; line-height: 1.35; }

/* ===== ABA ===== */
.aba { padding: var(--section-y) 0; }
.aba-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: center; }
.aba-content h2 { font-size: clamp(30px, 3.8vw, 40px); margin-top: 18px; margin-bottom: 22px; letter-spacing: -.02em; }
.aba-content > p { color: var(--ink-soft); font-size: 17px; line-height: 1.75; margin-bottom: 40px; }
.aba-quote { margin-top: 36px; padding: 18px 0 18px 28px; border-left: 2px solid var(--gold); font-family: var(--serif); font-style: italic; font-size: 20px; line-height: 1.5; color: var(--ink); }
.aba-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-card); }
.aba-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
@media (max-width: 960px) {
  .aba-grid { grid-template-columns: 1fr; gap: 56px; }
  .aba-image { max-width: 460px; margin: 0 auto; }
}

.social { padding: var(--section-y) 0; background: #ede6d5; }
.google-meta { display: inline-flex; align-items: center; gap: 12px; background: var(--white); padding: 12px 22px; border-radius: 999px; border: 1px solid var(--line); margin-top: 24px; font-size: 14px; color: var(--ink-soft); }
.google-meta .stars { display: flex; gap: 2px; color: var(--gold); }
.google-meta .stars svg { width: 16px; height: 16px; fill: currentColor; }
.google-meta strong { color: var(--ink); font-weight: 600; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card { background: var(--white); padding: 32px; border-radius: var(--radius); border: 1px solid var(--line); display: flex; flex-direction: column; transition: all .25s ease; }
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: transparent; }
.review-stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 18px; }
.review-stars svg { width: 18px; height: 18px; fill: currentColor; }
.review-text { font-family: var(--serif); font-size: 17px; font-style: italic; line-height: 1.55; margin-bottom: 26px; flex-grow: 1; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-soft); display: flex; align-items: center; justify-content: center; font-weight: 600; color: var(--gold-hover); font-size: 16px; }
.review-info p { font-size: 14.5px; font-weight: 600; line-height: 1.3; }
.review-info span { font-size: 13px; color: var(--ink-muted); }

.modes { padding: var(--section-y) 0; background: var(--surface); }
.modes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mode-card { background: var(--bg); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; transition: all .25s ease; }
.mode-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.mode-image { height: 290px; overflow: hidden; }
.mode-image img { width: 100%; height: 100%; object-fit: cover; }
.mode-body { padding: 38px 36px 40px; }
.mode-icon-wrap { width: 56px; height: 56px; background: var(--gold-soft); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--gold-hover); margin-bottom: 22px; }
.mode-icon-wrap svg { width: 28px; height: 28px; }
.mode-body h3 { font-size: 26px; font-weight: 600; margin-bottom: 6px; }
.mode-focus { font-size: 13px; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-hover); font-weight: 600; margin-bottom: 18px; }
.mode-body p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 24px; }
.mode-body a { font-weight: 600; font-size: 14.5px; color: var(--ink); border-bottom: 1px solid var(--gold); padding-bottom: 2px; display: inline-flex; align-items: center; gap: 6px; }

.faq { padding: var(--section-y) 0; }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question { width: 100%; text-align: left; padding: 28px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-family: var(--serif); font-size: 21px; font-weight: 500; transition: color .2s ease; color: #000;}
.faq-question:hover { color: var(--gold-hover); }
.faq-icon { width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .3s ease; }
.faq-icon svg { width: 14px; height: 14px; transition: transform .3s ease; }
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer-inner { padding-bottom: 28px; color: var(--ink-soft); font-size: 16px; line-height: 1.75; max-width: 90%; }
.faq-item.open .faq-answer { max-height: 400px; }

.final-cta { padding: var(--section-y) 0; background: var(--surface-2); }
.final-cta-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.final-cta h2 { font-size: clamp(34px, 4.4vw, 52px); margin-top: 18px; letter-spacing: -.02em; }
.final-cta > p { margin-top: 22px; font-size: 17px; color: var(--ink-soft); line-height: 1.7; max-width: 600px; margin-left: auto; margin-right: auto; }
.final-cta .btn-cta { margin-top: 36px; }
.final-cta .hero-trust { margin-top: 20px; }

.footer { background: #0f2c31; color: #fff; padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand img { height: 48px; margin-bottom: 18px; opacity: .95; }
.footer-brand p { font-size: 14.5px; color: #fff; line-height: 1.7; max-width: 320px; }
.footer h5 { color: var(--white); font-family: var(--sans); font-size: 13px; text-transform: uppercase; letter-spacing: .14em; font-weight: 600; margin-bottom: 22px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer ul a, .footer ul li { font-size: 14.5px; color: #fff; transition: color .2s ease; }
.footer ul a:hover { color: var(--gold); }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: #fff; }
.footer-bottom a { color: #fff; font-size: 13px; }

.float-whatsapp { position: fixed; bottom: 26px; right: 26px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; box-shadow: 0 14px 32px -8px rgba(37,211,102,.5); z-index: 90; transition: transform .25s ease; }
.float-whatsapp:hover { transform: scale(1.08); }
.float-whatsapp svg { width: 30px; height: 30px; }

@media (max-width: 960px) {
  :root { --section-y: 88px; }
  .nav-menu { display: none; }
  .nav-burger { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 10px; }
  .hero { padding-top: 130px !important; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-form-card { max-width: 480px; margin: 0 auto; padding: 32px 28px 28px; }
  .pain-grid { grid-template-columns: 1fr; }
  .transform-grid, .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-grid .about-image { order: -1; max-width: 460px; margin: 0 auto; }
  .transform-image { max-width: 460px; margin: 0 auto; }
  .transform-quote { right: 16px; bottom: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .modes-grid { grid-template-columns: 1fr; }
  .about-badges { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  :root { --section-y: 64px; }
  body { font-size: 16px; }
  .container { padding: 0 22px; }
  .nav-inner { padding: 20px 22px; }
  .nav-cta { display: none; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-cta, .hero-actions .btn-ghost { justify-content: center; }
  .pain-card { padding: 28px 24px; }
  .mode-body { padding: 30px 26px 34px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .about-pullquote { font-size: 18px; padding-left: 20px; }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }


   /* ===== HERO — estilos isolados (não afetam outras seções) ===== */
    .hero { padding-top: 168px; padding-bottom: var(--section-y); position: relative; overflow: hidden; }
    .hero::before { content: ""; position: absolute; top: 80px; right: -180px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(251,233,184,.55) 0%, transparent 70%); border-radius: 50%; z-index: 0; filter: blur(40px); }
    .hero::after { content: ""; position: absolute; bottom: -100px; left: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(242,237,226,.7) 0%, transparent 70%); border-radius: 50%; z-index: 0; filter: blur(40px); }
    .hero .container { position: relative; z-index: 1; }
    .hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }
    .hero-eyebrow-pill { display: inline-flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--line); padding: 7px 18px; border-radius: 999px; margin-bottom: 10px; }
    .hero-eyebrow-pill .pulse-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: heroPulse 2s ease-in-out infinite; }
    .hero-eyebrow-pill span:last-child { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: .18em; color: var(--ink-soft); }
    @keyframes heroPulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
    .hero h1 { font-size: clamp(31px, 5.4vw, 52px); font-weight: 500; line-height: 1.20; letter-spacing: -.025em; }
    .hero h1 em { font-style: italic; font-weight: 400; color: var(--gold-hover); }
    .hero-sub { margin-top: 28px; font-size: 18px; color: var(--ink-soft); max-width: 560px; line-height: 1.7; }
    .hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
    .btn-ghost-link { font-size: 15px; font-weight: 500; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 6px; transition: color .2s ease; }
    .btn-ghost-link:hover { color: var(--ink); }
    .hero-trust { margin-top: 28px; display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-soft); }
    .hero-trust svg { width: 16px; height: 16px; color: var(--gold-hover); }
    .hero-credibility-card { margin-top: 36px; display: inline-flex; align-items: center; gap: 16px; background: var(--white); padding: 16px 22px; border-radius: 16px; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
    .hero-cred-icon { width: 44px; height: 44px; background: var(--gold-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-hover); flex-shrink: 0; }
    .hero-cred-icon svg { width: 22px; height: 22px; }
    .hero-cred-text { line-height: 1.3; }
    .hero-cred-label { display: block; font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .16em; color: var(--ink-muted); }
    .hero-cred-title { display: block; font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--ink); margin-top: 2px; }
    .hero-cred-sub { display: block; font-size: 12px; color: var(--ink-soft); margin-top: 4px; max-width: 240px; }
    .hero-form-wrap { position: relative; }
    .hero-circle-seal { position: absolute; top: -28px; right: -28px; z-index: 2; width: 110px; height: 110px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-align: center; font-family: var(--serif); font-size: 13px; line-height: 1.25; color: var(--ink); font-weight: 500; transform: rotate(12deg); box-shadow: 0 14px 32px -10px rgba(217,164,65,.7); }
    @media (max-width: 960px) {
      .hero-grid { grid-template-columns: 1fr; gap: 56px; }
      .hero-form-wrap { max-width: 480px; margin: 0 auto; }
      .hero-circle-seal { width: 90px; height: 90px; font-size: 11px; top: -20px; right: -16px; }
    }

/* ==========================================================================
   CORREÇÃO DO MENU HAMBURGUER MOBILE
   ========================================================================== */
@media (max-width: 960px) {
  .nav-inner {
    position: relative;
  }

  /* Menu suspenso quando em tela mobile */
  .nav-menu {
    display: flex !important; /* Sobrescreve o display: none anterior */
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgb(26 63 69);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 20px 32px;
    border-top: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(31, 42, 55, 0.08);
    
    /* Estado escondido (padrão) */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    z-index: 999;
  }

  /* Estado visível quando ativo */
  .nav-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    font-size: 16px;
    display: block;
    width: 100%;
    padding: 8px 0;
  }

  /* Estilização básica do botão hamburguer para garantir clique */
  .nav-burger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    background: var(--line);
  }
}