/* ═══════════════════════════════════════════════
   MMP Advogados — style.css
   Premium · Clean · Modern Web
═══════════════════════════════════════════════ */

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img    { display: block; max-width: 100%; }
a      { color: inherit; text-decoration: none; }
ul     { list-style: none; }
button { background: none; border: none; font: inherit; cursor: pointer; }

/* ── Tokens ─────────────────────────────────── */
:root {
  --navy:       #1b2d40;
  --navy-dark:  #12202e;
  --navy-mid:   #243650;
  --navy-dim:   rgba(27,45,64,.06);
  --navy-dim2:  rgba(27,45,64,.13);

  --white:      #ffffff;
  --off-white:  #f8f8f6;
  --grey-lt:    #f0efed;
  --grey-md:    #e4e3e0;

  --text-dark:  #111111;
  --text-body:  #48484f;
  --text-muted: #8c8c98;

  --gold:       #9a7648;
  --gold-lt:    #b89060;
  --gold-dim:   rgba(154,118,72,.09);

  --line:       rgba(20,20,20,.08);
  --line-light: rgba(255,255,255,.09);

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --max-w:      1200px;
  --pad-x:      clamp(1.25rem, 5vw, 3.5rem);
  --section-py: clamp(5rem, 8vw, 7.5rem);
  --radius-sm:  8px;
  --radius:     14px;

  --ease:            cubic-bezier(.25,.46,.45,.94);
  --ease-out:        cubic-bezier(.16,1,.3,1);
  --ease-expressive: cubic-bezier(.16,1,.3,1);
  --ease-back:       cubic-bezier(.34,1.36,.64,1);
  --t:        .25s;
  --dur-fast: .22s;
  --dur-base: .65s;
  --dur-slow: .9s;
}

/* seleção de texto com tom da marca */
::selection { background: rgba(27,45,64,.1); color: var(--navy); }

/* ── Global typography ──────────────────────── */
.section-eyebrow {
  display: block;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-eyebrow--light { color: rgba(255,255,255,.4); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic; color: var(--navy);
  position: relative; display: inline;
}
.section-title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: .05em;
  width: 100%; height: 1.5px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-expressive);
  opacity: .35;
}
.section-title.in em::after,
.section-title em.em-reveal::after { transform: scaleX(1); }
.section-title--light    { color: #fff; }
.section-title--light em { color: rgba(255,255,255,.55); }
.section-title--light em::after { background: rgba(255,255,255,.4); }

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sans);
  font-size: .71rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .85rem 1.85rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: background var(--dur-fast) var(--ease-expressive),
              color var(--dur-fast),
              border-color var(--dur-fast),
              transform .28s var(--ease-back),
              box-shadow var(--dur-fast);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: scale(.97) !important; transition-duration: .1s !important; }
.btn--primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(27,45,64,.28), 0 2px 8px rgba(27,45,64,.14);
}
.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: rgba(27,45,64,.3);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(27,45,64,.2);
}
.btn--white {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn--white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}

/* Shimmer discreto nos botões ao hover */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 40%, rgba(255,255,255,.08) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .5s var(--ease-out);
  pointer-events: none;
}
.btn:hover::after { transform: translateX(100%); }
@media (prefers-reduced-motion: reduce) { .btn::after { display: none; } }
.btn--sm { font-size: .65rem; padding: .65rem 1.35rem; }

/* ── Scroll reveal ───────────────────────────── */
.s-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-base) var(--ease-expressive),
              transform var(--dur-base) var(--ease-expressive);
}
.s-reveal.in { opacity: 1; transform: none; }


/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
:root { --nav-h: 64px; }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow var(--t), border-color var(--t);
}
.nav.scrolled {
  box-shadow: 0 1px 24px rgba(20,20,20,.07);
  border-color: transparent;
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: min(var(--max-w), 100% - var(--pad-x) * 2);
  margin-inline: auto;
  height: var(--nav-h);
}
.nav__logo-link { display: flex; flex-shrink: 0; }
.nav__logo { height: 40px; width: auto; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
  list-style: none;
}
.nav__link {
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text-muted);
  transition: color var(--t);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1.5px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--navy); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__cta-item { margin-left: .25rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: .5rem;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .25s var(--ease);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('../img/hero-bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg,
      rgba(8,13,24,.97)  0%,
      rgba(10,17,32,.93) 30%,
      rgba(13,22,42,.78) 55%,
      rgba(14,24,46,.55) 72%,
      rgba(14,24,46,.18) 100%),
    linear-gradient(to bottom,
      rgba(8,13,24,.5)  0%,
      transparent       25%,
      transparent       78%,
      rgba(8,13,24,.6)  100%);
}

/* ── Hero: noise texture ─────────────────────── */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.68' numOctaves='4' stitchTiles='stitch'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
  opacity: .028;
  pointer-events: none;
}

/* ── Hero: glow radial ───────────────────────── */
.hero__glow {
  position: absolute;
  z-index: 1;
  width: 700px; height: 700px;
  top: 45%; left: 22%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center,
    rgba(80,120,200,.13) 0%,
    rgba(50,90,170,.06)  40%,
    transparent          70%);
  pointer-events: none;
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}

/* ── Hero dark: text & trust ─────────────────── */
.hero .hero__eyebrow { color: rgba(255,255,255,.45); }
.hero .hero__dot     { background: rgba(255,255,255,.35); }
.hero .hero__title   { color: rgba(255,255,255,.94); }
.hero .hero__title em {
  color: #c8a870;
  font-style: italic;
}
.hero .hero__sub { color: rgba(255,255,255,.60); }
.hero .hero__trust { border-top-color: rgba(255,255,255,.1); }
.hero .hero__trust-item strong { color: #fff; }
.hero .hero__trust-item span   { color: rgba(255,255,255,.42); }
.hero .hero__trust-rule        { background: rgba(255,255,255,.12); }

/* ── Hero dark: botões ───────────────────────── */
.hero .btn--primary {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
}
.hero .btn--primary:hover {
  background: rgba(255,255,255,.9);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
.hero .btn--outline-navy {
  border-color: rgba(255,255,255,.32);
  color: rgba(255,255,255,.82);
  background: transparent;
}
.hero .btn--outline-navy:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.65);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Hero dark: entrada animada ──────────────── */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
.hero__content > * {
  opacity: 0;
  animation: hero-in .8s cubic-bezier(.22,1,.36,1) forwards;
}
.hero__content > *:nth-child(1) { animation-delay: .08s; }
.hero__content > *:nth-child(2) { animation-delay: .22s; }
.hero__content > *:nth-child(3) { animation-delay: .38s; }
.hero__content > *:nth-child(4) { animation-delay: .50s; }
.hero__content > *:nth-child(5) { animation-delay: .62s; }

/* ── prefers-reduced-motion ──────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero__content > * {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero__glow { transition: none; }
}
.hero__inner {
  position: relative; z-index: 2;
  flex: 1; display: flex; align-items: center;
  width: min(var(--max-w), 100% - var(--pad-x) * 2);
  margin-inline: auto;
  padding-block: clamp(2rem, 4vh, 3rem);
}
.hero__content {
  display: flex; flex-direction: column; gap: 1.6rem;
  max-width: 560px;
}
.hero__eyebrow {
  display: flex; align-items: center; gap: .65rem;
  font-size: .56rem; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold);
}
.hero__dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  font-weight: 400; line-height: 1.1;
  color: var(--text-dark); letter-spacing: -.024em;
}
.hero__title em {
  font-style: italic; color: var(--navy); font-weight: 400;
}
.hero__sub {
  font-size: .91rem; font-weight: 300; color: var(--text-body);
  line-height: 1.9; max-width: 400px; letter-spacing: .01em;
}
.hero__ctas { display: flex; gap: .7rem; flex-wrap: wrap; align-items: flex-start; }
.hero__trust {
  display: flex; align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(27,45,64,.09);
  gap: 0;
}
.hero__trust-item {
  display: flex; flex-direction: column; gap: .18rem;
  padding-right: 1.6rem;
}
.hero__trust-item strong {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 500;
  color: var(--navy); line-height: 1;
}
.hero__trust-item span {
  font-size: .54rem; font-weight: 400; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-muted);
}
.hero__trust-rule {
  width: 1px; height: 28px;
  background: rgba(27,45,64,.12);
  margin-right: 1.6rem; flex-shrink: 0;
}

/* Ticker dentro do hero */
.hero__ticker {
  position: relative; z-index: 2;
  background: var(--navy);
  padding: .55rem 0;
  overflow: hidden;
}
.hero__ticker .ticker__track span {
  font-size: .5rem;
  color: rgba(255,255,255,.32);
}
.hero__ticker .ticker__sep {
  color: var(--gold) !important;
  opacity: .55;
}


/* ═══════════════════════════════════════════════
   TICKER (compartilhado — usado dentro do hero)
═══════════════════════════════════════════════ */
.ticker__track {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  width: max-content;
  animation: ticker-scroll 38s linear infinite;
  white-space: nowrap;
  user-select: none;
}
.ticker__track span {
  font-size: .5rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════
   SOBRE
═══════════════════════════════════════════════ */
.sobre {
  background: var(--off-white);
  padding-block: var(--section-py);
}
.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  width: min(var(--max-w), 100% - var(--pad-x) * 2);
  margin-inline: auto;
}

/* ── Painel esquerdo institucional ── */
.sobre__panel {
  position: relative;
  background: linear-gradient(150deg, #1e3352 0%, #162840 50%, #0f1e30 100%);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 32px 64px rgba(8,16,28,.22), 0 2px 0 rgba(255,255,255,.04) inset;
  min-height: 380px;
  display: flex;
  align-items: stretch;
}
.sobre__panel-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sobre__panel-arc {
  position: absolute;
  top: -120px; right: -120px;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
}
.sobre__panel-arc::after {
  content: '';
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
}
.sobre__panel-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 30% 70%, rgba(0,0,0,.35) 0%, transparent 65%);
}
.sobre__panel-content {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 3rem 2.5rem;
  width: 100%;
}
.sobre__kpi {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1.75rem 0;
}
.sobre__kpi-num {
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.04em;
}
.sobre__kpi-num sup {
  font-size: 1.6rem;
  vertical-align: super;
  letter-spacing: -.02em;
  opacity: .7;
}
.sobre__kpi-label {
  font-size: .75rem;
  font-weight: 300;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  letter-spacing: .01em;
}
.sobre__panel-rule {
  height: 1px;
  background: rgba(255,255,255,.07);
}
.sobre__panel-badge {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding-top: 1.75rem;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
}
.sobre__panel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(180,210,235,.5);
  flex-shrink: 0;
}

