:root {
  --ink: #0d2028;
  --deep: #244f5a;
  --teal: #5496a6;
  --mist: #c5cdd2;
  --stone: #969da9;
  --paper: #ffffff;
  --veil: #f6f8f9;
  --wash: #eef3f5;
  --line: rgba(13, 32, 40, 0.1);
  --shadow: 0 24px 60px rgba(13, 32, 40, 0.08);
  --radius: 22px;
  --header: 84px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--deep);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 0.7em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

p {
  margin: 0 0 1em;
}

address {
  font-style: normal;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.lede {
  font-size: 1.08rem;
  color: #3a4d55;
  max-width: 42rem;
}

.section-head {
  max-width: 40rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-head p:last-child {
  color: #4a5c64;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 500;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
.nav a:focus-visible,
.nav-toggle:focus-visible,
summary:focus-visible,
.footer-links a:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
}

.btn-primary:hover {
  background: var(--deep);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--mist);
}

.btn-ghost:hover {
  border-color: var(--ink);
}

.btn-header {
  background: var(--deep);
  color: #fff;
  min-height: 44px;
  padding: 0.6rem 1.15rem;
  font-size: 0.68rem;
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  isolation: isolate;
  background: transparent;
  transition: height 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  flex: 0 0 auto;
}

.brand img {
  width: 28px;
  height: 28px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.brand-text em {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
}

.nav {
  margin-left: auto;
  display: flex;
  gap: 1.45rem;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.86rem;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--teal);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  margin: 6px auto;
  transition: transform 0.3s ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.hero {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 3.5rem;
  align-items: center;
  min-height: calc(100vh - var(--header));
  padding: 2rem 0 4rem;
}

.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

.hero-copy h1 {
  max-width: 11ch;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 1.6rem 0 2rem;
  font-size: 0.9rem;
  color: var(--deep);
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-meta span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex: 0 0 auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-photo {
  margin: 0;
  border-radius: 2px 2px 180px 2px;
  overflow: hidden;
  min-height: 620px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: 70% 40%;
}

.especialidades {
  background: var(--veil);
  padding: 5.5rem 0;
}

.especialidades-intro,
.tag-list,
.identificacao,
.card-grid,
.mid-cta-inner,
.sobre,
.timeline,
.approach-grid,
.steps,
.cinquenta,
.mode-grid,
.publico-grid,
.valores > div,
.accordion,
.footer-grid,
.legal {
  width: min(1100px, calc(100% - 2.4rem));
  margin-left: auto;
  margin-right: auto;
}

.especialidades-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.especialidades-thumb {
  width: 118px;
  height: 118px;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 50%;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
}

.tag-list li {
  border: 1px solid var(--mist);
  background: #fff;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--deep);
}

.identificacao {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  padding: 7rem 0;
  align-items: center;
}

.identificacao-media {
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 560px;
}

.identificacao-media img,
.sobre-photo img,
.experiencia-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transform: scale(1.06);
}

.id-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.id-list li {
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--deep);
}

.demandas,
.formacao,
.jornada,
.publico,
.faq {
  padding: 6.5rem 0;
}

.card-grid,
.approach-grid,
.mode-grid,
.publico-grid {
  display: grid;
  gap: 1.2rem;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.editorial-card,
.approach,
.mode-card,
.publico-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.8rem 1.6rem 1.7rem;
  border-radius: 18px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.editorial-card:hover,
.approach:hover,
.mode-card:hover,
.publico-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--teal);
}

.mid-cta {
  background: var(--wash);
  padding: 6.5rem 0;
  text-align: center;
}

.mid-cta-inner {
  max-width: 46rem;
}

.mid-cta h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}

.sobre {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4.5rem;
  padding: 7.5rem 0;
  align-items: center;
}

.sobre-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 180px 18px 18px 18px;
}

.sobre-photo figcaption {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}

.formacao {
  background: var(--veil);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  gap: 1.4rem;
}

.timeline li {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}

.year {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--teal);
  line-height: 1;
}

