/* ================================================================
   Sections — Willian Teixeira LP (navy charcoal + copper)
   ================================================================ */

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(0.20 0.018 248 / 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-2);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--fg-0);
}
.nav__logo-mark {
  width: 34px; height: 34px;
  border-radius: 6px;
  border: 1px solid var(--line-3);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--brass);
  background: var(--bg-1);
}
.nav__logo-sub {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--fg-2);
}
.nav__links a:hover { color: var(--fg-0); }
.nav__cta { display: flex; align-items: center; gap: 14px; }

@media (max-width: 880px) {
  .nav__links { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  padding-top: clamp(60px, 9vw, 100px);
  padding-bottom: clamp(80px, 11vw, 140px);
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--urg-bg);
  border: 1px solid oklch(0.40 0.10 25);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(0.85 0.10 35);
  margin-bottom: 28px;
}
.hero__chip .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: oklch(0.70 0.18 25);
  box-shadow: 0 0 0 0 oklch(0.70 0.18 25);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 oklch(0.70 0.18 25 / 0.6); }
  100% { box-shadow: 0 0 0 14px oklch(0.70 0.18 25 / 0); }
}
.hero__title {
  font-size: clamp(40px, 5.8vw, 80px);
  letter-spacing: -0.028em;
  line-height: 0.98;
  margin-bottom: 28px;
}
.hero__title em {
  font-style: italic;
  color: var(--brass);
}
.hero__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--fg-2);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* hero visual: real photo */
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-3);
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-2);
  background: var(--bg-1);
}
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 50%;
  filter: saturate(0.92) contrast(1.04);
}
.hero__visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 20, 30, 0) 40%, rgba(15, 20, 30, 0.75) 80%, rgba(15, 20, 30, 0.95) 100%),
    linear-gradient(90deg, rgba(15, 20, 30, 0.35) 0%, transparent 45%);
}
.hero__visual-meta {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  z-index: 1;
}
.hero__visual-caption {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  letter-spacing: -0.015em;
  color: var(--fg-0);
  max-width: 320px;
  line-height: 1.25;
}
.hero__visual-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: oklch(0.15 0.014 245 / 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid oklch(1 0 0 / 0.12);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-0);
  z-index: 1;
}
.hero__visual-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 3px oklch(0.76 0.115 65 / 0.18);
}

@media (max-width: 920px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__visual { max-width: 480px; margin: 0 auto; aspect-ratio: 5/6; }
}

/* ---------- MARQUEE ---------- */
.marquee {
  border-block: 1px solid var(--line-2);
  background: var(--bg-1);
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track {
  display: flex;
  gap: 56px;
  animation: marquee 36s linear infinite;
  width: max-content;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee__item {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--fg-2);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 56px;
}
.marquee__item::after {
  content: "✦";
  color: var(--brass);
  font-size: 14px;
  font-style: normal;
}

/* ---------- DOR ---------- */
.dor {
  background: var(--bg-1);
  border-block: 1px solid var(--line-2);
}
.dor__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: 56px;
  align-items: end;
}
.dor__title {
  font-size: clamp(34px, 4.4vw, 56px);
}
.dor__sub {
  color: var(--fg-2);
  font-size: 16px;
  line-height: 1.55;
  max-width: 540px;
}
.dor__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-3);
  overflow: hidden;
}
.dor__item {
  background: var(--bg-elev);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.dor__item-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--brass);
  letter-spacing: 0.1em;
  padding-top: 4px;
  flex-shrink: 0;
}
.dor__item-body p {
  color: var(--fg-1);
  font-size: 16.5px;
  line-height: 1.5;
}
.dor__highlight {
  margin-top: 40px;
  padding: 28px 32px;
  border: 1px solid oklch(0.45 0.13 25);
  background: linear-gradient(180deg, var(--urg-bg), transparent);
  border-radius: var(--r-2);
  display: flex;
  align-items: center;
  gap: 20px;
}
.dor__highlight-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid oklch(0.62 0.16 25);
  display: grid;
  place-items: center;
  color: oklch(0.82 0.14 30);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  background: oklch(0.20 0.05 25 / 0.5);
}
.dor__highlight p {
  color: var(--fg-1);
  font-size: 16px;
  line-height: 1.5;
}
.dor__highlight strong {
  color: oklch(0.85 0.12 30);
  font-weight: 500;
}
.dor__highlight-cta {
  margin-top: 22px;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 820px) {
  .dor__head { grid-template-columns: 1fr; }
  .dor__grid { grid-template-columns: 1fr; }
}