/* ── Conteúdo editorial ── */
.sobre__content { display: flex; flex-direction: column; }
.sobre__text {
  display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 2.25rem;
}
.sobre__text p {
  font-size: .93rem; font-weight: 300;
  color: var(--text-body); line-height: 1.9;
}
.sobre__text--secondary {
  color: var(--text-muted) !important;
  font-size: .85rem !important;
}

/* Feature cards */
.sobre__features {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
}
.sobre__feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1rem;
  border-radius: var(--radius-sm);
  transition: background .25s;
}
.sobre__feat:hover { background: var(--white); }
.sobre__feat-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(27,45,64,.06);
  border-radius: 9px;
  color: var(--navy);
  flex-shrink: 0;
  transition: background .25s;
}
.sobre__feat:hover .sobre__feat-icon { background: rgba(27,45,64,.1); }
.sobre__feat div { display: flex; flex-direction: column; gap: .2rem; }
.sobre__feat strong {
  font-size: .8rem; font-weight: 600;
  color: var(--navy); letter-spacing: .02em;
  line-height: 1.3;
}
.sobre__feat span {
  font-size: .73rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.6;
}


/* ═══════════════════════════════════════════════
   ÁREAS
═══════════════════════════════════════════════ */
.areas {
  background: var(--white);
  padding-block: var(--section-py);
}
.areas__inner {
  width: min(var(--max-w), 100% - var(--pad-x) * 2);
  margin-inline: auto;
}
.areas__header {
  max-width: 520px;
  margin-bottom: 3.5rem;
}
.areas__lead {
  font-size: .92rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.75;
}
.areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--grey-md);
  border-radius: var(--radius);
  padding: 2rem 1.85rem 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  box-shadow: 0 1px 4px rgba(27,45,64,.04);
  transition: transform .32s var(--ease-out), box-shadow .32s, border-color .3s;
  cursor: default;
  overflow: hidden;
}
.area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
  border-radius: var(--radius) var(--radius) 0 0;
}
.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(27,45,64,.1);
  border-color: rgba(27,45,64,.06);
}
.area-card:hover::before { transform: scaleX(1); }

.area-card--wide { grid-column: 2 / 4; }
.area-card--wide .area-card__desc { max-width: 520px; }

/* ícone SVG no topo do card */
.area-card__icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-dim);
  border-radius: 10px;
  color: var(--navy);
  margin-bottom: 1.35rem;
  flex-shrink: 0;
  transition: background .3s var(--ease-out), color .3s, transform .3s var(--ease-out);
}
.area-card:hover .area-card__icon {
  background: var(--navy);
  color: #fff;
  transform: scale(1.06);
}

.area-card__num {
  font-size: .54rem; font-weight: 600; letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: .55rem;
  display: inline-block;
  transition: transform .3s var(--ease-back), color .25s;
}
.area-card:hover .area-card__num {
  transform: translateY(-3px);
  color: var(--navy);
}
.area-card__title {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 500;
  color: var(--text-dark); line-height: 1.3;
  margin-bottom: .65rem;
}
.area-card__desc {
  font-size: .8rem; font-weight: 300;
  color: var(--text-body); line-height: 1.78; flex: 1;
}
.area-card__arrow {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .66rem; font-weight: 500; letter-spacing: .06em;
  color: var(--navy);
  opacity: 0; transform: translateY(6px);
  transition: opacity .22s, transform .22s var(--ease-out);
  margin-top: 1rem;
}
.area-card:hover .area-card__arrow { opacity: 1; transform: none; }

/* seta → desliza no hover */
.area-card__cta {
  position: relative;
  display: inline-block;
}
.area-card__cta::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--navy);
  transition: width .35s var(--ease-expressive);
}
.area-card:hover .area-card__cta::after { width: 100%; }
.area-card__cta-arrow {
  display: inline-block;
  transition: transform .3s var(--ease-back);
}
.area-card:hover .area-card__cta-arrow { transform: translateX(4px); }


/* ═══════════════════════════════════════════════
   PROCESSO
═══════════════════════════════════════════════ */
.processo {
  background: var(--navy);
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}
.processo::before {
  content: '';
  position: absolute;
  top: -60%; right: -15%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.018);
  pointer-events: none;
}
.processo__inner {
  width: min(var(--max-w), 100% - var(--pad-x) * 2);
  margin-inline: auto;
}
.processo__header { margin-bottom: 4rem; }
.processo__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.processo__grid::before {
  content: '';
  position: absolute;
  top: 2.5rem; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right,
    rgba(255,255,255,.0) 0%,
    rgba(255,255,255,.06) 10%,
    rgba(255,255,255,.06) 90%,
    rgba(255,255,255,.0) 100%);
  pointer-events: none;
}
.processo__step {
  padding: 3rem 2.25rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,.06);
  display: flex; flex-direction: column; gap: 1.5rem;
  transition: background .3s;
  position: relative;
}
.processo__step:last-child { border-right: none; }
.processo__step:hover { background: rgba(255,255,255,.03); }
.processo__num {
  font-family: var(--serif);
  font-size: 3.25rem; font-weight: 400;
  color: rgba(255,255,255,.07);
  line-height: 1; display: block;
  transition: color .3s;
}
.processo__step:hover .processo__num { color: rgba(154,118,72,.18); }
.processo__body { display: flex; flex-direction: column; gap: .75rem; }
.processo__step h3 {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 500;
  color: rgba(255,255,255,.88); line-height: 1.35;
}
.processo__step p {
  font-size: .82rem; font-weight: 300;
  color: rgba(255,255,255,.46); line-height: 1.85;
}