.abordagens {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.logo-fade {
  position: absolute;
  inset: 8% auto auto 50%;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  transform: translateX(-50%);
  background: url("../assets/images/logo.png") center / contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.approach-grid {
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.5rem;
}

.steps span {
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--mist);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.cinquenta {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 5rem 0 6rem;
  position: relative;
}

.cinquenta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/logo.png") left center / 280px no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.big-number {
  font-family: var(--serif);
  font-size: clamp(7rem, 16vw, 13rem);
  line-height: 0.8;
  margin: 0;
  color: var(--deep);
}

.experiencia {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  width: 100%;
  padding: 0 0 0;
  align-items: stretch;
}

.experiencia-photo {
  margin: 0;
  overflow: hidden;
  min-height: 640px;
}

.experiencia-copy {
  background: var(--ink);
  color: #e8eef0;
  padding: clamp(2.2rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experiencia-copy .eyebrow {
  color: var(--teal);
}

.experiencia-copy h2,
.experiencia-copy .lede {
  color: #fff;
}

.pillars {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pillars li {
  border: 1px solid rgba(197, 205, 210, 0.3);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
}

.atendimento {
  padding: 2rem 0 6.5rem;
}

.mode-grid {
  grid-template-columns: 1fr 1fr;
}

.mode-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}

.mode-meta {
  padding: 0;
  margin: 1.2rem 0 1.6rem;
  list-style: none;
  color: #4a5c64;
  font-size: 0.95rem;
}

.publico-grid {
  grid-template-columns: repeat(3, 1fr);
}

.valores {
  background: var(--veil);
  padding: 6rem 0 7rem;
  text-align: center;
}

.valores > div {
  max-width: 42rem;
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 2rem 1.25rem 0;
  font-size: 1.05rem;
  position: relative;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s ease;
}

.accordion details[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}

.accordion details p {
  color: #4a5c64;
}

.accordion details[open] p {
  padding-bottom: 1.2rem;
  animation: fade 0.45s ease;
}

.cta-final {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  width: 100%;
  margin: 0;
  background: var(--deep);
  color: #fff;
}

.cta-final figure {
  margin: 0;
  overflow: hidden;
}

.cta-final img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: 70% 35%;
}

.cta-final-copy {
  padding: clamp(2rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-final .lede,
.cta-note {
  color: var(--mist);
}

.cta-note {
  font-size: 0.82rem;
  margin-top: 1.4rem;
}

.site-footer {
  background: var(--paper);
  padding: 4rem 0 2rem;
  color: #4a5c64;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.footer-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0.7rem 0 0.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a,
.legal a {
  color: var(--ink);
  text-decoration: none;
}

.footer-links a:hover,
.legal a:hover {
  color: var(--teal);
}

.copyright {
  width: min(1100px, calc(100% - 2.4rem));
  margin: 1.5rem auto 0;
  font-size: 0.8rem;
  color: var(--stone);
}

section[id] {
  scroll-margin-top: 5.6rem;
}

.legal h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s ease, transform 0.9s ease;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero,
  .identificacao,
  .sobre,
  .experiencia,
  .cta-final,
  .cinquenta,
  .mode-grid,
  .approach-grid,
  .card-grid,
  .publico-grid,
  .steps,
  .footer-grid,
  .especialidades-intro {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 1rem;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

  .hero-photo,
  .hero-photo img,
  .identificacao-media,
  .identificacao-media img,
  .experiencia-photo,
  .experiencia-photo img,
  .cta-final img,
  .sobre-photo img {
    min-height: 420px;
  }

  .nav {
    position: fixed;
    inset: 68px 1rem auto;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1.2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: none;
  }

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

  .nav-cta {
    display: inline-flex;
    margin-top: 0.4rem;
  }

  .nav a.nav-cta::after {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .btn-header {
    display: none;
  }

  .header-inner {
    width: calc(100% - 1.4rem);
  }

  .timeline li {
    grid-template-columns: 4.8rem 1fr;
  }

  .cta-final {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 1rem;
  }

  .hero,
  .identificacao,
  .sobre {
    padding-bottom: 3.5rem;
  }

  .demandas,
  .formacao,
  .jornada,
  .publico,
  .faq,
  .atendimento,
  .mid-cta,
  .especialidades {
    padding: 4.2rem 0;
  }

  .hero-actions .btn,
  .mode-card .btn {
    width: 100%;
  }

  .brand-text em {
    display: none;
  }

  .hero-photo {
    border-radius: 16px;
  }

  .sobre-photo {
    border-radius: 16px 16px 80px 16px;
  }

  .big-number {
    font-size: 6.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   2026-09 — versão enxuta do site
   ========================================================= */

.hero-new {
  position: relative;
  display: block;
  width: min(1320px, calc(100% - 2rem));
  min-height: clamp(560px, 72vh, 720px);
  margin: 1rem auto 5.5rem;
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  isolation: isolate;
  background: var(--wash);
}

.hero-photo-new {
  position: absolute;
  inset: 0;
  margin: 0;
  min-height: 0;
  border-radius: 0;
}

.hero-photo-new img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
    rgba(247, 249, 250, 0.99) 0%,
    rgba(247, 249, 250, 0.97) 27%,
    rgba(247, 249, 250, 0.88) 41%,
    rgba(247, 249, 250, 0.34) 57%,
    rgba(247, 249, 250, 0.04) 74%);
}

.hero-copy-new {
  position: relative;
  z-index: 2;
  width: min(610px, 49%);
  min-height: clamp(560px, 72vh, 720px);
  padding: clamp(3.5rem, 7vw, 6.2rem) 0 clamp(3.5rem, 6vw, 5.5rem) clamp(2rem, 5vw, 5.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy-new h1 {
  max-width: 10.5ch;
  margin-bottom: 0.45em;
  font-size: clamp(3rem, 5.7vw, 5.35rem);
  line-height: 0.98;
  text-wrap: balance;
}

.hero-copy-new .lede {
  max-width: 34rem;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.6;
}

.hero-meta-inline {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  margin: 1.25rem 0 1.7rem;
  font-size: 0.84rem;
}

.hero-meta-inline span {
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(13, 32, 40, 0.12);
  background: rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero-meta-inline span::before {
  width: 5px;
  height: 5px;
}

.hero-ghost {
  background: rgba(255,255,255,.58);
  border-color: rgba(13,32,40,.2);
  backdrop-filter: blur(8px);
}

.sobre-new {
  width: min(1120px, calc(100% - 2.4rem));
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.78fr);
  gap: clamp(3rem, 6vw, 6rem);
  padding: 4.5rem 0 6rem;
}

.sobre-new .sobre-copy p:not(.eyebrow) {
  max-width: 43rem;
  color: #3f5159;
}

.sobre-photo-new {
  border-radius: 22px 22px 110px 22px;
  box-shadow: 0 24px 70px rgba(13, 32, 40, 0.10);
}

.sobre-photo-new img {
  min-height: 0;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transform: none;
}

.sobre-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.sobre-highlights span {
  border: 1px solid var(--mist);
  color: var(--deep);
  padding: 0.52rem 0.82rem;
  border-radius: 999px;
  font-size: 0.82rem;
}

.demandas-new {
  padding: 5.5rem 0;
  background: var(--veil);
}

.compact-card-grid {
  width: min(1100px, calc(100% - 2.4rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.compact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.4rem 1.2rem;
  min-height: 150px;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.compact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(84,150,166,.55);
  box-shadow: 0 16px 40px rgba(13,32,40,.06);
}

.compact-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.38rem;
}

.compact-card p {
  margin: 0;
  color: #51636b;
  font-size: 0.93rem;
  line-height: 1.55;
}

.publico-inline {
  width: min(1100px, calc(100% - 2.4rem));
  margin: 2.3rem auto 0;
  padding-top: 2.1rem;
  border-top: 1px solid var(--line);
}

.publico-inline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.publico-inline-grid > div {
  display: grid;
  gap: 0.2rem;
}

.publico-inline-grid strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
}

.publico-inline-grid span {
  color: #55676f;
  font-size: 0.9rem;
  line-height: 1.5;
}

.jornada-new {
  padding: 5.8rem 0 6.2rem;
}

.steps-compact {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.steps-compact li {
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}

.steps-compact li:last-child {
  border-right: 0;
}

.steps-compact span {
  font-size: 2.65rem;
}

.steps-compact h3 {
  font-size: 1.45rem;
  margin-bottom: 0.45rem;
}

.steps-compact p {
  margin: 0;
  color: #51636b;
  font-size: 0.92rem;
  line-height: 1.55;
}

.formacao-abordagens {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto 6rem;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--wash);
  border-radius: 26px;
  align-items: stretch;
}

.formacao-visual {
  position: relative;
  min-height: 620px;
  border-radius: 18px;
  overflow: hidden;
}

.formacao-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.formacao-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(13,32,40,.92), rgba(13,32,40,0));
}

.visual-caption {
  position: absolute;
  z-index: 2;
  left: 1.45rem;
  right: 1.45rem;
  bottom: 1.25rem;
  color: #fff;
}

.visual-caption .eyebrow {
  color: #9fd4df;
  margin-bottom: 0.35rem;
}

.visual-caption strong {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.1;
  font-weight: 600;
}

.formacao-content {
  padding: clamp(1rem, 2vw, 1.8rem) clamp(.2rem, 2vw, 1.2rem) clamp(1rem, 2vw, 1.8rem) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-head-left {
  max-width: none;
  margin: 0 0 2rem;
  text-align: left;
}

.approach-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

.approach-compact article {
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(13,32,40,.08);
  border-radius: 14px;
  padding: 1.1rem;
}

.approach-compact h3 {
  font-size: 1.25rem;
  margin-bottom: .35rem;
}

.approach-compact p {
  color: #53656d;
  font-size: .86rem;
  line-height: 1.5;
  margin: 0;
}

.formation-mini {
  margin-top: 1.7rem;
  border-top: 1px solid rgba(13,32,40,.1);
}

.formation-mini > div {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(13,32,40,.1);
}

.formation-mini span {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--teal);
}

.formation-mini p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.45;
  color: #465961;
}

.formation-mini strong {
  color: var(--ink);
}

.atendimento-new {
  padding: 0 0 6rem;
}

.service-meta {
  margin: 1.1rem auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .55rem;
}

.service-meta span {
  border: 1px solid var(--mist);
  padding: .45rem .8rem;
  border-radius: 999px;
  color: var(--deep);
  font-size: .82rem;
}

.mode-grid-compact {
  width: min(1000px, calc(100% - 2.4rem));
  gap: 1rem;
}

.mode-grid-compact .mode-card {
  padding: 1.7rem;
}

.mode-grid-compact .mode-card h3 {
  font-size: 1.8rem;
}

.mode-grid-compact .mode-card .btn {
  margin-top: .45rem;
}

.faq-new {
  padding: 5.5rem 0 6rem;
  background: var(--veil);
}

.faq-new .accordion {
  max-width: 860px;
}

.cta-final-new {
  min-height: 520px;
  grid-template-columns: 1.12fr .88fr;
  background: var(--ink);
}

.cta-final-new img {
  min-height: 520px;
  object-position: 46% center;
}

.cta-final-new .eyebrow {
  color: #8cc7d4;
}

.cta-final-new h2 {
  font-size: clamp(2.35rem, 4.1vw, 3.7rem);
  max-width: 10ch;
}

.cta-final-new .btn {
  align-self: flex-start;
}

.site-footer-compact {
  padding-top: 3rem;
}

.site-footer-compact .footer-grid {
  padding-bottom: 1.8rem;
}

@media (max-width: 1100px) {
  .hero-copy-new {
    width: 55%;
  }
  .steps-compact {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-compact li:nth-child(2) {
    border-right: 0;
  }
  .formacao-abordagens {
    grid-template-columns: .82fr 1.18fr;
  }
  .approach-compact {
    grid-template-columns: 1fr;
  }
  .formacao-visual {
    min-height: 700px;
  }
}

@media (max-width: 820px) {
  .hero-new {
    width: calc(100% - 1.2rem);
    min-height: auto;
    border-radius: 20px;
    display: grid;
    grid-template-rows: 390px auto;
    margin-bottom: 3.5rem;
    background: #fff;
  }
  .hero-photo-new {
    position: relative;
    grid-row: 1;
  }
  .hero-photo-new img {
    object-position: 70% center;
  }
  .hero-shade {
    display: none;
  }
  .hero-copy-new {
    grid-row: 2;
    width: auto;
    min-height: 0;
    padding: 2.1rem 1.45rem 2.35rem;
    background: var(--veil);
  }
  .hero-copy-new h1 {
    max-width: 13ch;
    font-size: clamp(2.55rem, 9vw, 4.2rem);
  }
  .hero-meta-inline {
    flex-direction: column;
    align-items: flex-start;
  }
  .sobre-new,
  .formacao-abordagens,
  .cta-final-new,
  .mode-grid-compact {
    grid-template-columns: 1fr;
  }
  .sobre-new {
    padding-top: 3.5rem;
    gap: 2.2rem;
  }
  .sobre-photo-new {
    max-width: 560px;
    margin: 0 auto;
  }
  .compact-card-grid,
  .publico-inline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .formacao-abordagens {
    padding: 1rem;
    gap: 1.5rem;
  }
  .formacao-visual {
    min-height: 520px;
  }
  .formacao-content {
    padding: 1rem .5rem 1.2rem;
  }
  .approach-compact {
    grid-template-columns: repeat(3, 1fr);
  }
  .cta-final-new figure {
    height: 360px;
  }
  .cta-final-new img {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .hero-new {
    grid-template-rows: 310px auto;
  }
  .hero-copy-new h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
    line-height: 1.01;
  }
  .hero-copy-new .lede {
    font-size: .98rem;
  }
  .hero-copy-new .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-copy-new .hero-actions .btn {
    width: 100%;
  }
  .sobre-new,
  .jornada-new {
    padding-bottom: 4.2rem;
  }
  .demandas-new,
  .faq-new {
    padding: 4.2rem 0;
  }
  .compact-card-grid,
  .publico-inline-grid,
  .steps-compact,
  .approach-compact {
    grid-template-columns: 1fr;
  }
  .compact-card {
    min-height: 0;
  }
  .publico-inline-grid {
    gap: 1rem;
  }
  .steps-compact li,
  .steps-compact li:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 1.1rem;
  }
  .steps-compact li:last-child {
    border-bottom: 0;
  }
  .formacao-abordagens {
    width: calc(100% - 1.2rem);
    margin-bottom: 4.5rem;
    border-radius: 20px;
  }
  .formacao-visual {
    min-height: 430px;
  }
  .formation-mini > div {
    grid-template-columns: 3.5rem 1fr;
  }
  .service-meta {
    justify-content: flex-start;
  }
  .atendimento-new {
    padding-bottom: 4.5rem;
  }
  .cta-final-new figure {
    height: 300px;
  }
  .cta-final-new .cta-final-copy {
    padding: 2.3rem 1.4rem 2.7rem;
  }
  .cta-final-new h2 {
    max-width: none;
  }
}

/* =========================================================
   2026-09 — passe de alinhamento e consistência visual
   ========================================================= */

:root {
  --content-width: 1120px;
  --content-gutter: 2.4rem;
}

/* Mantém os blocos principais no mesmo eixo visual. */
.sobre-new,
.compact-card-grid,
.publico-inline,
.steps-compact,
.formacao-abordagens,
.mode-grid-compact,
.faq-new .accordion,
.site-footer-compact .footer-grid,
.site-footer-compact .copyright {
  width: min(var(--content-width), calc(100% - var(--content-gutter)));
  margin-left: auto;
  margin-right: auto;
}

/* Cabeçalhos de seção com espaçamento uniforme. */
.demandas-new .section-head,
.jornada-new .section-head,
.atendimento-new .section-head,
.faq-new .section-head {
  max-width: 660px;
  margin-bottom: 2.75rem;
}

/* Sobre: alinha topo do texto e da fotografia com mais precisão. */
.sobre-new {
  align-items: start;
}

.sobre-new .sobre-copy,
.sobre-photo-new {
  align-self: start;
}

.sobre-photo-new {
  width: 100%;
}

/* Cards de demandas com alturas iguais e conteúdo alinhado. */
.compact-card-grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.compact-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Público: mantém as três colunas exatamente no mesmo eixo. */
.publico-inline-grid {
  align-items: start;
}

.publico-inline-grid > div {
  align-content: start;
}

/* Processo: colunas iguais, divisórias e textos no mesmo alinhamento. */
.steps-compact {
  gap: 0;
  align-items: stretch;
}

.steps-compact li {
  min-width: 0;
  min-height: 190px;
  padding: 0 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.steps-compact li:first-child {
  padding-left: 0;
}

.steps-compact li:last-child {
  padding-right: 0;
}

.steps-compact h3,
.steps-compact p {
  width: 100%;
}

/* Abordagens + formação: alinha a coluna de conteúdo ao topo da foto. */
.formacao-abordagens {
  grid-template-columns: minmax(300px, .74fr) minmax(0, 1.26fr);
  align-items: stretch;
}

.formacao-content {
  justify-content: flex-start;
  padding-top: 1.85rem;
  padding-bottom: 1.85rem;
}

.approach-compact {
  align-items: stretch;
}

.approach-compact article {
  height: 100%;
}

.formation-mini > div {
  align-items: start;
}

/* Atendimento: cards com a mesma altura e botões na mesma linha. */
.mode-grid-compact {
  align-items: stretch;
}

.mode-grid-compact .mode-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mode-grid-compact .mode-card .btn {
  margin-top: auto;
}

/* FAQ ocupa o mesmo eixo do restante do conteúdo. */
.faq-new .accordion {
  max-width: var(--content-width);
}

/* CTA: garante alinhamento exato entre imagem e bloco escuro. */
.cta-final-new {
  align-items: stretch;
}

.cta-final-new figure,
.cta-final-new .cta-final-copy {
  min-height: 520px;
}

.cta-final-new h2 {
  max-width: 12ch;
}

/* Rodapé: topo das três colunas nivelado. */
.site-footer-compact .footer-grid {
  align-items: start;
}

.site-footer-compact .footer-grid > div {
  align-self: start;
}

@media (max-width: 1100px) {
  .steps-compact {
    gap: 1.5rem 0;
  }
  .steps-compact li {
    min-height: 0;
  }
  .steps-compact li:nth-child(odd) {
    padding-left: 0;
  }
  .steps-compact li:nth-child(even) {
    padding-right: 0;
  }
}

@media (max-width: 820px) {
  .sobre-new,
  .compact-card-grid,
  .publico-inline,
  .steps-compact,
  .mode-grid-compact,
  .faq-new .accordion,
  .site-footer-compact .footer-grid,
  .site-footer-compact .copyright {
    width: min(var(--content-width), calc(100% - 2.4rem));
  }

  .formacao-abordagens {
    width: min(var(--content-width), calc(100% - 2.4rem));
  }

  .formacao-content {
    padding-top: .9rem;
  }

  .cta-final-new figure,
  .cta-final-new .cta-final-copy {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --content-gutter: 1.2rem;
  }

  .steps-compact li,
  .steps-compact li:nth-child(2),
  .steps-compact li:nth-child(odd),
  .steps-compact li:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
  }
}


/* =========================================================
   2026-09 — refinamentos de enquadramento e tipografia
   ========================================================= */

/* Hero: três linhas intencionais, sem palavras órfãs. */
.hero-copy-new {
  width: min(760px, 58%);
  padding-left: clamp(2rem, 4.2vw, 4.3rem);
}

.hero-copy-new h1 {
  max-width: none;
  font-size: clamp(3.15rem, 4.3vw, 4.7rem);
  line-height: .99;
  text-wrap: initial;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

/* Sobre: a legenda fica completamente fora do recorte arredondado. */
.sobre-photo-new {
  overflow: visible;
  box-shadow: none;
}

.sobre-photo-new img {
  display: block;
  border-radius: 22px 22px 110px 22px;
  box-shadow: 0 24px 70px rgba(13, 32, 40, 0.10);
}

.sobre-photo-new figcaption {
  margin: .85rem 0 0;
  padding: 0 .15rem;
  line-height: 1.4;
  white-space: normal;
}

/* Para quem é: respiro real entre as três colunas e textos contidos. */
.publico-inline-grid {
  column-gap: clamp(2.6rem, 5vw, 5.4rem);
  row-gap: 1.5rem;
}

.publico-inline-grid > div {
  min-width: 0;
}

.publico-inline-grid span {
  display: block;
  max-width: 28ch;
}

/* CTA final: reposiciona a foto para João ficar mais centralizado no painel. */
.cta-final-new img {
  object-position: 68% center;
}

/* FAQ: controla a quebra do título em duas linhas equilibradas. */
.faq-new .section-head {
  max-width: 760px;
}

.faq-title-line {
  display: block;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .hero-copy-new {
    width: 61%;
  }

  .hero-copy-new h1 {
    font-size: clamp(3rem, 5vw, 4.15rem);
  }

  .publico-inline-grid {
    column-gap: 2.5rem;
  }
}

@media (max-width: 820px) {
  .hero-copy-new {
    width: auto;
    padding-left: 1.45rem;
  }

  .hero-copy-new h1 {
    max-width: none;
  }

  .publico-inline-grid {
    column-gap: 2rem;
  }

  .cta-final-new img {
    object-position: 68% center;
  }
}

@media (max-width: 640px) {
  .hero-copy-new h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1.03;
  }

  .hero-line {
    white-space: nowrap;
  }

  .faq-new .section-head h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .faq-title-line {
    white-space: nowrap;
  }

  .publico-inline-grid span {
    max-width: none;
  }
}

@media (max-width: 360px) {
  .hero-copy-new h1,
  .faq-new .section-head h2 {
    font-size: 1.95rem;
  }
}

/* =========================================================
   2026-09 — ajustes exclusivos de responsividade mobile
   Desktop preservado; a única troca global é a foto do CTA final.
   ========================================================= */

.mobile-line,
.faq-mobile-line {
  display: inline;
}

/* Nova foto do primeiro contato — desktop e mobile */
.cta-final-new img {
  object-position: center 56%;
}

@media (max-width: 640px) {
  /* Respiro lateral padrão do mobile */
  :root {
    --mobile-pad: 1.5rem;
  }

  /* HERO: foto encostada ao box, sem vão visual */
  .hero-new {
    width: calc(100% - 1rem);
    grid-template-rows: 245px auto;
    gap: 0;
    margin: .5rem auto 0;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
  }

  .hero-photo-new {
    margin: 0;
    min-height: 0;
    height: 245px;
  }

  .hero-photo-new img {
    height: 245px;
    width: 100%;
    object-fit: cover;
    object-position: 67% center;
  }

  .hero-copy-new {
    margin: 0;
    padding: 1.75rem var(--mobile-pad) 2rem;
    border-radius: 0 0 18px 18px;
  }

  .hero-copy-new h1 {
    font-size: clamp(2.35rem, 11.3vw, 3rem);
    line-height: 1.01;
  }

  .hero-copy-new .kicker {
    font-size: .62rem;
    line-height: 1.5;
  }

  /* SOBRE: foto vira a ponte visual entre o hero e o texto */
  .sobre-new {
    display: flex;
    flex-direction: column;
    width: calc(100% - 3rem);
    padding: 1.4rem 0 4.2rem;
    gap: 1.7rem;
  }

  .sobre-photo-new {
    order: -1;
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .sobre-photo-new img {
    aspect-ratio: 4 / 5;
    width: 100%;
  }

  .sobre-photo-new figcaption {
    font-size: .68rem;
    text-align: center;
  }

  .sobre-copy {
    width: 100%;
  }

  /* Títulos planejados para não encostar nas bordas nem criar órfãs */
  .mobile-line {
    display: block;
    white-space: nowrap;
  }

  .demandas-new .section-head,
  .jornada-new .section-head,
  .atendimento-new .section-head,
  .faq-new .section-head {
    width: calc(100% - 3rem);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .demandas-new .section-head h2,
  .jornada-new .section-head h2,
  .atendimento-new .section-head h2 {
    font-size: clamp(1.95rem, 9.5vw, 2.45rem);
    line-height: 1.03;
  }

  /* Psicoterapia / cards: conteúdo centralizado no eixo da página */
  .compact-card-grid,
  .publico-inline,
  .steps-compact {
    width: calc(100% - 3rem);
  }

  .publico-inline-grid {
    gap: 1.25rem;
  }

  /* COMO FUNCIONA: duas linhas no título */
  .jornada-new {
    padding-top: 4.5rem;
  }

  /* ABORDAGENS + FORMAÇÃO: tudo vertical e sem cortes */
  .formacao-abordagens {
    display: flex;
    flex-direction: column;
    width: calc(100% - 2rem);
    padding: .8rem;
    gap: 1.2rem;
    overflow: visible;
    margin: 0 auto 4.5rem;
  }

  .formacao-visual {
    width: 100%;
    min-height: 0;
    height: 390px;
    flex: 0 0 auto;
  }

  .formacao-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 34%;
  }

  .formacao-content {
    width: 100%;
    min-width: 0;
    padding: .55rem .65rem 1rem;
  }

  .formacao-content .section-head-left {
    width: 100%;
    margin: 0 0 1.4rem;
    text-align: left;
  }

  .formacao-content .section-head-left h2 {
    font-size: 2rem;
    max-width: 100%;
  }

  .approach-compact {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: .75rem;
  }

  .approach-compact article {
    width: 100%;
    min-width: 0;
  }

  .formation-mini {
    width: 100%;
  }

  .formation-mini > div {
    grid-template-columns: 3.25rem minmax(0, 1fr);
    gap: .75rem;
  }

  /* ATENDIMENTO: mais longe das bordas e alinhado ao centro */
  .atendimento-new {
    padding-bottom: 4.5rem;
  }

  .atendimento-new .section-head {
    text-align: center;
  }

  .service-meta {
    justify-content: center;
    align-items: center;
  }

  .mode-grid-compact {
    width: calc(100% - 3rem);
    margin-left: auto;
    margin-right: auto;
    gap: 1rem;
  }

  .mode-grid-compact .mode-card {
    width: 100%;
    padding: 1.55rem 1.25rem;
    align-items: center;
    text-align: center;
  }

  .mode-grid-compact .mode-card .btn {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* FAQ: mais respiro lateral e perguntas com quebras controladas */
  .faq-new {
    padding: 4.2rem 0 4.8rem;
  }

  .faq-new .section-head {
    width: calc(100% - 3rem);
  }

  .faq-new .section-head h2 {
    font-size: clamp(2rem, 9.5vw, 2.45rem);
    line-height: 1.03;
  }

  .faq-new .accordion {
    width: calc(100% - 3rem);
    margin-left: auto;
    margin-right: auto;
  }

  .faq-new summary {
    padding-left: 0;
    padding-right: .25rem;
    line-height: 1.45;
  }

  .faq-mobile-line {
    display: block;
    white-space: nowrap;
  }

  /* Primeiro contato: nova foto do consultório */
  .cta-final-new figure {
    height: 320px;
  }

  .cta-final-new img {
    width: 100%;
    height: 320px;
    min-height: 0;
    object-fit: cover;
    object-position: center 58%;
  }
}

@media (max-width: 380px) {
  .mobile-line,
  .faq-mobile-line {
    white-space: normal;
  }

  .demandas-new .section-head h2,
  .jornada-new .section-head h2,
  .atendimento-new .section-head h2,
  .faq-new .section-head h2 {
    font-size: 1.95rem;
  }
}