/* ---------- DEFESA (3 pilares) ---------- */
.defesa__head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 820px;
  margin-inline: auto;
}
.defesa__title {
  font-size: clamp(38px, 5vw, 64px);
  margin-bottom: 24px;
}
.defesa__title em { color: var(--brass); font-style: italic; }
.defesa__lede {
  color: var(--fg-2);
  font-size: 18px;
  line-height: 1.55;
}
.defesa__pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
.pillar {
  padding: 36px 32px;
  background: var(--bg-elev);
  border: 1px solid var(--line-2);
  border-radius: var(--r-3);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  box-shadow: var(--shadow-1);
  transition: border-color 200ms ease, transform 200ms ease;
}
.pillar:hover {
  border-color: var(--line-3);
  transform: translateY(-2px);
}
.pillar__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  color: var(--brass);
  margin-bottom: 8px;
}
.pillar__title {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.018em;
  line-height: 1.15;
}
.pillar__body {
  color: var(--fg-2);
  font-size: 15.5px;
  line-height: 1.6;
}
.pillar__body strong { color: var(--fg-0); font-weight: 500; }

@media (max-width: 920px) {
  .defesa__pillars { grid-template-columns: 1fr; }
}

/* ---------- INLINE CTA ---------- */
.inline-cta {
  margin-top: clamp(48px, 6vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px clamp(24px, 3vw, 36px);
  background: var(--bg-elev);
  border: 1px solid var(--line-2);
  border-radius: var(--r-3);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.inline-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 60%, oklch(0.76 0.115 65 / 0.08) 100%);
  pointer-events: none;
}
.inline-cta__text {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--fg-0);
  max-width: 560px;
  position: relative;
  z-index: 1;
}
.inline-cta__text em { color: var(--brass); font-style: italic; }
.inline-cta .btn { position: relative; z-index: 1; flex-shrink: 0; }
.inline-cta--centered {
  flex-direction: column;
  text-align: center;
  padding: 36px 32px;
}
.inline-cta--centered .inline-cta__text { max-width: 640px; }

/* ---------- ADVOGADO ---------- */
.advogado__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.advogado__photo-wrap {
  position: relative;
  border: 1px solid var(--line-2);
  border-radius: var(--r-3);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-1);
  box-shadow: var(--shadow-2);
}
.advogado__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  filter: saturate(0.95) contrast(1.02);
}
.advogado__title {
  font-size: clamp(36px, 4.4vw, 56px);
  margin: 0 0 14px;
}
.advogado__role {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
}
.advogado__body p {
  color: var(--fg-1);
  font-size: 16.5px;
  line-height: 1.65;
  margin-bottom: 18px;
}
.advogado__body p:first-of-type {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--fg-0);
  border-left: 2px solid var(--brass);
  padding-left: 22px;
  line-height: 1.35;
}
@media (max-width: 880px) {
  .advogado__grid { grid-template-columns: 1fr; }
  .advogado__photo-wrap { max-width: 420px; margin: 0 auto; }
}

/* ---------- FAQ ---------- */
.faq__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: 48px;
  align-items: end;
}
.faq__title { font-size: clamp(34px, 4.4vw, 54px); }
.faq__sub { color: var(--fg-2); font-size: 16px; line-height: 1.55; }