/* ═══════════════════════════════════════════════
   DIFERENCIAIS — layout assimétrico
═══════════════════════════════════════════════ */
.difs {
  background: var(--off-white);
  padding-block: var(--section-py);
}
.difs__inner {
  width: min(var(--max-w), 100% - var(--pad-x) * 2);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.difs__left {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.difs__lead {
  font-size: .88rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.75;
  margin-top: -.5rem;
}
.difs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
.dif {
  background: var(--white);
  border: 1px solid var(--grey-md);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
}
.dif:hover {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27,45,64,.08);
}
.dif__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  background: var(--navy-dim);
  border-radius: 10px;
  flex-shrink: 0;
  transition: background .3s;
}
.dif:hover .dif__icon { background: var(--navy-dim2); }
.dif h3 {
  font-family: var(--serif); font-size: 1rem; font-weight: 500;
  color: var(--text-dark); line-height: 1.3;
}
.dif p {
  font-size: .8rem; font-weight: 300;
  color: var(--text-body); line-height: 1.75; flex: 1;
}


/* ═══════════════════════════════════════════════
   DESTAQUE — frase institucional
═══════════════════════════════════════════════ */
.destaque {
  background: var(--navy-dark);
  padding-block: clamp(4rem, 7vw, 7rem);
  position: relative;
  overflow: hidden;
}
.destaque::before {
  content: '"';
  position: absolute;
  top: -1rem; left: 5%;
  font-family: var(--serif);
  font-size: 18rem;
  line-height: 1;
  color: rgba(255,255,255,.025);
  pointer-events: none;
  user-select: none;
}
.destaque__inner {
  width: min(860px, 100% - var(--pad-x) * 2);
  margin-inline: auto;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 1.75rem;
}
.destaque__quote {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  font-weight: 400;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
  letter-spacing: -.01em;
  font-style: normal;
}
.destaque__quote em {
  font-style: italic;
  color: rgba(255,255,255,.55);
}
.destaque__attr {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}


/* ═══════════════════════════════════════════════
   EQUIPE
═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   EQUIPE — Carrossel Premium
═══════════════════════════════════════════════ */
.equipe {
  background: var(--off-white);
  padding-block: var(--section-py);
}
.equipe__wrap {
  width: min(var(--max-w), 100% - var(--pad-x) * 2);
  margin-inline: auto;
  display: flex; flex-direction: column;
  gap: clamp(3rem, 5vw, 4.5rem);
}
.equipe__header { max-width: 640px; }

/* ── Track: empilha todos os slides no mesmo espaço ── */
.tc { position: relative; }
.tc__track {
  display: grid;
  grid-template-areas: 'slide';
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(27,45,64,.08);
  border: 1px solid var(--grey-md);
  min-height: 500px;
}

/* ── Slide: grid 2 col (info | foto) ── */
.tc__slide {
  grid-area: slide;
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: stretch;
  background: var(--white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .5s ease, visibility .5s ease;
}
.tc__slide.tc--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ── Info (coluna esquerda) ── */
.tc__info {
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  padding: clamp(2.5rem, 4vw, 4rem) clamp(2.5rem, 4vw, 4rem);
  border-right: 1px solid var(--line);
}
.tc__tag {
  font-size: .56rem; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold);
}
.tc__name {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.1vw, 2.15rem);
  font-weight: 400; line-height: 1.22;
  color: var(--text-dark); letter-spacing: -.018em;
}
.tc__area {
  font-family: var(--serif); font-style: italic;
  font-size: .93rem; color: var(--navy);
  margin-top: -.2rem;
}
.tc__oab {
  font-size: .57rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-muted);
  margin-top: -.5rem;
}
.tc__bio {
  font-size: .875rem; font-weight: 300;
  color: var(--text-body); line-height: 1.9;
  max-width: 400px;
  padding-top: .35rem;
  border-top: 1px solid rgba(27,45,64,.08);
}
.tc__info .btn { align-self: flex-start; margin-top: .4rem; }

/* ── Animação do texto ao entrar ── */
@keyframes tc-info-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.tc__slide.tc--active .tc__info {
  animation: tc-info-in .6s var(--ease-out) .14s both;
}

/* ── Foto (coluna direita) ── */
.tc__photo-wrap {
  position: relative; overflow: hidden;
  width: 100%;
  max-width: 533px;
  justify-self: end;
}
.tc__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  background: linear-gradient(160deg, #1e3554 0%, #12202e 60%, #0e1b28 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
/* borda dourada sutil à esquerda */
.tc__photo::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%, rgba(154,118,72,.35) 30%,
    rgba(154,118,72,.35) 70%, transparent 100%);
}
/* luz ambiente sutil */
.tc__photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 65% 20%, rgba(154,118,72,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 35% 80%, rgba(255,255,255,.018) 0%, transparent 45%);
  pointer-events: none;
}
/* fotos reais — tratamento uniforme para toda a série */
.tc__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  z-index: 2;
  filter: saturate(.84) brightness(.96) contrast(1.02);
  transition: filter .4s var(--ease-expressive);
}
.tc__slide:hover .tc__photo img {
  filter: saturate(.9) brightness(.99) contrast(1.02);
}
/* overlay sutil na base — integra foto ao card */
.tc__photo--has-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,17,32,.38) 0%,
    rgba(10,17,32,.08) 30%,
    transparent        55%
  );
  z-index: 3;
  pointer-events: none;
}
/* animação foto ao entrar */
@keyframes tc-photo-in {
  from { transform: scale(1.04); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.tc__slide.tc--active .tc__photo {
  animation: tc-photo-in .7s var(--ease-out) .08s both;
}

/* Slide: crossfade mais elegante */
.tc__slide {
  transition: opacity .55s var(--ease-out), visibility .55s !important;
}

/* ── Stage: container relativo para as setas absolutas ── */
.tc__stage {
  position: relative;
}
.tc { position: relative; overflow: visible; }

/* ── Rodapé / controles ── */
.tc__footer {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 2.25rem;
  gap: 1.5rem;
}

/* contador 01 / 05 */
.tc__counter {
  display: flex; align-items: baseline; gap: .2rem;
  font-family: var(--serif);
  flex-shrink: 0;
}
.tc__count-cur {
  font-size: 1.6rem; font-weight: 400;
  color: var(--navy); line-height: 1;
}
.tc__count-sep, .tc__count-tot {
  font-size: .75rem; color: var(--text-muted); font-weight: 300;
}

/* indicadores de posição (traços) */
.tc__dots {
  display: flex; align-items: center; gap: .5rem;
  flex: 1;
}
.tc__dot {
  height: 2px;
  width: 24px;
  border-radius: 2px;
  background: var(--grey-md);
  padding: 0;
  transition: background .3s, width .35s var(--ease-out);
  border: none; cursor: pointer;
}
.tc__dot.tc--active {
  background: var(--navy);
  width: 44px;
}

/* ── Setas: absolutas, fora do card, centralizadas verticalmente ── */
.tc__arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(200,168,112,.28);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(27,45,64,.13), 0 1px 4px rgba(27,45,64,.07);
  transition: background .22s, border-color .22s, color .22s, transform .22s var(--ease-out), box-shadow .22s;
  pointer-events: auto;
}
.tc__arrow--prev { left: -60px; transform: translateY(-50%); }
.tc__arrow--next { right: -60px; transform: translateY(-50%); }
.tc__arrow:hover {
  background: var(--navy);
  border-color: rgba(200,168,112,.55);
  color: var(--gold);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 28px rgba(27,45,64,.22);
}
.tc__arrow:active { transform: translateY(-50%) scale(.96); }


/* ═══════════════════════════════════════════════
   CONTATO
═══════════════════════════════════════════════ */
.contato {
  background: var(--navy);
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}
.contato::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.015);
  pointer-events: none;
}
.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  width: min(var(--max-w), 100% - var(--pad-x) * 2);
  margin-inline: auto;
  position: relative; z-index: 1;
}
.contato__left { display: flex; flex-direction: column; gap: 2rem; }
.contato__sub {
  font-size: .9rem; font-weight: 300;
  color: rgba(255,255,255,.48); line-height: 1.85;
}
/* Info list — endereço, telefone, horário, e-mail */
.contato__info {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.025);
}
.contato__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .25s;
}
.contato__info-item:last-child { border-bottom: none; }
.contato__info-item:hover { background: rgba(255,255,255,.04); }
.contato__info-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  color: rgba(255,255,255,.45);
  flex-shrink: 0;
  margin-top: 2px;
}
.contato__info-body {
  display: flex; flex-direction: column; gap: .2rem;
}
.contato__info-label {
  font-size: .52rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(255,255,255,.28);
  line-height: 1;
}
.contato__info-value {
  font-size: .88rem; font-weight: 300;
  color: rgba(255,255,255,.75); line-height: 1.6;
}
.contato__info-value--link {
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
.contato__info-value--link:hover { color: #fff; }

/* Legado — manter compatibilidade se ainda existir em algum breakpoint */
.contato__cards { display: none; }


/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--navy-dark);
  padding-top: 5rem;
  border-top: 1px solid rgba(255,255,255,.04);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.5fr 1fr;
  gap: 3rem;
  width: min(var(--max-w), 100% - var(--pad-x) * 2);
  margin-inline: auto;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__logo {
  height: 30px; width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1); opacity: .75;
}
.footer__col p {
  font-size: .84rem; font-weight: 300;
  color: rgba(255,255,255,.4); line-height: 1.72; margin-bottom: .4rem;
}
.footer__oab {
  font-size: .58rem !important; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.22) !important;
  margin-top: .75rem;
}
.footer__col h4 {
  font-size: .58rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer__col ul li,
.footer__col ul a {
  font-size: .84rem; font-weight: 300;
  color: rgba(255,255,255,.45); line-height: 1.45; transition: color .2s;
}
.footer__col ul a:hover { color: rgba(255,255,255,.9); }
.footer__address { line-height: 1.65 !important; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
  width: min(var(--max-w), 100% - var(--pad-x) * 2);
  margin-inline: auto; padding-block: 1.75rem;
}
.footer__bottom p {
  font-size: .68rem; font-weight: 300;
  color: rgba(255,255,255,.22); letter-spacing: .04em;
}


/* ═══════════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem; z-index: 900;
  width: 64px; height: 64px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform .25s var(--ease), opacity .3s, box-shadow .25s;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — Tablet ≤ 1024px
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .difs__inner { grid-template-columns: 1fr; }
  .difs__left  { position: static; margin-bottom: -.5rem; }
  .difs__grid  { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  /* Equipe carousel — tablet: reduz padding foto */
  .tc__slide { grid-template-columns: 1fr 1fr; }
  .tc__arrow--prev { left: -48px; }
  .tc__arrow--next { right: -48px; }
  .processo__grid { grid-template-columns: repeat(2, 1fr); }
  .processo__step { border-bottom: 1px solid rgba(255,255,255,.06); }
  .processo__step:nth-child(2) { border-right: none; }
  .processo__step:nth-child(3) { border-bottom: none; }
  .processo__step:nth-child(4) { border-right: none; border-bottom: none; }
  .area-card--wide { grid-column: auto; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — Mobile ≤ 768px
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: #fff;
    flex-direction: column; align-items: stretch;
    gap: 0; padding: 1.5rem 1.5rem 2rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%); opacity: 0;
    transition: transform .35s var(--ease-out), opacity .3s;
    box-shadow: 0 8px 32px rgba(20,20,20,.08);
    pointer-events: none;
  }
  .nav__menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__menu li { border-bottom: 1px solid var(--line); }
  .nav__menu li:last-child { border-bottom: none; padding-top: 1rem; }
  .nav__link { display: block; padding: .9rem 0; font-size: .88rem; }
  .nav__cta-item .btn { width: 100%; justify-content: center; }

  /* Hero */
  .hero__bg { background-position: 70% center; }
  .hero__overlay {
    background:
      linear-gradient(to bottom,
        rgba(8,13,24,.96)  0%,
        rgba(10,17,32,.91) 45%,
        rgba(12,20,38,.82) 100%);
  }
  .hero__content { max-width: 100%; gap: 1.25rem; }
  .hero__title { font-size: clamp(2.1rem, 7vw, 3rem); }
  .hero__sub { font-size: .88rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__ticker { display: none; }

  /* Sobre — handled by dedicated breakpoints in sobre__panel block */

  /* Áreas */
  .areas__grid   { grid-template-columns: repeat(2, 1fr); }
  .area-card--wide { grid-column: 1 / -1; }

  /* Processo */
  .processo__grid { grid-template-columns: 1fr; }
  .processo__step { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .processo__step:last-child { border-bottom: none; }

  /* Diferenciais */
  .difs__grid { grid-template-columns: 1fr; }

  /* Equipe carousel — mobile: empilha foto em cima, texto embaixo */
  .tc__slide {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .tc__photo-wrap { order: -1; width: 100%; max-width: 533px; justify-self: center; }
  .tc__photo { aspect-ratio: 4 / 5; width: 100%; }
  .tc__info { padding: 2rem 1.75rem 2.25rem; }
  .tc__footer { flex-wrap: wrap; gap: 1.25rem; }
  .tc__counter { order: -1; width: 100%; }
  .tc__info .btn { width: 100%; justify-content: center; }

  /* Setas no mobile: saem do absolute e vão abaixo do track */
  .tc__stage {
    display: grid;
    grid-template-areas:
      'track track'
      'prev  next';
    grid-template-columns: auto auto;
    justify-content: center;
    row-gap: 1.25rem;
    column-gap: 1rem;
  }
  .tc__track       { grid-area: track; }
  .tc__arrow--prev { grid-area: prev; }
  .tc__arrow--next { grid-area: next; }
  .tc__arrow {
    position: static;
    transform: none;
  }
  .tc__arrow:hover { transform: scale(1.1); }
  .tc__arrow:active { transform: scale(.96); }

  /* Contato */
  .contato__inner { grid-template-columns: 1fr; gap: 3rem; }
  .contato__cards { grid-template-columns: 1fr; }
  .contato__left .btn { width: 100%; justify-content: center; }

  /* Destaque */
  .destaque__quote { font-size: 1.3rem; }
  .destaque::before { font-size: 10rem; }

  /* Footer */
  .footer__inner  { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — Small ≤ 480px
═══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__trust   { flex-wrap: wrap; gap: .75rem; }
  .hero__trust-rule { display: none; }
  .hero__trust-item { padding-right: 1.25rem; }
  .areas__grid   { grid-template-columns: 1fr; }
  .area-card--wide { grid-column: auto; }
  .difs__grid    { grid-template-columns: 1fr; }
  .wa-float      { bottom: 1.25rem; right: 1.25rem; width: 46px; height: 46px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — Notebook ≤ 1280px
═══════════════════════════════════════════════ */
@media (max-width: 1280px) and (min-width: 769px) {
  .hero__title { font-size: clamp(2.4rem, 3.6vw, 4rem); }
  .tc__slide   { grid-template-columns: 55% 45%; }
  .tc__arrow--prev { left: -52px; }
  .tc__arrow--next { right: -52px; }
  .tc__info    { padding: 2.5rem 2.5rem 2.5rem 2.5rem; }
}

/* Telas baixas (notebook) — compacta o hero */
@media (max-height: 800px) and (min-width: 769px) {
  .hero__content { gap: 1.25rem; }
  .hero__title   { font-size: clamp(2.2rem, 3.5vw, 3.8rem); }
  .hero__sub     { font-size: .88rem; }
  .hero__trust   { padding-top: .9rem; }
  .hero__trust-item strong { font-size: 1.1rem; }
}

/* ═══════════════════════════════════════════════
   MOBILE — Experiência enxuta e objetiva
   Adiciona ao bloco ≤ 768px existente
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-py: clamp(2.75rem, 7vw, 4rem); }

  /* ── Ocultar seções secundárias ── */
  .difs    { display: none !important; }
  .destaque { display: none !important; }

  /* ── Hero: limpo e direto ── */
  .hero__eyebrow { display: none; }
  .hero__trust   { display: none; }
  .hero__content { gap: 1.1rem; }
  .hero__sub     { font-size: .84rem; line-height: 1.72; }

  /* ── Sobre: painel compacto no mobile ── */
  .sobre { padding-block: clamp(2rem, 5vw, 3rem); }
  .sobre__panel { min-height: auto; }
  .sobre__panel-content { padding: 1.75rem; }
  .sobre__kpi-num { font-size: 2.6rem; }
  .sobre__feat { padding: .75rem .5rem; }

  /* ── Áreas: accordion 1 coluna ── */
  .areas__grid {
    grid-template-columns: 1fr !important;
    gap: .45rem;
  }
  .area-card--wide { grid-column: auto !important; }
  .area-card {
    padding: 1rem 1.15rem;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    box-shadow: none;
    border-radius: var(--radius-sm);
  }
  .area-card__icon {
    width: 30px; height: 30px;
    border-radius: 7px;
    margin-bottom: .6rem;
  }
  .area-card__icon svg { width: 14px; height: 14px; }
  .area-card__num  { display: none; }
  .area-card__title { font-size: .87rem; margin-bottom: 0; }
  .area-card__desc {
    display: none;
    padding-top: .6rem;
    font-size: .77rem;
    line-height: 1.72;
    color: var(--text-body);
  }
  .area-card.m-open .area-card__desc { display: block; }
  .area-card__arrow {
    opacity: .38;
    transform: none;
    margin-top: .45rem;
    font-size: .6rem;
    letter-spacing: .04em;
  }
  .area-card.m-open .area-card__arrow { display: none; }
  .area-card.m-open { border-color: rgba(27,45,64,.14); }
  .area-card::before { display: none; }

  /* ── Processo: 4 passos compactos ── */
  .processo { padding-block: clamp(2.5rem, 6vw, 4rem); }
  .processo__step { padding: 1.2rem 1.25rem 1.1rem; gap: .6rem; }
  .processo__num  { font-size: 1.75rem; }
  .processo__step h3 { font-size: .87rem; }
  .processo__step p  { font-size: .74rem; line-height: 1.7; }

  /* ── Equipe: bio colapsável ── */
  .tc__bio-collapse {
    display: flex; flex-direction: column; gap: .35rem;
  }
  .tc__bio-collapse:not(.m-open) .tc__bio {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .tc__bio-toggle {
    background: none; border: none; padding: 0;
    font-family: var(--sans);
    font-size: .63rem; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    color: var(--navy); opacity: .55;
    cursor: pointer; align-self: flex-start;
    text-decoration: underline; text-underline-offset: 3px;
    -webkit-tap-highlight-color: transparent;
  }
  .tc__bio-toggle:hover { opacity: .85; }

  /* ── Contato: WhatsApp em destaque ── */
  .contato__left .btn--primary {
    padding: 1rem 1.5rem;
    font-size: .75rem;
    width: 100%;
    justify-content: center;
  }
  .contato { padding-block: clamp(2.5rem, 6vw, 4rem); }

  /* CTA final e form no mobile */
  .cta-final__actions { flex-direction: column; }
  .cta-final__actions .btn { width: 100%; justify-content: center; }
  .form__row { grid-template-columns: 1fr; }
  .contato__form-wrap { padding: 2rem 1.5rem; }
  .cta-final { display: block; }
}

/* ═══════════════════════════════════════════════
   NOVOS COMPONENTES — CTA Final · Formulário
═══════════════════════════════════════════════ */

/* ── Area card CTA link ── */
.area-card__cta {
  display: inline-block;
  margin-top: auto;
  padding-top: 1rem;
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--t), transform var(--t) var(--ease-out), color var(--t);
}
.area-card:hover .area-card__cta {
  opacity: .7;
  transform: none;
}
.area-card:hover .area-card__cta:hover { opacity: 1; color: var(--gold); }

/* ── CTA Final Section ── */
.cta-final {
  background: var(--navy-dark);
  padding-block: clamp(4.5rem, 8vw, 7rem);
}
.cta-final__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--pad-x);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.cta-final__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--white);
}
.cta-final__title em {
  font-style: italic;
  color: rgba(255,255,255,.65);
}
.cta-final__sub {
  max-width: 52ch;
  font-size: clamp(.88rem, 1.2vw, 1rem);
  line-height: 1.75;
  color: rgba(255,255,255,.5);
}
.cta-final__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .5rem;
}