.faq__list {
  border-top: 1px solid var(--line-2);
}
.faq__item {
  border-bottom: 1px solid var(--line-2);
}
.faq__q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  font-family: var(--serif);
  font-size: clamp(18px, 1.9vw, 22px);
  letter-spacing: -0.012em;
  color: var(--fg-0);
  cursor: pointer;
  transition: color 180ms ease;
}
.faq__q:hover { color: var(--brass); }
.faq__q-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-1);
  display: grid;
  place-items: center;
  position: relative;
  transition: transform 240ms ease, background 240ms ease, border-color 240ms ease;
}
.faq__q-icon::before, .faq__q-icon::after {
  content: "";
  position: absolute;
  background: var(--fg-1);
}
.faq__q-icon::before { width: 11px; height: 1px; }
.faq__q-icon::after { width: 1px; height: 11px; transition: transform 240ms ease; }
.faq__item.is-open .faq__q-icon {
  background: var(--brass);
  border-color: var(--brass);
}
.faq__item.is-open .faq__q-icon::before,
.faq__item.is-open .faq__q-icon::after {
  background: var(--bg-0);
}
.faq__item.is-open .faq__q-icon::after { transform: rotate(90deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}
.faq__a-inner {
  padding: 0 4px 26px;
  color: var(--fg-2);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 720px;
}
.faq__item.is-open .faq__a { max-height: 400px; }

@media (max-width: 820px) {
  .faq__head { grid-template-columns: 1fr; }
}

/* ---------- CTA FINAL ---------- */
.cta-final {
  padding: clamp(80px, 11vw, 140px) 0;
  background: var(--bg-0);
}
.cta-final__inner {
  background: linear-gradient(165deg,
    oklch(0.28 0.024 245) 0%,
    oklch(0.235 0.020 245) 60%,
    oklch(0.205 0.018 248) 100%);
  border: 1px solid var(--line-1);
  border-radius: 24px;
  padding: clamp(56px, 7vw, 96px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.cta-final__inner::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  right: -120px;
  top: -100px;
  background: radial-gradient(circle, oklch(0.76 0.115 65 / 0.18), transparent 65%);
  pointer-events: none;
}
.cta-final__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 48px;
  align-items: center;
}
.cta-final__title {
  font-size: clamp(36px, 4.8vw, 62px);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 20px;
}
.cta-final__title em { color: var(--brass); font-style: italic; }
.cta-final__body {
  color: var(--fg-2);
  font-size: 17px;
  line-height: 1.55;
  max-width: 540px;
}
.cta-final__panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  background: oklch(0.16 0.014 245 / 0.7);
  border: 1px solid var(--line-2);
  border-radius: var(--r-3);
}
.cta-final__line {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-final__line .dot--whats {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--whats);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2);
}
.cta-final__btn { width: 100%; }
.cta-final__note {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--fg-4);
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .cta-final__grid { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--line-2);
  padding: 64px 0 36px;
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 0.7fr));
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.footer__tag {
  color: var(--fg-2);
  font-size: 14.5px;
  max-width: 360px;
  line-height: 1.55;
}
.footer__col-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 18px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 14px;
  color: var(--fg-1);
  transition: color 180ms ease;
}
.footer__col a:hover { color: var(--brass); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line-2);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__disclaimer {
  margin-top: 16px;
  color: var(--fg-4);
  font-size: 11.5px;
  line-height: 1.6;
  max-width: 880px;
}
/* ---------- TWEAKS (vanilla) ---------- */
.tw-panel{position:fixed;bottom:16px;right:16px;z-index:100;font-family:var(--sans)}
.tw-toggle{width:44px;height:44px;border-radius:50%;background:var(--bg-elev);border:1px solid var(--line-2);color:var(--fg-1);display:grid;place-items:center;box-shadow:var(--shadow-2);cursor:pointer}
.tw-body{display:none;position:absolute;bottom:54px;right:0;width:220px;background:var(--bg-elev);border:1px solid var(--line-2);border-radius:var(--r-2);padding:16px;box-shadow:var(--shadow-2)}
.tw-panel.open .tw-body{display:block}
.tw-label{font-family:var(--mono);font-size:10px;letter-spacing:.12em;text-transform:uppercase;color:var(--fg-3);margin-bottom:8px}
.tw-row{display:flex;gap:8px;margin-bottom:16px;flex-wrap:wrap}
.tw-radio{flex:1;padding:8px 10px;border:1px solid var(--line-2);border-radius:6px;font-size:12px;color:var(--fg-2);cursor:pointer;text-align:center;background:transparent}
.tw-radio.active{border-color:var(--brass);color:var(--fg-0)}
.tw-swatch{width:26px;height:26px;border-radius:50%;border:2px solid transparent;cursor:pointer}
.tw-swatch.active{border-color:var(--fg-0)}
@media (max-width: 720px) {
  .footer__top { grid-template-columns: 1fr; }
}