/* ── Contato form wrap ── */
.contato__form-wrap {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 2.5rem 2.25rem;
}
.contato__form-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .45rem;
}
.contato__form-sub {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

/* ── Form fields ── */
.contato__form { display: flex; flex-direction: column; gap: 1rem; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form__group label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.form__group input,
.form__group select,
.form__group textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-family: var(--sans);
  font-size: .85rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--t), background var(--t);
  -webkit-appearance: none;
}
.form__group input::placeholder,
.form__group textarea::placeholder {
  color: rgba(255,255,255,.22);
}
.form__group select {
  color: rgba(255,255,255,.6);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form__group select option {
  background: var(--navy-dark);
  color: var(--white);
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: rgba(154,118,72,.55);
  background: rgba(255,255,255,.1);
}
.form__group textarea { resize: vertical; min-height: 100px; }

.form__submit {
  margin-top: .5rem;
  width: 100%;
  justify-content: center;
}
.form__disclaimer {
  font-size: .67rem;
  color: rgba(255,255,255,.28);
  text-align: center;
  line-height: 1.6;
  letter-spacing: .02em;
}

/* Form success state */
.form__success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}
.form__success.visible { display: block; }
.form__success-icon {
  width: 48px; height: 48px;
  background: rgba(154,118,72,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold-lt);
}
.form__success h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .5rem;
}
.form__success p {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
}

/* ── Trust plus visual fix ── */
.trust-plus {
  font-size: .75em;
  vertical-align: super;
  font-weight: 600;
  margin-left: .05em;
}

/* ═══════════════════════════════════════════════
   HERO — BARRA INSTITUCIONAL (substitui ticker)
═══════════════════════════════════════════════ */
.hero__bar {
  position: relative; z-index: 2;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: .7rem 0;
}
.hero__bar-inner {
  width: min(var(--max-w), 100% - var(--pad-x) * 2);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  flex-wrap: wrap;
}
.hero__bar-inner span {
  font-size: .52rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
}
.hero__bar-sep {
  width: 1px; height: 12px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hero__bar { display: none; }
}
/* Remover ticker antigo se ainda existir */
.hero__ticker { display: none !important; }

/* ═══════════════════════════════════════════════
   HERO CONSTELLATION — constelação jurídica
═══════════════════════════════════════════════ */

/* Neutraliza todos os estilos legados do painel */
.hero__panel-grid, .hero__panel-mono, .hero__panel-cards, .hero__panel-seal,
.hp__geo, .hp__arc, .hp__grid, .hp__plane, .hp__vline, .hp__glow, .hp__scanline,
.hp__content, .hp__head, .hp__prog, .hp__steps, .hp__foot,
.hp__mesh, .hp__glass, .hp__glass-head, .hp__glass-brand, .hp__brand-pulse,
.hp__glass-city, .hp__glass-rule, .hp__stats-grid, .hp__stat, .hp__stat-vr,
.hp__info-list, .hp__info-item, .hp__flow, .hp__flow-steps, .hp__flow-arr
{ display: none !important; }

/* Container da constelação — ocupa a coluna direita do grid */
.hero__constellation {
  display: none;
  position: relative;
  height: 500px;
  align-self: center;
}
@media (min-width: 900px) {
  .hero__constellation { display: block; }
}

/* Canvas ocupa todo o container */
.hc__canvas {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  pointer-events: none;
}

/* Glow radial dourado de fundo */
.hc__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 65% 35%, rgba(200,168,112,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 20% 70%, rgba(200,168,112,.04) 0%, transparent 60%);
}

/* Cards glassmorphism flutuantes */
.hc__float {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(200,168,112,.16);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: .85rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  pointer-events: none;
}
.hc__float--1 { top: 10%; left: 2%; animation: hc-float-a 6s ease-in-out infinite; }
.hc__float--2 { top: 48%; right: 3%; animation: hc-float-b 7.5s ease-in-out infinite; }
.hc__float--3 { bottom: 10%; left: 34%; animation: hc-float-c 9s ease-in-out infinite; }

.hc__float-line {
  height: 1px;
  width: 78px;
  background: linear-gradient(90deg, rgba(200,168,112,.55), rgba(200,168,112,.08));
  border-radius: 1px;
}
.hc__float-line--s  { width: 50px; }
.hc__float-line--xs { width: 28px; opacity: .6; }
.hc__float-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(200,168,112,.65);
  box-shadow: 0 0 8px rgba(200,168,112,.45);
}

@keyframes hc-float-a {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}
@keyframes hc-float-b {
  0%, 100% { transform: translateY(-4px); }
  50%       { transform: translateY(5px); }
}
@keyframes hc-float-c {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(3px, -7px); }
  66%       { transform: translate(-2px, 4px); }
}

@media (prefers-reduced-motion: reduce) {
  .hc__float { animation: none !important; }
}

/* ── Camadas geométricas de fundo ── */
.hp__geo {
  position: absolute; inset: 0;
  pointer-events: none;
}

/* Arcos concêntricos — canto superior direito */
.hp__arc {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  border-color: transparent;
}
.hp__arc--outer {
  width: 520px; height: 520px;
  top: -200px; right: -200px;
  border-top-color: rgba(255,255,255,.045);
  border-right-color: rgba(255,255,255,.045);
}
.hp__arc--mid {
  width: 360px; height: 360px;
  top: -120px; right: -120px;
  border-top-color: rgba(180,205,235,.1);
  border-right-color: rgba(180,205,235,.1);
}
.hp__arc--inner {
  width: 210px; height: 210px;
  top: -60px; right: -60px;
  border-top-color: rgba(255,255,255,.06);
  border-right-color: rgba(255,255,255,.06);
}

/* Grid editorial — máscara radial para degradê */
.hp__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image:
    radial-gradient(ellipse at 30% 60%,
      rgba(0,0,0,.45) 0%,
      rgba(0,0,0,.15) 45%,
      transparent 70%);
  mask-image:
    radial-gradient(ellipse at 30% 60%,
      rgba(0,0,0,.45) 0%,
      rgba(0,0,0,.15) 45%,
      transparent 70%);
}

/* Plano secundário — cria profundidade pelo deslocamento tonal */
.hp__plane {
  position: absolute;
  right: 0; top: 18%; bottom: 15%;
  width: 48%;
  background: linear-gradient(to right,
    rgba(255,255,255,.0) 0%,
    rgba(255,255,255,.025) 100%);
  border-left: 1px solid rgba(255,255,255,.05);
  border-radius: 0;
}

/* Linha vertical — acento editorial */
.hp__vline {
  position: absolute;
  left: 28%; top: 8%; bottom: 8%;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(255,255,255,.07) 20%,
    rgba(255,255,255,.07) 80%,
    transparent 100%);
}

/* Glow ambiental — canto inferior esquerdo, tom azul */
.hp__glow {
  position: absolute;
  bottom: -60px; left: -40px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(ellipse,
    rgba(80,130,200,.07) 0%,
    transparent 70%);
}

/* Scan line — removida (efeito de luz passando) */
.hp__scanline { display: none; }

/* ── Conteúdo do painel ── */
.hp__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 2rem 2.25rem 1.75rem;
  z-index: 2;
}

/* Cabeçalho: label + contador */
.hp__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.hp__head-label {
  font-size: .44rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.hp__head-counter {
  font-size: .52rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(255,255,255,.18);
  font-variant-numeric: tabular-nums;
}
.hp__cur {
  color: rgba(255,255,255,.5);
  transition: opacity .4s ease;
}
.hp__sep { margin: 0 .15em; }

/* Barra de progresso */
.hp__prog {
  height: 1px;
  background: rgba(255,255,255,.08);
  border-radius: 1px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}
.hp__prog-fill {
  height: 100%;
  width: 25%;
  background: linear-gradient(to right,
    rgba(180,205,235,.5),
    rgba(180,205,235,.9));
  border-radius: 1px;
  transition: width .35s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.hp__prog-fill::after {
  content: '';
  position: absolute;
  right: 0; top: -2px;
  width: 4px; height: 5px;
  background: rgba(220,235,255,.9);
  border-radius: 2px;
  box-shadow: none;
}

/* Etapas */
.hp__steps {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}
.hp__step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0 .9rem;
  align-items: start;
  cursor: default;
}

/* Coluna esquerda: número + conector */
.hp__step-l {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hp__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  font-size: .48rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(255,255,255,.25);
  flex-shrink: 0;
  transition: all .28s var(--ease);
  line-height: 1;
  position: relative;
}
.hp__step.hp--active .hp__step-num {
  border-color: rgba(180,210,255,.5);
  color: rgba(255,255,255,.92);
  background: rgba(180,210,255,.07);
  box-shadow: 0 0 0 4px rgba(180,210,255,.06);
}
/* Ponto central no step ativo — limpo, sem pulso */
.hp__step.hp--active .hp__step-num::after {
  content: '';
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(180,210,255,.6);
}

/* Linha conectora vertical */
.hp__step-connector {
  width: 1px;
  flex: 1;
  min-height: 14px;
  margin: 4px 0;
  background: rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}
.hp__step-connector::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to bottom,
    rgba(180,210,255,.5),
    rgba(180,210,255,.1));
  transition: height .6s var(--ease) .1s;
}
.hp__step.hp--active .hp__step-connector::after { height: 100%; }

/* Coluna direita: título + descrição expansível */
.hp__step-r {
  padding-bottom: .85rem;
  padding-top: 5px;
}
.hp__step-title {
  display: block;
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.2;
  color: rgba(255,255,255,.3);
  transition: color .28s var(--ease);
}
.hp__step.hp--active .hp__step-title {
  color: rgba(255,255,255,.93);
}

/* Descrição — colapsa/expande via max-height */
.hp__step-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s var(--ease), opacity .28s var(--ease);
  opacity: 0;
}
.hp__step.hp--active .hp__step-expand {
  max-height: 80px;
  opacity: 1;
}
.hp__step-desc {
  display: block;
  font-size: .7rem;
  font-weight: 300;
  color: rgba(180,210,235,.55);
  line-height: 1.65;
  padding-top: .45rem;
}

/* Rodapé com tagline */
.hp__foot {
  margin-top: auto;
  padding-top: 1rem;
}
.hp__foot-line {
  height: 1px;
  background: rgba(255,255,255,.07);
  margin-bottom: 1rem;
}
.hp__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: .82rem;
  font-weight: 400;
  color: rgba(255,255,255,.25);
  line-height: 1.55;
  letter-spacing: -.005em;
}

/* ═══════════════════════════════════════════════
   CAMADAS VISUAIS — backgrounds das seções
═══════════════════════════════════════════════ */
/* Hero → fundo com perspectiva visual */
.hero {
  background: linear-gradient(180deg, #f5f4f1 0%, #f8f7f5 100%);
}

/* Sobre → off-white com borda sutil no topo */
.sobre {
  background: linear-gradient(180deg, #f8f7f5 0%, #f2f1ef 100%);
  border-top: 1px solid rgba(27,45,64,.06);
}

/* Áreas → branco puro com micro-padrão */
.areas {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(27,45,64,.025) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 100%, rgba(154,118,72,.03) 0%, transparent 50%),
    var(--white);
}

/* Diferenciais → off-white com detalhe diagonal */
.difs {
  background: linear-gradient(135deg, #f8f7f5 0%, #f0efed 40%, #f5f4f2 100%);
  position: relative;
}
.difs::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(27,45,64,.08) 30%, rgba(27,45,64,.08) 70%, transparent 100%);
}

/* Equipe → ligeiramente diferente do off-white padrão */
.equipe {
  background: linear-gradient(180deg, #f2f1ef 0%, #f8f7f5 100%);
}

/* Separadores de seção */
.sobre,
.areas,
.difs,
.equipe {
  border-bottom: 1px solid rgba(27,45,64,.04);
}

/* ═══════════════════════════════════════════════
   CARDS — hover premium aprimorado
═══════════════════════════════════════════════ */
.area-card {
  box-shadow: 0 1px 3px rgba(27,45,64,.04), 0 4px 16px rgba(27,45,64,.03) !important;
  transition: transform .32s var(--ease-out), box-shadow .32s var(--ease-out),
              border-color .3s var(--ease-out) !important;
}
.area-card:hover {
  transform: translateY(-6px) !important;
  box-shadow:
    0 16px 48px rgba(27,45,64,.13),
    0 4px 12px rgba(27,45,64,.07),
    0 0 0 1px rgba(27,45,64,.06) !important;
  border-color: rgba(27,45,64,.1) !important;
}

/* Dif cards */
.dif {
  box-shadow: 0 1px 3px rgba(27,45,64,.04);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.dif:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(27,45,64,.1), 0 2px 8px rgba(27,45,64,.05) !important;
}

/* Sobre pillar cards */
.sobre__pillar:hover {
  box-shadow: 0 6px 24px rgba(27,45,64,.07) !important;
  transform: translateY(-2px);
  transition: all .3s var(--ease-out);
}

/* ═══════════════════════════════════════════════
   PROCESSO — profundidade visual na timeline
═══════════════════════════════════════════════ */
.processo {
  background: linear-gradient(160deg, #12202e 0%, #1b2d40 50%, #1a2c3f 100%);
}

/* ═══════════════════════════════════════════════
   AUTORIDADE — profundidade sutil
═══════════════════════════════════════════════ */
.autoridade {
  background: linear-gradient(145deg, #1b2d40 0%, #12202e 55%, #162538 100%);
}

/* ═══════════════════════════════════════════════
   CTA FINAL — mais luz, menos peso
═══════════════════════════════════════════════ */
.cta-final {
  background: linear-gradient(145deg, #162236 0%, #1b2d40 40%, #12202e 100%);
}
.cta-final__inner {
  position: relative; z-index: 1;
}

/* ═══════════════════════════════════════════════
   DESTAQUE — refinamento visual
═══════════════════════════════════════════════ */
.destaque {
  background: linear-gradient(160deg, #12202e 0%, #1b2d40 100%);
}

/* ── Contato layout override — form on right ── */
@media (min-width: 769px) {
  .contato__inner {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
  .contato__cards {
    margin-top: 1.5rem;
  }
}


/* ═══════════════════════════════════════════════
   BTN adicional
═══════════════════════════════════════════════ */
.btn--outline-light {
  background: transparent;
  color: rgba(255,255,255,.82);
  border-color: rgba(255,255,255,.22);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.45);
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════
   HERO — PAINEL DIREITO
═══════════════════════════════════════════════ */

/* Hero 2-col no desktop */
@media (min-width: 900px) {
  .hero__inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
  }
  .hero__content {
    max-width: none;
  }
}
@media (min-width: 1100px) {
  .hero__inner {
    grid-template-columns: 1fr 480px;
  }
}

/* .hero__panel legacy — substituído por .hero__constellation acima */
.hero__panel { display: none !important; }


/* ═══════════════════════════════════════════════
   SOBRE — QUOTE E PILARES (atualizados)
═══════════════════════════════════════════════ */
/* Painel sobre — responsivo */
@media (max-width: 1024px) {
  .sobre__inner { grid-template-columns: 1fr; }
  .sobre__panel { min-height: auto; flex-direction: row; }
  .sobre__panel-content { flex-direction: row; align-items: center; padding: 2rem; gap: 0; flex-wrap: wrap; }
  .sobre__kpi { padding: 1rem 1.5rem; flex: 1 1 140px; }
  .sobre__panel-rule { width: 1px; height: auto; align-self: stretch; background: rgba(255,255,255,.07); }
  .sobre__panel-badge { padding-top: 0; padding-left: 1.5rem; flex: 1 1 100%; border-top: 1px solid rgba(255,255,255,.07); margin-top: .5rem; }
}
@media (max-width: 600px) {
  .sobre__panel-content { flex-direction: column; align-items: flex-start; }
  .sobre__panel-rule { width: 100%; height: 1px; }
  .sobre__kpi { padding: 1.25rem 0; flex: none; width: 100%; }
  .sobre__panel-badge { padding-left: 0; border-top: 1px solid rgba(255,255,255,.07); margin-top: 0; }
  .sobre__features { gap: 0; }
}


/* ═══════════════════════════════════════════════
   AUTORIDADE — nova seção dark
═══════════════════════════════════════════════ */
.autoridade {
  background: var(--navy);
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}
.autoridade::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: rgba(255,255,255,.018);
  pointer-events: none;
}
.autoridade::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(154,118,72,.04);
  pointer-events: none;
}
.autoridade__inner {
  width: min(var(--max-w), 100% - var(--pad-x) * 2);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  position: relative; z-index: 1;
}
.autoridade__title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.autoridade__title em {
  font-style: italic;
  color: rgba(255,255,255,.5);
}
.autoridade__text {
  font-size: .9rem;
  font-weight: 300;
  color: rgba(255,255,255,.48);
  line-height: 1.85;
}
/* Grid padrão: 2 cols (usado como fallback) */
.autoridade__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
}
/* Variante 3 cards */
.autoridade__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
/* CTA dentro do left */
.autoridade__cta {
  margin-top: 2rem;
  display: inline-flex;
}
.btn--outline-light {
  border-color: rgba(255,255,255,.25);
  color: rgba(255,255,255,.75);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}
.aut-card {
  background: rgba(255,255,255,.025);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: background .3s;
}
.aut-card:hover { background: rgba(255,255,255,.05); }
.aut-card__icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  color: rgba(180,210,235,.7);
  flex-shrink: 0;
  transition: background .3s;
}
.aut-card:hover .aut-card__icon { background: rgba(255,255,255,.1); }
.aut-card h3 {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  line-height: 1.3;
}
.aut-card p {
  font-size: .78rem;
  font-weight: 300;
  color: rgba(255,255,255,.4);
  line-height: 1.75;
}
@media (max-width: 1024px) {
  .autoridade__inner { grid-template-columns: 1fr; }
  .autoridade__grid--3 { grid-template-columns: repeat(3, 1fr); }
  .autoridade__grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .autoridade__grid,
  .autoridade__grid--3 { grid-template-columns: 1fr; background: none; border: none; gap: .75rem; }
  .aut-card { border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); }
}


/* ═══════════════════════════════════════════════
   ÁREAS — area-card__top + tags
═══════════════════════════════════════════════ */
.area-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0;
}
.area-card__num {
  /* herdado, mas agora posicionado no topo direito */
  margin-bottom: 0;
  margin-top: .1rem;
}
.area-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .85rem;
  margin-bottom: .25rem;
}
.area-card__tags span {
  display: inline-block;
  font-size: .56rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  background: var(--navy-dim);
  color: var(--navy);
  border-radius: 4px;
  border: 1px solid var(--navy-dim2);
  transition: background .22s, color .22s;
}
.area-card:hover .area-card__tags span {
  background: var(--navy-dim2);
}


/* ═══════════════════════════════════════════════
   PROCESSO — layout 2-col + timeline vertical
═══════════════════════════════════════════════ */
/* override na estrutura interna */
.processo__inner {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.processo__left {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.processo__intro {
  font-size: .88rem;
  font-weight: 300;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  margin-top: 1rem;
}
.processo__timeline {
  display: flex;
  flex-direction: column;
}
/* Cada passo da timeline */
.tl__step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0 1.5rem;
  position: relative;
}
.tl__indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.tl__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(154,118,72,.35);
  background: rgba(154,118,72,.06);
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 400;
  color: var(--gold-lt);
  flex-shrink: 0;
  z-index: 1;
}
.tl__line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, rgba(154,118,72,.2) 0%, rgba(255,255,255,.04) 100%);
  margin-block: .5rem;
  min-height: 2rem;
}
.tl__body {
  padding-bottom: 2.5rem;
  padding-top: .6rem;
}
.tl__body h3 {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  line-height: 1.3;
  margin-bottom: .65rem;
}
.tl__body p {
  font-size: .83rem;
  font-weight: 300;
  color: rgba(255,255,255,.45);
  line-height: 1.85;
}

@media (max-width: 900px) {
  .processo__inner {
    grid-template-columns: 1fr;
  }
  .processo__left {
    position: static;
  }
}
@media (max-width: 600px) {
  .tl__step { grid-template-columns: 48px 1fr; gap: 0 1rem; }
  .tl__num { width: 36px; height: 36px; font-size: .8rem; }
  .tl__body { padding-bottom: 1.75rem; }
  .tl__body h3 { font-size: .92rem; }
  .tl__body p  { font-size: .76rem; }
}


/* ═══════════════════════════════════════════════
   DIFERENCIAIS — quote de impacto
═══════════════════════════════════════════════ */
.difs__quote {
  position: relative;
  margin-top: 1.75rem;
  padding: 1.5rem 1.25rem 1.5rem 1.75rem;
  border-left: 2px solid var(--gold);
  background: rgba(154,118,72,.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.difs__quote-mark {
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  line-height: .8;
  color: var(--gold);
  opacity: .3;
  margin-bottom: .25rem;
  user-select: none;
}
.difs__quote p {
  font-size: .82rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.75;
  font-style: italic;
}


/* ═══════════════════════════════════════════════
   CTA FINAL — deco rings
═══════════════════════════════════════════════ */
.cta-final {
  position: relative;
  overflow: hidden;
}
.cta-final__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-final__deco-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.025);
}
.cta-final__deco-ring--2 {
  width: 800px; height: 800px;
  border-color: rgba(255,255,255,.015);
}


/* ═══════════════════════════════════════════════
   MOBILE — overrides novos componentes
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Oculta painel hero no mobile */
  .hero__panel { display: none !important; }

  /* Oculta autoridade no mobile (menor prioridade — pode ativar se quiser) */
  .autoridade { padding-block: clamp(2.5rem, 6vw, 4rem); }
  .autoridade__inner { gap: 2rem; }

  /* Area tags ficam ocultas no mobile */
  .area-card__tags { display: none; }
  .area-card.m-open .area-card__tags { display: flex; }

  /* Timeline processo no mobile */
  .processo__header { display: none; }

  /* Sobre quote */
  .sobre__quote { font-size: 1rem; padding: 1.25rem 1.25rem 1.25rem 1.25rem; border-left-width: 2px; }
}

/* ═══════════════════════════════════════════════
   MOBILE REFINEMENT — revisão final UX/mobile
═══════════════════════════════════════════════ */

/* Utilitários mob-hide / mob-show */
.mob-show { display: none; }
.mob-hide { display: inline; }

@media (max-width: 768px) {
  .mob-show { display: inline; }
  .mob-hide { display: none !important; }

  /* ── Hero ── */
  .hero__title {
    font-size: clamp(1.9rem, 8vw, 2.75rem) !important;
    line-height: 1.18;
  }
  .hero__sub { font-size: .83rem !important; line-height: 1.7; }
  .hero__ctas {
    flex-direction: column;
    gap: .65rem;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
    padding: .9rem 1.25rem;
    font-size: .75rem;
  }

  /* ── Sobre ── */
  .sobre__inner { gap: 1.75rem; }
  .sobre__panel-content { padding: 1.5rem 1.75rem; }
  .sobre__kpi { padding: 1rem 0; }
  .sobre__kpi-num { font-size: 2.4rem; }
  .sobre__text p { font-size: .85rem; line-height: 1.85; }
  .sobre__features { padding-top: 1.25rem; }
  .sobre__feat { gap: .75rem; padding: .85rem .25rem; }
  .sobre__feat span { font-size: .72rem; }

  /* ── Como atuamos (autoridade) ── */
  .autoridade__inner { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .autoridade__grid--3 { grid-template-columns: 1fr !important; gap: 1px; }
  .autoridade__title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .autoridade__left { padding-bottom: 0; }
  .autoridade__cta { display: none; } /* já tem WhatsApp proeminente */
  .aut-card { padding: 1.25rem 1.25rem; }
  .aut-card p {
    font-size: .75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* ── Áreas ── */
  .areas__lead { display: none; }
  .areas__header { margin-bottom: 1.5rem; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2.2rem) !important; }
  /* CTA link sempre visível no mobile (sem hover) */
  .area-card__cta {
    opacity: .65 !important;
    transform: none !important;
    font-size: .6rem;
  }
  .area-card.m-open .area-card__cta { opacity: 1 !important; }

  /* ── Equipe ── */
  .equipe { padding-block: clamp(2.5rem, 6vw, 4rem); }
  .equipe__header { margin-bottom: 1.75rem; }

  /* ── CTA Final ── */
  .cta-final__title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .cta-final__sub { font-size: .82rem; }

  /* ── Contato ── */
  .contato__inner { gap: 2rem; }
  .contato__sub { font-size: .85rem; }
  .contato__info-item { padding: 1rem 1.25rem; }
  .contato__info-label { font-size: .48rem; }
  .contato__info-value { font-size: .82rem; }
  .contato__form-title { font-size: 1rem; }
  .contato__form-sub { font-size: .78rem; }

  /* Telefone clicável em destaque */
  .contato__tel-link {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 1.25rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,.85);
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .02em;
    transition: background .25s;
    text-decoration: none;
  }
  .contato__tel-link:hover { background: rgba(255,255,255,.1); }
  .contato__tel-link svg { flex-shrink: 0; opacity: .65; }

  /* ── Footer ── */
  .footer__bottom p:last-child { display: none; } /* aviso legal — rodapé limpo no mobile */
}

/* Extra compacto ≤ 420px */
@media (max-width: 420px) {
  .hero__title { font-size: clamp(1.75rem, 9vw, 2.4rem) !important; }
  .sobre__panel-content { flex-direction: column; padding: 1.25rem; }
  .sobre__panel-rule { width: 100%; height: 1px; }
  .sobre__kpi { padding: .75rem 0; width: 100%; }
  .autoridade__grid--3 { border: none; background: transparent; gap: .5rem; }
  .aut-card { border: 1px solid rgba(255,255,255,.08); border-radius: 10px; }
}

/* ── prefers-reduced-motion global ──────────────── */
@media (prefers-reduced-motion: reduce) {
  .s-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .btn { transition: background .1s, color .1s, border-color .1s !important; }
  .btn:active { transform: none !important; }
  .section-title em::after { transition: none !important; transform: scaleX(1) !important; }
  .area-card__num,
  .area-card__cta::after,
  .area-card__cta-arrow { transition: none !important; }
}
