/* TF Assessoria Condominial — CSS consolidado por seção */

/* Fundamentos */
@font-face {
  font-family: Muli;
  src: url("../fonts/Muli-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url("../fonts/Muli-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url("../fonts/Muli-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url("../fonts/Muli-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url("../fonts/Muli-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --navy: #06152e;
  --navy-2: #0b2940;
  --graphite: #1d272f;
  --graphite-2: #273640;
  --text: #122039;
  --muted: #6b7890;
  --line: rgba(27,57,76,.16);
  --blue: #dff2fb;
  --blue-2: #eef8fc;
  --white: #fff;
  --yellow: #f8bd16;
  --orange: #ff8b1d;
  --accent: linear-gradient(115deg,#ff8a1a 0%,#f7c51b 100%);
  --shadow: 0 24px 70px rgba(19,47,65,.13);
  --container: 1390px;
  --gutter: clamp(18px,3.5vw,58px);
  --radius: clamp(26px,3vw,48px);
  --radius-sm: 22px;
  --ease: cubic-bezier(.22,1,.36,1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: #f5fafc;
  font-family: Muli,Arial,sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
}

button,input,textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

h1,h2,h3,p {
  margin-top: 0;
}

h1,h2 {
  font-weight: 900;
  letter-spacing: -.052em;
  line-height: 1.01;
}

h1 {
  font-size: clamp(3.5rem,5vw,4.5rem);
}

h2 {
  font-size: clamp(2.7rem,4vw,3.65rem);
}

h3 {
  line-height: 1.2;
}

em {
  color: var(--orange);
  font-style: normal;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 2px;
  border-bottom: 1px solid #b7c5ce;
  font-weight: 700;
  text-decoration: none;
}

.service-line {
  margin: 34px 0 0;
  color: #6b788c;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.shape {
  position: absolute;
  display: block;
}

.shape-blue {
  z-index: 0;
  inset: 0 0 50px 110px;
  background: rgba(172,232,252,.52);
  border-radius: 48px;
  transform: skewX(-5deg);
}

.shape-yellow {
  z-index: 3;
  right: -18px;
  bottom: 0;
  width: 170px;
  height: 255px;
  background: linear-gradient(145deg,#ffd67e,#f7b914);
  border-radius: 74px 26px 30px 96px;
  transform: skewX(-5deg);
}

.note-top {
  top: 95px;
  right: -10px;
}

.note-bottom {
  right: -26px;
  bottom: 8px;
  color: #6b7180;
  background: rgba(255,244,210,.9);
  border: 0;
}

.lead-light {
  margin-bottom: 14px;
  color: #fff!important;
  font-size: 1.55rem!important;
}

.js [data-delay="1"] {
  transition-delay: 90ms;
}

.js [data-delay="2"] {
  transition-delay: 180ms;
}

.js [data-delay="3"] {
  transition-delay: 270ms;
}

/* Componentes compartilhados */
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(calc(100% - 2 * var(--gutter)),var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(32px,3.2vw,48px) 0;
}

.dark-panel,.light-panel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.dark-panel {
  color: #fff;
  background: var(--graphite);
}

.light-panel {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(111,142,160,.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.eyebrow {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 0 0 24px;
  color: #65738a;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .19em;
  line-height: 1.65;
  text-transform: uppercase;
}

.eyebrow>span {
  width: 34px;
  height: 3px;
  flex: 0 0 auto;
  margin-top: 8px;
  background: var(--yellow);
}

.eyebrow-light {
  color: #e0e7eb;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 14px 30px;
  color: #090f16;
  background: var(--accent);
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(245,166,22,.24);
  transition: transform 180ms ease,box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 32px rgba(245,166,22,.33);
}

.button-small {
  min-height: 54px;
  padding: 12px 26px;
  font-size: .92rem;
}

.mini-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #f29c00;
  background: #fff1d7;
  border-radius: 50%;
}

.mini-icon.blue {
  color: #149cd3;
  background: #def4fd;
}

.mini-icon.gray {
  color: #fff;
  background: rgba(255,255,255,.14);
}

.mini-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #06152e;
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.glass-note {
  position: absolute;
  z-index: 4;
  margin: 0;
  padding: 34px;
  color: #fff;
  background: rgba(29,39,47,.58);
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 25px;
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
  backdrop-filter: blur(15px);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1.8;
  text-transform: uppercase;
}

.photo-note,.corner-note,.method-side-note,.fit-side-note,.faq-side-note,.evaluation-corner {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .19em;
  line-height: 1.7;
  text-transform: uppercase;
}

.photo-note {
  position: absolute;
  z-index: 3;
  margin: 0;
  padding: 25px 22px;
  color: #5c7186;
  background: rgba(231,247,253,.94);
  border-radius: 24px;
}

.photo-note-blue {
  right: -20px;
  bottom: 12px;
}

/* Cabeçalho */
.button svg,.header-cta svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  padding: 16px 0 0;
  pointer-events: none;
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 11px 14px 11px 26px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(86,112,128,.2);
  border-radius: 25px;
  box-shadow: 0 15px 45px rgba(30,55,69,.09);
  backdrop-filter: blur(18px);
  pointer-events: auto;
  transition: min-height 180ms ease,box-shadow 180ms ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 70px;
  box-shadow: 0 10px 28px rgba(30,55,69,.15);
}

.brand {
  width: 246px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px,2.2vw,36px);
  margin-left: auto;
}

.main-nav a {
  font-size: .94rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover {
  color: #e9820e;
}

.header-cta {
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.menu-toggle-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.menu-toggle-icon {
  width: 21px;
  display: grid;
  gap: 6px;
  margin: auto;
}

.menu-toggle-icon i {
  height: 2px;
  display: block;
  background: var(--text);
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded=true] i:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded=true] i:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* 01 — Hero */
.hero {
  z-index: 2;
  margin-top: -100px;
  padding-top: 150px;
  padding-bottom: 0;
  background: radial-gradient(circle at 82% 27%,rgba(172,231,253,.42),transparent 25%),linear-gradient(#fff 72%,#f3f9fc);
}

.hero-grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(540px,.92fr);
  align-items: center;
  gap: clamp(34px,3vw,46px);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 48px 0;
}

.hero-content h1 {
  margin-bottom: 28px;
  font-size: clamp(4rem,5vw,4.5rem);
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.55;
}

.hero-pillars {
  display: flex;
  gap: 0;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.hero-pillars li {
  min-width: 150px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 28px;
  font-weight: 700;
}

.hero-pillars li+li {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.hero-pillars .mini-icon.gray,
.three-points .mini-icon.gray {
  color: #213849;
  background: #eef1f3;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.hero-photo {
  position: absolute;
  z-index: 2;
  inset: 32px 8px 30px 30px;
  margin: 0;
  overflow: hidden;
  border-radius: 58px 36px 76px 40px;
  box-shadow: var(--shadow);
}

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

.metric-panel {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 18px;
  padding: 30px 42px;
  background: #fff;
  border-radius: 38px 38px 0 0;
  box-shadow: 0 -12px 45px rgba(32,72,95,.08);
}

.metric-panel>div {
  text-align: center;
}

.metric-panel>div+div {
  border-left: 1px solid var(--line);
}

.metric-panel strong {
  display: block;
  font-size: clamp(2.5rem,4.3vw,4rem);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
}

.metric-panel span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* 02 — Problema e diferença TF */
.problem {
  padding-top: 28px;
  background: linear-gradient(#f3f9fc 0%,#fff 100%);
  padding-bottom: 24px;
}

.problem-panel {
  min-height: 440px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 48px;
  padding: 52px;
  background-image: linear-gradient(90deg,rgba(17,32,43,.98) 0%,rgba(17,32,43,.91) 55%,rgba(17,32,43,.72)),url("../media/otimizadas/fundo-problema-1600.webp");
  background-position: center;
  background-size: cover;
  overflow: visible;
}

.problem-intro h2 {
  margin-bottom: 20px;
  font-size: 3.5rem;
}

.problem-intro>p:last-child {
  max-width: 530px;
  color: #d2d9dd;
  font-size: 1.03rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pain-grid li {
  display: grid;
  grid-template-columns: 62px 48px 1fr;
  gap: 13px;
  align-content: center;
  padding: 25px;
  border-bottom: 1px solid rgba(255,255,255,.24);
}

.pain-grid li:nth-child(odd) {
  border-right: 1px solid rgba(255,255,255,.24);
}

.pain-grid li:nth-last-child(-n+2) {
  border-bottom: 0;
}

.card-number {
  color: rgba(255,255,255,.32);
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1;
}

.pain-grid h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.pain-grid p {
  margin: 0;
  color: #d6dde1;
  font-size: .9rem;
}

.difference-panel {
  z-index: 2;
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 42px;
  margin-top: -48px;
  padding: 44px 50px 64px;
  background: linear-gradient(130deg,#fff 0%,#fff 45%,#e9f7fd 100%);
  overflow: visible;
}

.difference-copy h2 {
  margin-bottom: 20px;
  font-size: 3.1rem;
}

.difference-copy>p {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.05rem;
}

.three-points {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 30px;
}

.three-points article {
  padding-right: 24px;
}

.three-points article+article {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.three-points h3 {
  margin: 13px 0 7px;
  font-size: 1rem;
}

.three-points p {
  margin: 0;
  color: var(--muted);
  font-size: .83rem;
}

.difference-gallery {
  position: relative;
  min-height: 480px;
}

.difference-gallery img {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.gallery-main {
  inset: 0 0 100px 0;
  width: 100%;
  height: 280px;
  border-radius: 30px;
  object-position: 50% 42%;
}

.gallery-small {
  right: auto;
  bottom: 0;
  left: 0;
  width: 56%;
  height: auto;
  aspect-ratio: 16/9;
  border: 12px solid #fff;
  border-radius: 32px;
  object-position: center 42%;
}

.difference-gallery .glass-note {
  top: 250px;
  right: 0;
  width: 40%;
  padding: 20px;
  font-size: .6rem;
}

.difference-gallery .photo-note-blue {
  right: 0;
  bottom: 0;
  width: 40%;
  padding: 20px;
}

.section-link {
  position: absolute;
  bottom: 18px;
  left: 50%;
  display: inline-flex;
  gap: 20px;
  color: #78869a;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.pain-grid .mini-icon {
  width: 48px;
  height: 48px;
}

.difference-accent {
  position: absolute;
  z-index: 0;
  right: 3%;
  bottom: 34px;
  width: 38%;
  height: 54%;
  background: linear-gradient(145deg,#ffd779,#f5b511);
  border-radius: 38px 18px 22px 18px;
  clip-path: polygon(22% 0,100% 0,100% 100%,0 100%);
}

.difference-gallery img,.difference-gallery .glass-note,.difference-gallery .photo-note {
  z-index: 2;
}

/* 03 — Método TF */
.method {
  padding-top: 0;
  background: linear-gradient(#fff,#eef8fc);
  padding-bottom: 28px;
}

.method-top {
  min-height: 460px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  padding: 46px 52px 100px;
  background-image: linear-gradient(90deg,rgba(9,32,48,.97),rgba(9,32,48,.78)),url("../media/otimizadas/fundo-diferenca-1600.webp");
  background-size: cover;
  background-position: center;
}

.method-copy {
  position: relative;
  z-index: 2;
}

.method-copy h2 {
  font-size: 3.25rem;
  max-width: 620px;
}

.method-copy>p:last-child {
  max-width: 570px;
  color: #e0e7ea;
  font-size: 1.05rem;
}

.system-composition {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
}

.system-complete {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(0,0,0,.28));
}

.method-flow {
  z-index: 3;
  margin-top: -68px;
  padding: 27px 30px;
}

.method-flow ol {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-flow li {
  padding: 8px 24px;
  position: relative;
}

.method-flow li+li {
  border-left: 1px solid var(--line);
}

.method-flow .step-number {
  color: #b7c1cc;
  font-size: 2.7rem;
  font-weight: 900;
}

.method-flow .step-icon {
  position: absolute;
  top: 10px;
  right: 22px;
  width: 46px;
  height: 46px;
}

.method-flow h3 {
  margin: 7px 0;
  color: #083f74;
  font-size: 1rem;
}

.method-flow p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
}

.method-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 18px;
}

.method-gallery figure {
  position: relative;
  height: auto;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(238,249,253,.96);
}

.method-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  border-radius: 30px 30px 0 0;
}

.method-gallery figcaption {
  position: static;
  max-width: none;
  padding: 18px;
  color: #32506a;
  background: rgba(238,249,253,.9);
  border-radius: 0 0 30px 30px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.5;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  transform: none;
}

.value-bar {
  display: grid;
  grid-template-columns: 1.35fr 1.15fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 18px;
  padding: 24px 32px;
}

.value-bar .eyebrow {
  margin-bottom: 8px;
}

.value-bar h3 {
  margin: 0;
  color: #083f74;
  font-size: 2rem;
  white-space: nowrap;
}

.value-bar ul {
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-bar li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 700;
}

.value-bar li .mini-icon {
  width: 44px;
  height: 44px;
}

.method-gallery figure:last-child figcaption {
  position: static;
}

.method-side-note {
  margin: 30px 0 0;
  padding-left: 18px;
  color: #e8eff2;
  border-left: 3px solid var(--yellow);
}

.method-flow li:not(:last-child)::after {
  position: absolute;
  top: 42%;
  right: -13px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  content: "→";
  color: #40566c;
  background: #f3f7f9;
  border-radius: 50%;
}

/* 04 — Estrutura TF */
.structure {
  background: linear-gradient(#eef8fc,#fff);
  padding-top: 22px;
  padding-bottom: 26px;
  overflow: hidden;
}

.structure-panel {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: linear-gradient(90deg,#fff 0%,rgba(255,255,255,.96) 42%,rgba(229,246,252,.62) 64%,rgba(229,246,252,.2) 100%);
  overflow: visible;
}

.structure-copy {
  z-index: 2;
  min-width: 0;
  padding: 50px;
}

.structure-copy h2 {
  margin-bottom: 30px;
  font-size: 3.25rem;
}

.structure-copy>p {
  max-width: 670px;
  color: #63729a;
  font-size: 1.15rem;
}

.structure-phrase {
  margin-top: 48px!important;
  padding-left: 24px;
  color: #083f74!important;
  border-left: 4px solid var(--orange);
  font-weight: 700;
}

.structure-panel>img {
  width: 100%;
  min-width: 0;
  height: 560px;
  object-fit: cover;
  object-position: 42% 18%;
  border-radius: 0 var(--radius) var(--radius) 0;
  -webkit-mask-image: linear-gradient(90deg,transparent 0,#000 15%);
  mask-image: linear-gradient(90deg,transparent 0,#000 15%);
}

.team-panel {
  z-index: 4;
  display: grid;
  grid-template-columns: 1.05fr repeat(4,1fr);
  margin-top: -48px;
  padding: 20px 30px;
}

.team-panel>div {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 11px;
  padding: 10px 24px;
}

.team-panel>div+div {
  border-left: 1px solid var(--line);
}

.team-panel strong {
  font-size: 2rem;
  font-weight: 900;
}

.team-panel span:last-child {
  color: #61719a;
  font-size: .9rem;
  line-height: 1.25;
}

.team-panel .team-total {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.team-total strong {
  font-size: 4rem;
  line-height: .8;
}

.benefit-panel {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  margin-top: 14px;
  padding: 20px 28px;
  list-style: none;
  padding-right: 190px;
}

.benefit-panel li {
  padding: 12px 22px;
  color: #083f74;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 14px;
}

.benefit-panel li+li {
  border-left: 1px solid var(--line);
}

.structure-note {
  position: absolute;
  z-index: 4;
  top: 62px;
  right: -8px;
  padding: 32px;
  color: #fff;
  background: rgba(54,48,42,.64);
  border: 1px solid rgba(255,255,255,.45);
  left: auto;
}

.structure-corner {
  position: absolute;
  z-index: 5;
  right: -18px;
  bottom: -126px;
  width: 210px;
  margin: 0;
  padding: 54px 34px 30px;
  color: #607086;
  background: linear-gradient(145deg,#ffe09b,#fff7df);
  border-radius: 48px 18px 20px 18px;
  clip-path: polygon(34% 0,100% 0,100% 100%,0 100%);
}

.benefit-panel .mini-icon {
  width: 46px;
  height: 46px;
}

.structure-column span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.structure-column span svg {
  width: 28px;
  height: 28px;
  padding: 5px;
  color: #ff9a1f;
  background: rgba(0,151,188,.18);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* 05 — Liderança TF */
.leadership {
  padding-top: 20px;
  padding-bottom: 26px;
  background: #fff;
}

.leadership-panel {
  padding: 46px 42px 28px;
  background-image: linear-gradient(rgba(8,31,48,.87),rgba(8,31,48,.78)),url("../media/otimizadas/fundo-lideranca-1600.webp");
  background-size: cover;
  background-position: center;
}

.leadership-header {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
}

.leadership-header>div:first-child>p:last-child {
  max-width: 650px;
  color: #e1e8eb;
  font-size: 1rem;
}

.leadership-pillars {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  align-self: end;
  position: relative;
  padding-right: 135px;
}

.leadership-pillars article {
  padding: 20px 24px;
}

.leadership-pillars article+article {
  border-left: 1px solid rgba(255,255,255,.26);
}

.leadership-pillars h3 {
  margin: 15px 0 8px;
  font-size: 1rem;
}

.leadership-pillars p {
  margin: 0;
  color: #d9e1e5;
  font-size: .82rem;
}

.leadership-gallery {
  display: grid;
  grid-template-columns: 1.6fr .85fr;
  gap: 18px;
  margin-top: 14px;
  padding: 15px;
  background: #f7fcfe;
  border-radius: 34px;
}

.leadership-gallery img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 23px;
}

.assembly-photo {
  object-position: center center;
}

.council-photo {
  object-position: center center;
}

.leadership-side-note {
  position: absolute;
  right: 0;
  bottom: 20px;
  margin: 0;
  padding-left: 20px;
  color: #fff;
  border-left: 3px solid var(--yellow);
}

.leadership-gallery figure {
  position: relative;
  margin: 0;
}

.leadership-gallery figcaption {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  padding: 22px;
  color: #53697d;
  background: rgba(239,249,253,.94);
  border-radius: 20px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.65;
  text-transform: uppercase;
}

.leadership-gallery figure:first-child figcaption {
  left: -24px;
}

.leadership-gallery figure:last-child figcaption {
  right: -12px;
}

.leadership-header h2 {
  font-size: 3.1rem;
}

/* 06 — Atuação local */
.territory {
  background: linear-gradient(#fff,#eef8fc);
  padding-top: 20px;
  padding-bottom: 24px;
}

.territory-panel {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 28px;
  padding: 32px;
  background: linear-gradient(120deg,#fff,#e9f7fd);
  align-items: start;
}

.territory-copy {
  padding: 22px 10px;
  padding-top: 12px;
}

.territory-copy h2 {
  margin-bottom: 22px;
  font-size: 2.8rem;
}

.territory-copy>p {
  color: #647398;
  font-size: 1.08rem;
}

.territory-phrase {
  margin-top: 38px!important;
  padding-left: 28px;
  color: #63729a!important;
  border-left: 4px solid var(--yellow);
  font-size: .79rem!important;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.6;
  text-transform: uppercase;
}

.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  background: #233c4e url("../media/otimizadas/poster-video-leblon-1600.webp") center/cover no-repeat;
  min-height: 390px;
  margin-top: 10px;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-frame figcaption {
  position: absolute;
  top: 24px;
  left: 28px;
  padding-left: 36px;
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.video-frame figcaption::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 25px;
  height: 3px;
  content: "";
  background: var(--yellow);
}

.video-frame.is-static video {
  display: none;
}

.neighborhood-grid {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  margin-top: 12px;
}

.neighborhood-grid article {
  position: relative;
  height: 160px;
  overflow: hidden;
  border-radius: 22px;
}

.neighborhood-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.neighborhood-grid h3 {
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 16px;
  color: #07234f;
  background: #fff;
  border-radius: 999px;
  font-size: 1rem;
}

.neighborhood-grid h3 svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #f6b600;
  stroke-width: 2;
}

.territory-stats {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: .8fr .8fr repeat(3,1fr);
  padding: 20px;
}

.territory-stats>div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 13px;
  padding: 10px 20px;
}

.territory-stats>div+div {
  border-left: 1px solid var(--line);
}

.territory-stats strong {
  grid-column: 2;
  display: block;
  color: #082c62;
  font-size: 1.15rem;
  font-weight: 900;
}

.territory-stats>div:nth-child(-n+2) strong {
  font-size: 2.6rem;
  line-height: 1;
}

.territory-stats span {
  grid-column: 2;
  display: block;
  margin-top: 6px;
  color: #6e7b9a;
  font-size: .78rem;
}

.territory-stats .mini-icon {
  grid-row: 1/3;
  grid-column: 1;
  width: 46px;
  height: 46px;
}

/* 07 — Perfil de condomínio */
.fit {
  padding-top: 20px;
  padding-bottom: 24px;
  background: linear-gradient(#eef8fc,#fff);
}

.fit-panel {
  padding: 46px 38px 88px;
  background-image: linear-gradient(rgba(7,32,49,.66),rgba(7,32,49,.69)),url("../media/otimizadas/fundo-atuacao-1600.webp");
  background-size: cover;
  background-position: center;
}

.fit-copy>p:last-child {
  max-width: 620px;
  color: #e1e7ea;
  font-size: 1.04rem;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.fit-grid li {
  min-height: 230px;
  padding: 24px;
  color: #fff;
  background: rgba(25,52,68,.48);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 24px;
  backdrop-filter: blur(8px);
  position: relative;
}

.fit-grid li>span {
  color: #bfe6fb;
  font-size: 3.1rem;
  font-weight: 900;
}

.fit-grid h3 {
  margin: 16px 0 12px;
  font-size: 1rem;
}

.fit-grid p {
  margin: 0;
  color: #e0e6e9;
  font-size: .84rem;
}

.fit-cta {
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr auto;
  align-items: center;
  gap: 28px;
  margin-top: -62px;
  padding: 28px 38px;
}

.fit-cta .eyebrow {
  margin-bottom: 9px;
}

.fit-cta h3 {
  margin-bottom: 7px;
  color: #072453;
  font-size: 2.65rem;
}

.fit-cta>div>p:last-child {
  max-width: 690px;
  margin: 0;
  color: #667591;
}

.fit-cta ul {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin: 2px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.fit-cta li {
  padding: 0 24px;
  color: #082e67;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 14px;
}

.fit-cta li+li {
  border-left: 1px solid var(--line);
}

.fit-copy {
  position: relative;
  padding-right: 250px;
}

.fit-copy h2 {
  font-size: 3.65rem;
}

.fit-side-note {
  position: absolute;
  top: 0;
  right: 12px;
  width: 210px;
  margin: 0!important;
  padding: 25px;
  color: #fff!important;
  background: rgba(27,52,67,.52);
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 22px;
}

.fit-grid li>span:first-child {
  display: inline-block;
}

.fit-grid li .mini-icon {
  float: right;
  width: 48px;
  height: 48px;
}

.fit-cta .mini-icon {
  width: 48px;
  height: 48px;
}

/* 08 — FAQ */
.faq {
  background: linear-gradient(#fff,#f3f9fc);
  padding-top: 20px;
  padding-bottom: 24px;
}

.faq-panel {
  padding: 34px;
  background: linear-gradient(100deg,rgba(255,255,255,.92) 0%,rgba(241,249,252,.72) 47%,rgba(236,248,253,.14) 100%),url("../media/otimizadas/fundo-faq-1600.webp") center/cover no-repeat;
  position: relative;
}

.faq-header {
  display: grid;
  grid-template-columns: 1fr .68fr .24fr;
  gap: 26px;
  align-items: start;
}

.faq-header>div>p:last-child {
  max-width: 650px;
  color: #647398;
  font-size: 1.03rem;
}

.faq-header blockquote {
  max-width: 470px;
  margin: 0 auto;
  padding: 32px 76px 32px 32px;
  color: #fff;
  background: rgba(42,51,57,.7);
  border: 1px solid rgba(255,255,255,.43);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
  font-size: 1rem;
  font-weight: 600;
  position: relative;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-top: 24px;
}

.faq-grid details {
  padding: 14px 18px;
  background: rgba(248,252,254,.94);
  border: 1px solid #dbeaf1;
  border-radius: 20px;
}

.faq-grid summary {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #082b65;
  font-weight: 900;
  list-style: none;
  cursor: default;
}

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

.faq-grid summary span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--accent);
  border: 7px solid #fff0d6;
  border-radius: 50%;
}

.faq-grid details p {
  margin: 5px 0 0 63px;
  color: #697695;
  font-size: .82rem;
}

.faq-grid details:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.faq-grid details:nth-child(3) {
  grid-column: 1;
  grid-row: 3;
}

.faq-grid details:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.faq-grid details:nth-child(4) {
  grid-column: 1;
  grid-row: 4;
}

.faq-grid details:nth-child(5) {
  grid-column: 2;
  grid-row: 1;
}

.faq-grid details:nth-child(6) {
  grid-column: 2;
  grid-row: 2;
}

.faq-grid details:nth-child(7) {
  grid-column: 2;
  grid-row: 3;
}

.faq-cta {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 16px;
  padding: 21px 26px;
}

.faq-cta .eyebrow {
  margin-bottom: 6px;
}

.faq-cta h3 {
  margin: 0;
  color: #07285e;
  font-size: 2rem;
}

.faq-cta h3 em {
  color: #f35e33;
}

.faq-cta ul {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-cta li {
  max-width: 130px;
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-header blockquote>span {
  position: absolute;
  top: 18px;
  right: 28px;
  color: var(--yellow);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: .72;
}

.faq-header h2 {
  font-size: 3.5rem;
}

.faq-side-note {
  margin: 15px 0 0;
  padding-left: 18px;
  color: #fff;
  border-left: 3px solid var(--yellow);
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

.faq-cta .mini-icon {
  width: 46px;
  height: 46px;
}

/* 09 — Avaliação */
.evaluation {
  padding-top: 20px;
  padding-bottom: 18px;
  background: linear-gradient(#f3f9fc 0%,#edf7fb 72%,rgba(237,247,251,.3) 100%);
}

.evaluation-panel {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(390px,.75fr);
  gap: 34px;
  padding: 40px 150px 40px 40px;
  background-image: linear-gradient(90deg,rgba(8,37,55,.74),rgba(8,37,55,.58)),url("../media/otimizadas/entrada-condominio-1600.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: visible;
}

.evaluation-copy>p:not(.eyebrow) {
  max-width: 740px;
  color: #e4eaed;
  font-size: 1.05rem;
}

.evaluation-copy>ul {
  display: flex;
  gap: 25px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.evaluation-copy>ul li {
  padding-left: 15px;
  border-left: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 22px 0 0;
}

.evaluation-copy>img {
  width: 100%;
  height: 260px;
  margin-top: 25px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 26px;
}

.contact-form {
  align-self: start;
  padding: 28px;
  color: #fff;
  background: rgba(33,61,79,.83);
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
  position: relative;
  z-index: 4;
}

.contact-form h3 {
  padding-bottom: 18px;
  border-bottom: 3px solid var(--yellow);
  font-size: 1.65rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: .77rem;
  font-weight: 800;
}

.form-wide {
  grid-column: 1/-1;
}

.contact-form input,.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: #152438;
  background: #f9fcfd;
  border: 1px solid rgba(8,30,45,.16);
  border-radius: 8px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input[aria-invalid=true],.contact-form textarea[aria-invalid=true] {
  border: 2px solid #ffcf4d;
  box-shadow: 0 0 0 3px rgba(255,207,77,.16);
}

.contact-form .button {
  width: 100%;
  margin-top: 18px;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: .72;
}

.form-honeypot {
  position: absolute!important;
  width: 1px!important;
  height: 1px!important;
  margin: -1px!important;
  padding: 0!important;
  overflow: hidden!important;
  clip: rect(0 0 0 0)!important;
  clip-path: inset(50%)!important;
  white-space: nowrap!important;
  border: 0!important;
}

.form-privacy {
  margin: 10px 0 0;
  color: rgba(255,255,255,.78);
  font-size: .66rem;
  line-height: 1.35;
}

.form-privacy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  font-size: .73rem;
}

.form-location svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
}

.form-status {
  min-height: 20px;
  margin: 9px 0 0;
  color: #ffe58d;
  font-size: .76rem;
  font-weight: 700;
}

.form-status.is-success {
  color: #c8f1d3;
}

.form-status.is-error {
  color: #ffe58d;
}

.process-panel {
  z-index: 3;
  display: grid;
  grid-template-columns: .7fr 2.3fr;
  gap: 25px;
  margin-top: -12px;
  padding: 26px;
}

.process-panel .eyebrow {
  margin-bottom: 7px;
}

.process-panel h3 {
  margin: 0;
  color: #072c65;
  font-size: 1.8rem;
}

.process-panel ol {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-panel li {
  display: grid;
  gap: 5px;
  padding: 8px 24px;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
}

.process-panel li+li {
  border-left: 1px solid var(--line);
}

.process-panel strong {
  color: #082d65;
}

.process-panel span {
  color: #6b7894;
  font-size: .83rem;
}

.closing-line {
  margin: 24px 0 0;
  text-align: center;
  color: #082450;
  font-size: 1.5rem;
  font-weight: 900;
}

.closing-line-mobile-break {
  display: none;
}

.evaluation-copy {
  min-width: 0;
}

.evaluation-copy h2 {
  max-width: 760px;
  font-size: 3.6rem;
}

.evaluation-copy>ul li+li {
  padding-left: 22px;
  border-left: 1px solid rgba(255,255,255,.3);
}

.evaluation-copy>figure {
  position: relative;
  margin: 18px 0 0;
}

.evaluation-copy>figure img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: center 56%;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 26px;
}

.evaluation-copy figcaption {
  position: absolute;
  bottom: 12px;
  left: -28px;
  padding: 26px;
  color: #fff;
  background: rgba(42,51,57,.65);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 22px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.7;
  text-transform: uppercase;
}

.evaluation-corner {
  position: absolute;
  z-index: 3;
  right: -18px;
  bottom: 0;
  width: 205px;
  margin: 0;
  padding: 55px 28px 30px;
  color: #617189;
  background: linear-gradient(145deg,#ffe19e,#fff7df);
  border-radius: 48px 18px 0 18px;
  clip-path: polygon(35% 0,100% 0,100% 100%,0 100%);
}

.evaluation-side-note {
  position: absolute;
  z-index: 3;
  top: 42px;
  right: 20px;
  width: 108px;
  margin: 0;
  padding-left: 16px;
  color: #fff;
  border-left: 3px solid var(--yellow);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.75;
  text-transform: uppercase;
}

.process-panel li .mini-icon {
  grid-row: 1/3;
  width: 48px;
  height: 48px;
}

.closing-line::after {
  width: 48px;
  height: 3px;
  display: block;
  margin: 18px auto 0;
  content: "";
  background: var(--yellow);
}

/* 10 — Encerramento */
.footer {
  padding-bottom: 26px;
  margin-top: -34px;
  background: linear-gradient(rgba(255,255,255,.72),rgba(255,255,255,.95)),url("../media/otimizadas/fundo-rodape-1600.webp") center/cover;
  padding-top: 86px;
}

.footer-intro {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 40px;
  padding: 20px 50px 55px;
  padding-bottom: 48px;
}

.footer-intro h2 {
  margin-bottom: 20px;
  font-size: 4rem;
}

.footer-intro>div>p:last-child {
  max-width: 900px;
  color: #65738d;
  font-size: 1.08rem;
}

.footer-script {
  justify-self: center;
  color: #2288b2;
  font-size: 2rem;
  font-style: italic;
  line-height: 1.25;
  transform: rotate(-6deg);
}

.footer-panel {
  display: grid;
  grid-template-columns: 1.15fr .5fr .5fr .85fr 1.35fr;
  gap: 28px;
  padding: 46px 45px 30px;
  background: linear-gradient(130deg,#062b43,#031d32);
}

.footer-brand img {
  width: 310px;
  filter: none;
}

.footer-brand p {
  max-width: 335px;
  margin: 36px 0 0;
  color: #d7e2e8;
  font-size: .9rem;
  margin-top: 42px;
}

.footer-panel h3 {
  margin: 0 0 20px;
}

.footer-panel nav,.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-left: 28px;
  border-left: 1px solid rgba(255,255,255,.2);
}

.footer-panel nav a,.footer-column span {
  color: #dce5e9;
  font-size: .87rem;
  text-decoration: none;
}

.footer-cta {
  padding: 30px;
  background: rgba(43,89,105,.42);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 28px;
  min-width: 360px;
}

.footer-cta .eyebrow {
  margin-bottom: 12px;
}

.footer-cta h3 {
  font-size: 2rem;
}

.footer-cta>p:not(.eyebrow) {
  color: #e2eaed;
  font-size: .9rem;
}

.footer-cta .button {
  width: 100%;
  padding-inline: 18px;
}

.footer-cta>span {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  color: #dce7eb;
  font-size: .68rem;
  white-space: nowrap;
}

.footer-cta>span svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
}

.footer-bottom {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: .75fr .75fr 1.4fr .65fr;
  align-items: center;
  gap: 30px;
  margin-top: 10px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.22);
}

.footer-bottom>div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-bottom strong {
  font-size: 2.5rem;
}

.footer-bottom span {
  font-size: .86rem;
}

.footer-bottom p {
  margin: 0;
  text-align: left;
  color: #cbd9df;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-bottom .mini-icon {
  width: 44px;
  height: 44px;
}

.footer-values {
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,.25);
  line-height: 1.8!important;
}

/* Movimento sutil */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms var(--ease),transform 650ms var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  /* Fundamentos */
  .note-top {
    right: -15px;
  }

  .note-bottom {
    display: none;
  }

  /* Componentes compartilhados */
  .problem-panel,.difference-panel,.method-top,.leadership-header {
    gap: 35px;
  }

  /* Cabeçalho */
  .header-cta {
    display: none;
  }

  .brand {
    width: 220px;
  }

  .main-nav {
    gap: 20px;
  }

  /* 01 — Hero */
  .hero-grid {
    grid-template-columns: .95fr 1.05fr;
  }

  .hero-visual {
    min-height: 580px;
  }

  .hero-photo {
    inset: 45px 0 45px 30px;
  }

  /* 02 — Problema e diferença TF */
  .three-points {
    grid-template-columns: 1fr;
  }

  .three-points article {
    display: grid;
    grid-template-columns: auto 1fr;
    padding: 10px 0;
  }

  .three-points article+article {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .three-points h3 {
    margin: 5px 0 0 14px;
  }

  .three-points p {
    grid-column: 2;
    margin-left: 14px;
  }

  /* 03 — Método TF */
  .value-bar {
    grid-template-columns: 1fr auto;
  }

  .value-bar ul {
    grid-row: 2;
    grid-column: 1/-1;
  }

  /* 04 — Estrutura TF */
  .team-panel {
    grid-template-columns: repeat(2,1fr);
  }

  .team-panel>div {
    border-bottom: 1px solid var(--line);
  }

  .team-panel>div+div {
    border-left: 0;
  }

  .team-panel>div:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .team-panel .team-total {
    grid-column: 1/-1;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

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

  /* 07 — Perfil de condomínio */
  .fit-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* 08 — FAQ */
  .faq-cta {
    grid-template-columns: 1fr auto;
  }

  .faq-cta ul {
    grid-row: 2;
    grid-column: 1/-1;
  }

  /* 10 — Encerramento */
  .footer-panel {
    grid-template-columns: 1.2fr repeat(3,.7fr);
  }

  .footer-cta {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 15px;
  }

  .footer-cta .eyebrow,.footer-cta>p,.footer-cta>span {
    grid-column: 1;
  }

  .footer-cta h3 {
    grid-column: 1;
  }

  .footer-cta .button {
    grid-column: 2;
    grid-row: 1/5;
  }
}

@media (max-width: 900px) {
  /* Fundamentos */
  html {
    scroll-padding-top: 90px;
  }

  .shape-blue {
    inset: 0 45px 50px 90px;
  }

  .shape-yellow {
    right: 3px;
  }

  /* Componentes compartilhados */
  .section {
    padding-block: 44px;
  }

  .hero-content h1 br,.problem-intro h2 br,.difference-copy h2 br,.method-copy h2 br,.structure-copy h2 br,.leadership-header h2 br,.territory-copy h2 br,.fit-copy h2 br,.faq-header h2 br,.evaluation-copy h2 br,.footer-intro h2 br {
    display: block;
  }

  /* Cabeçalho */
  .site-header {
    padding-top: 10px;
  }

  .header-inner {
    min-height: 70px;
    padding: 9px 12px 9px 18px;
    border-radius: 20px;
  }

  .brand {
    width: 190px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    right: var(--gutter);
    left: var(--gutter);
    display: grid;
    gap: 3px;
    margin: 0;
    padding: 13px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease,visibility 180ms ease,transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .main-nav a {
    padding: 13px;
    border-radius: 12px;
  }

  .main-nav a:hover {
    background: #eff8fc;
  }

  /* 01 — Hero */
  .hero {
    margin-top: -90px;
    padding-top: 118px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-content h1 br {
    display: block;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .hero-visual {
    min-height: 580px;
  }

  .hero-photo {
    inset: 35px 20px;
  }

  .metric-panel {
    margin-top: 18px;
    padding: 28px 20px;
  }

  .metric-panel strong {
    font-size: 2.4rem;
  }

  .metric-panel span {
    font-size: .85rem;
  }

  /* 02 — Problema e diferença TF */
  .problem {
    padding-top: 30px;
  }

  .problem-panel {
    grid-template-columns: 1fr;
    padding: 44px;
  }

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

  .pain-grid li {
    border-right: 0!important;
    border-bottom: 1px solid rgba(255,255,255,.24);
  }

  .pain-grid li:last-child {
    border-bottom: 0;
  }

  .difference-panel {
    grid-template-columns: 1fr;
    padding: 42px 42px 68px;
  }

  .difference-gallery {
    min-height: 500px;
  }

  .pain-grid li {
    grid-template-columns: 62px 48px 1fr;
  }

  .difference-gallery .glass-note {
    top: 250px;
    right: 0;
    width: 42%;
  }

  .gallery-small {
    right: auto;
    left: 0;
    width: 54%;
    height: auto;
    aspect-ratio: 16/9;
    object-position: center 42%;
  }

  .difference-gallery .photo-note-blue {
    right: 0;
    bottom: 0;
    width: 42%;
  }

  /* 03 — Método TF */
  .method-top {
    grid-template-columns: 1fr;
    padding: 45px 42px 90px;
  }

  .system-composition {
    min-height: 310px;
  }

  .system-complete {
    width: min(100%,680px);
    max-height: 310px;
  }

  .method-flow ol {
    grid-template-columns: 1fr 1fr;
  }

  .method-flow li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .method-flow li:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .method-gallery figure {
    height: auto;
    background: rgba(238,249,253,.96);
  }

  .method-gallery img {
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 26px 26px 0 0;
  }

  .method-gallery figcaption,
  .method-gallery figure:last-child figcaption {
    position: static;
    max-width: none;
    padding: 18px;
    border-radius: 0 0 24px 24px;
  }

  .value-bar h3 {
    white-space: normal;
  }

  /* 04 — Estrutura TF */
  .structure-panel {
    grid-template-columns: 1fr;
  }

  .structure-copy {
    padding: 44px;
  }

  .structure-copy h2 {
    margin-bottom: 25px;
  }

  .structure-phrase {
    margin-top: 35px!important;
  }

  .structure-panel>img {
    height: 500px;
    object-position: 50% 20%;
  }

  .benefit-panel {
    grid-template-columns: 1fr 1fr;
    padding-right: 175px;
  }

  .benefit-panel li+li {
    border-left: 0;
  }

  .benefit-panel li:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .structure-column {
    grid-column: auto;
  }

  .structure-note {
    position: static;
    margin: 16px 30px 0;
  }

  .structure-corner {
    position: static;
    width: auto;
    margin: 14px 30px 20px;
    padding: 28px;
    clip-path: none;
    border-radius: 24px;
  }

  .team-panel {
    margin-top: 14px;
  }

  /* 05 — Liderança TF */
  .leadership-header {
    grid-template-columns: 1fr;
  }

  .leadership-pillars {
    margin-top: 0;
    padding-right: 0;
  }

  .leadership-pillars article {
    padding-inline: 18px;
  }

  .leadership-side-note {
    position: static;
    grid-column: 1/-1;
    margin: 14px 18px 0;
    padding: 14px 0 0 18px;
  }

  .leadership-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .leadership-gallery img {
    height: 280px;
  }

  /* 06 — Atuação local */
  .territory-panel {
    grid-template-columns: 1fr;
  }

  .territory-copy {
    padding: 10px;
  }

  .video-frame {
    grid-column: 1;
  }

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

  .territory-stats {
    grid-template-columns: 1fr 1fr;
  }

  .territory-stats>div {
    border-bottom: 1px solid var(--line);
  }

  .territory-stats>div+div {
    border-left: 0;
  }

  .territory-stats>div:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  /* 07 — Perfil de condomínio */
  .fit-copy {
    padding-right: 0;
  }

  .fit-copy h2 {
    font-size: 2.7rem;
  }

  .fit-side-note {
    position: static;
    width: auto;
    max-width: 520px;
    margin: 22px 0 0!important;
  }

  /* 08 — FAQ */
  .faq-header {
    grid-template-columns: 1fr;
  }

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

  .faq-grid details {
    grid-column: 1!important;
    grid-row: auto!important;
  }

  .faq-side-note {
    position: static;
    margin: 0;
    padding: 14px 16px;
    background: rgba(26,48,61,.68);
    border-radius: 0 16px 16px 0;
  }

  /* 09 — Avaliação */
  .evaluation-panel {
    grid-template-columns: 1fr;
    padding: 42px;
  }

  .evaluation-copy>img {
    height: 320px;
  }

  .process-panel {
    grid-template-columns: 1fr;
  }

  .evaluation-copy h2 {
    font-size: clamp(2.9rem,7vw,4rem);
  }

  .evaluation-corner {
    position: static;
    width: auto;
    margin: 0;
    padding: 26px 28px;
    clip-path: none;
    border-radius: 22px;
  }

  .evaluation-side-note {
    position: static;
    width: auto;
    margin: 0;
    padding: 14px 16px;
    background: rgba(18,48,65,.68);
    border-radius: 0 16px 16px 0;
  }

  /* 10 — Encerramento */
  .footer-intro {
    grid-template-columns: 1fr;
  }

  .footer-intro h2 {
    font-size: 3rem;
  }

  .footer-script {
    justify-self: start;
  }

  .footer-panel {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,.footer-cta,.footer-bottom {
    grid-column: 1/-1;
  }

  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom p {
    grid-column: 1/-1;
  }

  .footer-cta {
    min-width: 0;
  }
}

@media (max-width: 600px) {
  /* Fundamentos */
  :root {
    --gutter: 14px;
    --radius: 28px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .text-link {
    justify-content: center;
  }

  .service-line {
    font-size: .61rem;
    line-height: 1.7;
  }

  .shape-blue {
    inset: 0 28px 38px 60px;
    border-radius: 32px;
  }

  .shape-yellow {
    right: 0;
    width: 110px;
    height: 180px;
  }

  .note-top {
    top: 45px;
    right: 0;
    padding: 20px;
    font-size: .55rem;
  }

  /* Componentes compartilhados */
  .section {
    padding-block: 34px;
  }

  .eyebrow {
    font-size: .67rem;
  }

  .button {
    width: 100%;
    min-height: 56px;
    padding-inline: 20px;
  }

  .leadership .value-bar {
    margin-top: 14px;
  }

  /* Cabeçalho */
  .header-inner {
    min-height: 64px;
  }

  .brand {
    width: 155px;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 62px;
  }

  .menu-toggle {
    width: 43px;
    height: 43px;
  }

  /* 01 — Hero */
  .hero {
    padding-top: 94px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0,1fr);
  }

  .hero-content h1 {
    font-size: 2.65rem;
  }

  .hero-content h1 br {
    display: block;
  }

  .hero-content,.hero-visual {
    min-width: 0;
  }

  .hero-pillars {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 8px;
  }

  .hero-pillars li {
    min-width: 0;
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 0!important;
    border: 0!important;
    font-size: .78rem;
  }

  .hero-pillars .mini-icon {
    width: 46px;
    height: 46px;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-photo {
    inset: 25px 6px 32px 18px;
    border-radius: 38px 24px 50px 28px;
  }

  .hero-photo img {
    object-position: 52% center;
  }

  .metric-panel {
    grid-template-columns: repeat(3,1fr);
    padding: 10px 6px;
    border-radius: 28px 28px 0 0;
  }

  .metric-panel>div {
    padding: 15px 5px;
  }

  .metric-panel>div+div {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .metric-panel strong {
    font-size: 1.75rem;
  }

  .metric-panel span {
    margin-top: 6px;
    font-size: .68rem;
  }

  /* 02 — Problema e diferença TF */
  .problem-panel {
    padding: 34px 24px;
  }

  .problem-intro h2 br {
    display: block;
  }

  .problem-intro h2 {
    font-size: 2.25rem;
  }

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

  .pain-grid li {
    grid-template-columns: 44px 42px 1fr;
    padding: 22px 0;
    gap: 10px;
  }

  .pain-grid li:nth-child(odd) {
    border-right: 0;
  }

  .pain-grid li:nth-last-child(2) {
    border-bottom: 1px solid rgba(255,255,255,.24);
  }

  .pain-grid li:last-child {
    border-bottom: 0;
  }

  .card-number {
    font-size: 2.4rem;
  }

  .difference-panel {
    margin-top: -24px;
    padding: 34px 22px 65px;
  }

  .difference-copy h2 br {
    display: block;
  }

  .difference-copy h2 {
    font-size: 2.25rem;
  }

  .difference-gallery {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .difference-gallery .gallery-main {
    position: relative;
    inset: auto;
    grid-column: 1/-1;
    height: auto;
    aspect-ratio: 16/9;
  }

  .difference-gallery .gallery-small {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-column: 1/-1;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    margin-top: 0;
    border-width: 8px;
  }

  .difference-gallery .glass-note {
    position: static;
    width: 100%;
    padding: 18px;
    font-size: .58rem;
    border-radius: 18px;
  }

  .difference-gallery .photo-note-blue {
    position: static;
    width: 100%;
    padding: 18px;
    font-size: .58rem;
    border-radius: 18px;
  }

  .section-link {
    width: 100%;
    justify-content: center;
    font-size: .62rem;
  }

  .pain-grid .mini-icon {
    width: 42px;
    height: 42px;
  }

  .difference-accent {
    right: 0;
    width: 52%;
    height: 38%;
    bottom: 64px;
  }

  /* 03 — Método TF */
  .method-top {
    padding: 34px 22px 75px;
  }

  .method-copy h2 br {
    display: block;
  }

  .method-copy h2 {
    font-size: 2.35rem;
  }

  .system-composition {
    min-height: 205px;
  }

  .system-complete {
    width: 100%;
    max-height: 205px;
  }

  .method-flow {
    margin-top: -48px;
    padding: 18px;
  }

  .method-flow ol {
    grid-template-columns: 1fr;
  }

  .method-flow li {
    padding: 18px 12px;
    border-top: 1px solid var(--line)!important;
    border-left: 0!important;
  }

  .method-flow .step-icon {
    top: 16px;
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .method-flow li:first-child {
    border-top: 0!important;
  }

  .method-gallery {
    grid-template-columns: 1fr;
  }

  .method-gallery figure {
    height: auto;
  }

  .value-bar {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }

  .value-bar ul {
    display: grid;
    grid-row: auto;
    grid-column: auto;
    gap: 12px;
  }

  .value-bar .button {
    grid-column: 1;
  }

  .method-side-note {
    margin-top: 20px;
  }

  .method-flow li::after {
    display: none!important;
  }

  .method-gallery figcaption {
    max-width: none;
    padding: 16px;
    font-size: .6rem;
  }

  /* 04 — Estrutura TF */
  .structure-panel {
    min-height: auto;
  }

  .structure-copy {
    padding: 34px 22px;
  }

  .structure-copy h2 br {
    display: block;
  }

  .structure-copy h2 {
    font-size: 2.25rem;
  }

  .structure-copy>p {
    font-size: 1rem;
  }

  .structure-panel>img {
    min-width: 0;
    height: 410px;
  }

  .team-panel {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .team-panel>div,.team-panel>div:nth-child(even) {
    min-height: 80px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .team-panel>div:last-child {
    border-bottom: 0;
  }

  .benefit-panel {
    grid-template-columns: 1fr;
    padding: 18px;
    padding-right: 18px;
  }

  .benefit-panel li,.benefit-panel li:nth-child(even) {
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-panel li:last-child {
    border-bottom: 0;
  }

  .structure-note {
    margin: 14px 18px 0;
    padding: 20px;
    font-size: .58rem;
  }

  .structure-corner {
    margin: 12px 18px 18px;
    padding: 24px 22px;
    font-size: .55rem;
    border-radius: 22px;
  }

  .benefit-panel li {
    gap: 12px;
  }

  /* 05 — Liderança TF */
  .leadership-panel {
    padding: 34px 18px;
  }

  .leadership-header h2 br {
    display: block;
  }

  .leadership-header h2 {
    font-size: 2.35rem;
  }

  .leadership-pillars {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .leadership-pillars article+article {
    border-top: 1px solid rgba(255,255,255,.26);
    border-left: 0;
  }

  .leadership-gallery {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .leadership-gallery img {
    height: 260px;
  }

  .assembly-photo {
    height: 320px!important;
    object-position: 52% center;
  }

  .leadership-side-note {
    position: static;
    margin-top: 18px;
    padding: 16px 0 0 18px;
  }

  .leadership-gallery figure:first-child figcaption {
    left: 8px;
  }

  .leadership-gallery figure:last-child figcaption {
    right: auto;
    left: 8px;
  }

  /* 06 — Atuação local */
  .territory-panel {
    padding: 26px 18px;
  }

  .territory-copy h2 br {
    display: block;
  }

  .territory-copy>p {
    font-size: 1rem;
  }

  .video-frame {
    border-radius: 22px;
    min-height: 0;
  }

  .neighborhood-grid {
    gap: 10px;
  }

  .neighborhood-grid article {
    height: 135px;
  }

  .neighborhood-grid h3 {
    bottom: 8px;
    left: 8px;
    padding: 6px 10px;
    font-size: .78rem;
  }

  .neighborhood-grid h3 svg {
    width: 18px;
    height: 18px;
  }

  .territory-stats {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .territory-stats>div,.territory-stats>div:nth-child(even) {
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .territory-stats>div:last-child {
    border-bottom: 0;
  }

  .territory-copy h2 {
    font-size: 2.25rem;
  }

  /* 07 — Perfil de condomínio */
  .fit-panel {
    padding: 34px 18px 70px;
  }

  .fit-copy h2 br {
    display: block;
  }

  .fit-copy h2 {
    font-size: 2.25rem;
  }

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

  .fit-grid li {
    min-height: auto;
  }

  .fit-cta {
    grid-template-columns: 1fr;
    margin-top: -38px;
    padding: 28px 22px;
  }

  .fit-cta ul {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .fit-cta li {
    padding: 8px 0!important;
    border-left: 0!important;
  }

  .fit-copy {
    padding-right: 0;
  }

  .fit-side-note {
    margin-top: 22px!important;
  }

  .fit-grid li .mini-icon {
    float: none;
    margin-left: 12px;
  }

  /* 08 — FAQ */
  .faq-panel {
    padding: 30px 16px;
  }

  .faq-header {
    gap: 24px;
  }

  .faq-header h2 br {
    display: block;
  }

  .faq-header h2 {
    font-size: 2.25rem;
  }

  .faq-header blockquote {
    padding: 26px 64px 26px 26px;
    font-size: .95rem;
  }

  .faq-grid details {
    padding: 15px;
  }

  .faq-grid summary {
    font-size: .92rem;
    cursor: pointer;
  }

  .faq-grid summary span {
    width: 42px;
    height: 42px;
  }

  .faq-grid details p {
    margin: 12px 0 0;
    font-size: .85rem;
  }

  .faq-grid summary::after {
    margin-left: auto;
    content: "+";
    font-size: 1.4rem;
  }

  .faq-grid details[open] summary::after {
    content: "−";
  }

  .faq-cta {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .faq-cta ul {
    display: grid;
    grid-row: auto;
    grid-column: auto;
    gap: 10px;
  }

  .faq-cta li {
    max-width: none;
    padding-left: 13px;
    border-left: 0;
    padding: 8px 0;
  }

  .faq-side-note {
    margin: 0;
    padding: 18px;
  }

  .faq-header blockquote>span {
    font-size: 3.5rem;
  }

  /* 09 — Avaliação */
  .evaluation-panel {
    padding: 32px 18px;
  }

  .evaluation-copy h2 br {
    display: block;
  }

  .evaluation-copy>ul {
    display: grid;
    gap: 10px;
  }

  .evaluation-copy>img {
    height: 220px;
  }

  .contact-form {
    padding: 24px 18px;
  }

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

  .form-wide {
    grid-column: 1;
  }

  .process-panel {
    padding: 24px 18px;
  }

  .process-panel ol {
    grid-template-columns: 1fr;
  }

  .process-panel li {
    padding: 18px 8px;
    border-top: 1px solid var(--line)!important;
    border-left: 0!important;
    grid-template-columns: auto 1fr;
  }

  .process-panel li:first-child {
    border-top: 0!important;
  }

  .closing-line {
    padding-inline: 18px;
    font-size: 1.2rem;
  }

  .evaluation-copy h2 {
    font-size: 2rem;
  }

  .evaluation-copy>ul li,.evaluation-copy>ul li+li {
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,.25);
    border-left: 0;
  }

  .evaluation-copy>figure img {
    height: 260px;
  }

  .evaluation-copy figcaption {
    left: 10px;
    bottom: 10px;
    padding: 18px;
  }

  .evaluation-corner {
    margin: 18px 0 0;
    padding: 25px 22px;
  }

  .evaluation-side-note {
    margin: 18px 0 0;
    padding: 16px 18px;
    background: rgba(33,61,79,.58);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 18px;
  }


  /* 10 — Encerramento */
  .footer {
    background-attachment: scroll;
  }

  .footer-intro {
    padding: 10px 8px 32px;
  }

  .footer-intro h2 br {
    display: block;
  }

  .footer-intro h2 {
    font-size: 2rem;
  }

  .footer-script {
    font-size: 1.55rem;
  }

  .footer-panel {
    grid-template-columns: 1fr;
    padding: 32px 22px;
  }

  .footer-brand,.footer-cta,.footer-bottom {
    grid-column: 1;
  }

  .footer-panel nav,.footer-column {
    padding: 20px 0 0;
    border-top: 1px solid rgba(255,255,255,.2);
    border-left: 0;
  }

  .footer-cta {
    display: block;
  }

  .footer-cta .button {
    margin-top: 10px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom p {
    grid-column: 1;
    text-align: left;
  }

  .footer-cta>span {
    white-space: normal;
  }

  .footer-values {
    padding: 18px 0 0;
    border-top: 1px solid rgba(255,255,255,.25);
    border-left: 0;
  }

  .footer-bottom>div {
    flex-wrap: wrap;
  }
}

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

  *,*::before,*::after {
    animation-duration: .01ms!important;
    animation-iteration-count: 1!important;
    transition-duration: .01ms!important;
  }

  /* 10 — Encerramento */
  .footer {
    background-attachment: scroll;
  }

  /* Movimento sutil */
  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Fidelidade aos mockups aprovados — somente desktop */
@media (min-width: 1181px) {
  :root {
    --gutter: clamp(22px,2vw,30px);
  }

  html {
    font-size: 17px;
  }

  .button {
    min-height: 66px;
    padding: 16px 38px;
    font-size: 1.05rem;
  }

  .button-small {
    min-height: 60px;
    padding: 14px 32px;
    font-size: .94rem;
  }

  .site-header:not(.is-scrolled) .brand {
    width: 300px;
  }

  .site-header:not(.is-scrolled) .header-inner {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header:not(.is-scrolled) .main-nav,
  .site-header:not(.is-scrolled) .header-cta {
    transform: translateY(-15px);
  }

  .main-nav {
    gap: 50px;
  }

  .header-cta {
    min-width: 305px;
  }

  .hero {
    margin-top: -116px;
    padding-top: 100px;
  }

  .hero-grid {
    min-height: 720px;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .hero-content {
    padding-left: 48px;
    padding-bottom: 36px;
  }

  .hero-content .eyebrow {
    margin-bottom: 35px;
  }

  .hero-content h1 {
    margin-bottom: 26px;
    font-size: 68px;
  }

  .hero-copy {
    font-size: 1.25rem;
    margin-bottom: 37px;
  }

  .hero-pillars {
    margin-bottom: 36px;
  }

  .hero-content .service-line {
    margin-top: 43px;
  }

  .hero-visual {
    min-height: 720px;
  }

  .hero-photo {
    inset: 15px 29px 15px 0;
  }

  .hero-photo img {
    object-position: 6% center;
  }

  .metric-panel {
    margin-top: 10px;
  }

  .difference-panel {
    width: calc(100% - 2 * var(--gutter) - 40px);
    gap: 26px;
    padding-bottom: 30px;
  }

  .difference-copy h2 {
    font-size: 48px;
  }

  .three-points {
    margin-top: 20px;
  }

  .difference-gallery {
    min-height: 400px;
  }

  .difference-gallery .gallery-main {
    height: 340px;
  }

  .difference-gallery .gallery-small {
    right: 15%;
    top: 310px;
    bottom: auto;
    left: auto;
    width: 50%;
    height: 190px;
    aspect-ratio: auto;
  }

  .difference-gallery .glass-note {
    top: 8px;
    right: -35px;
    width: 145px;
  }

  .difference-gallery .photo-note-blue {
    right: -35px;
    top: 310px;
    bottom: auto;
    width: 140px;
  }

  .method-top {
    min-height: 430px;
    padding: 32px 52px 65px;
  }

  .system-composition {
    min-height: 330px;
    height: 330px;
  }

  .system-complete {
    position: absolute;
    top: -20px;
    left: -40px;
    width: 116%;
    max-width: none;
    max-height: none;
  }

  .method-copy h2 {
    margin-bottom: 25px;
  }

  .method-copy h2 + p {
    max-width: 430px;
  }

  .method-side-note {
    position: absolute;
    top: 205px;
    left: 470px;
    width: 160px;
    margin: 0;
  }

  .method-flow {
    padding-block: 16px;
  }

  .method-gallery figure {
    height: 260px;
    overflow: visible;
  }

  .method-gallery img {
    height: 260px;
    aspect-ratio: auto;
    border-radius: 30px;
  }

  .method-gallery figcaption,
  .method-gallery figure:last-child figcaption {
    position: absolute;
    top: 80px;
    max-width: 165px;
    padding: 20px;
    background: rgba(238,249,253,.94);
    border-radius: 22px;
    font-size: .64rem;
  }

  .method-gallery figure:first-child figcaption {
    left: -10px;
    max-width: 130px;
  }

  .method-gallery figure:last-child figcaption {
    right: -20px;
  }

  .value-bar .button {
    min-width: 290px;
    white-space: nowrap;
  }

  .structure-panel,.structure-panel>img {min-height:650px;height:650px;}
  .structure-panel>img {object-position:70% 18%;}
  .structure-copy {padding:48px 50px;}
  .structure-copy h2 {width:800px;font-size:3.8rem;margin-bottom:24px;}
  .structure-copy>p {max-width:540px;font-size:1.22rem;}
  .structure-copy>.structure-phrase {width:780px;max-width:none;margin-top:90px!important;}
  .structure-note {top:86px;}
  .team-panel {margin-top:-52px;}
  .leadership-panel {padding-top:35px;}
  .leadership-header {grid-template-columns:.98fr 1.02fr;}
  .leadership-header .eyebrow {margin-bottom:9px;}
  .leadership-header h2 {width:700px;font-size:3.15rem;margin-bottom:15px;}
  .leadership-pillars {width:calc(100% + 65px);margin-left:-65px;padding-right:70px;transform:translateY(-45px);}
  .leadership-pillars article {padding-inline:10px;}
  .leadership-side-note {top:85px;right:-20px;bottom:auto;width:120px;font-size:.58rem;letter-spacing:.08em;text-transform:uppercase;}
  .leadership-gallery {margin-inline:-25px;}
  .leadership-gallery img {height:380px;}
  .territory-panel {grid-template-columns:minmax(0,.78fr) minmax(0,1.22fr);gap:24px;}
  .territory-copy {min-width:0;}
  .territory-copy h2 {width:520px;font-size:3.25rem;letter-spacing:-.08em;}
  .video-frame {aspect-ratio:1.65;min-height:475px;margin-right:-18px;}
  .neighborhood-grid article {height:180px;}
  .territory-stats {padding-block:26px;}
  .fit-copy>p:not(.eyebrow):not(.fit-side-note) {max-width:650px;}
  .fit-side-note {padding:20px;letter-spacing:.12em;}
  .faq-header h2 {margin-bottom:20px;}
  .faq-header blockquote {max-width:400px;min-height:240px;padding:32px 65px 32px 32px;font-size:1.05rem;}
  .faq-grid summary {font-size:1.05rem;}
  .faq-grid details p {font-size:.92rem;line-height:1.35;}
  .evaluation-panel {grid-template-columns:minmax(0,1fr) 395px;gap:28px;padding-right:165px;}
  .evaluation-copy .eyebrow {margin-bottom:4px;}
  .evaluation-copy h2 {margin-bottom:20px;}
  .evaluation-copy>figure img {height:295px;}
  .contact-form {padding:30px 36px 20px;}
  .contact-form h3 {margin-bottom:16px;}
  .contact-form input,.contact-form textarea {padding:8px 12px;}
  .contact-form textarea {height:80px;}
  .contact-form .button {min-height:56px;padding:12px 14px;font-size:.92rem;white-space:nowrap;}
  .form-location {font-size:.64rem;white-space:nowrap;}
  .form-grid {gap:12px;}
  .footer-intro {padding-bottom:38px;}
  .footer-panel {grid-template-columns:1.25fr .5fr .5fr .8fr 1.2fr;gap:22px;}
  .footer-brand img {width:340px;}
  .footer-cta h3 {font-size:1.85rem;}
}

/* Segunda rodada de alinhamento com os mockups — exclusivamente desktop */
@media (min-width: 1181px) {
  .eyebrow {
    align-items: center;
    font-size: 1.05rem;
  }

  .eyebrow>span {margin-top: 0;}
  .structure-copy>.eyebrow,.territory-copy>.eyebrow {font-size: 1.05rem;}

  .difference-panel {
    width: min(calc(100% - 2 * var(--gutter)),var(--container));
    min-height: 650px;
    padding-bottom: 76px;
  }

  .difference-gallery {min-height: 550px;}
  .difference-gallery .gallery-main {
    height: 445px;
    object-position: center 50%;
  }

  .difference-gallery .gallery-small {
    top: 395px;
    height: 230px;
    object-position: center 42%;
  }

  .difference-gallery .glass-note {
    top: 22px;
    right: -15px;
  }

  .difference-gallery .photo-note-blue {
    top: 410px;
    right: -25px;
  }

  .method-top {
    min-height: 520px;
    padding-bottom: 100px;
    overflow: visible;
  }

  .system-composition {
    min-height: 390px;
    height: 390px;
    z-index: 5;
  }

  .method-gallery figure {
    height: auto;
    overflow: hidden;
    background: #fff2d9;
  }

  .method-gallery img {
    display: block;
    height: 390px;
    object-fit: cover;
    object-position: center;
    border-radius: 30px 30px 0 0;
  }

  .method-gallery figcaption,
  .method-gallery figure:first-child figcaption,
  .method-gallery figure:last-child figcaption {
    position: static;
    max-width: none;
    padding: 16px 22px;
    background: #fff2d9;
    border-radius: 0 0 30px 30px;
    font-size: .72rem;
    line-height: 1.45;
    backdrop-filter: none;
  }

  .method .value-bar,.leadership .value-bar {
    grid-template-columns: minmax(0,1fr) minmax(0,1.35fr);
  }

  .method .value-bar>.button,.leadership .value-bar>.button {display: none;}

  .method .value-bar ul,.leadership .value-bar ul {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 12px;
  }

  .method .value-bar li,.leadership .value-bar li {justify-content: center;}
  .structure-note {top: 270px;right: 16px;}
  .benefit-panel {padding-right: 28px;}
  .benefit-panel li {justify-content: center;}

  .leadership-pillars {
    padding-right: 0;
    transform: translateY(-20px);
  }

  .leadership-side-note {
    position: static;
    grid-column: 1/-1;
    width: max-content;
    max-width: 100%;
    margin: 18px 0 0 10px;
    padding-left: 18px;
    font-size: .68rem;
    line-height: 1.65;
  }

  .video-frame figcaption::before {transform: translateY(-50%);}
  .territory-stats .mini-icon {grid-row: 1/3;align-self: center;justify-self: center;}
  .territory-stats .mini-icon svg {display: block;}
  .fit-side-note {width: 430px;}

  .faq-header blockquote>span {
    position: static;
    display: inline-block;
    margin-right: 8px;
    font-size: 3rem;
    vertical-align: -.2em;
  }

  .evaluation-side-note {right: 55px;}
  .evaluation-corner {
    right: 0;
    width: 245px;
    height: 122px;
    min-height: 0;
    padding: 20px 28px 18px 43px;
    border-radius: 70px 30px 0 60px;
    clip-path: none;
  }

  .contact-form input::placeholder,.contact-form textarea::placeholder {
    color: #b9c2cb;
    opacity: 1;
  }

  .footer {
    margin-top: -34px;
    padding-top: 28px;
    background: none;
  }

  .footer-intro {
    min-height: 430px;
    padding-top: 55px;
    background: linear-gradient(rgba(255,255,255,.72),rgba(255,255,255,.95)),url("../media/otimizadas/fundo-rodape-1600.webp") center/cover;
    border-radius: var(--radius);
  }
}

@media (min-width: 1181px) and (max-width: 1400px) {
  .method-side-note {top: 90px;}
}

.leadership-note-single {display: none;}

/* Refinamento final indicado nos prints — exclusivamente desktop */
@media (min-width: 1181px) {
  /* Print 1 — avaliação */
  .evaluation-side-note,.evaluation-corner {display: none;}
  .evaluation-panel {grid-template-columns:minmax(0,1fr) 505px;padding-right:55px;}
  .evaluation-copy>figure {left: 16px;}
  .evaluation-copy figcaption {left:auto;right:18px;bottom:18px;}
  .contact-form {align-self: stretch;}

  /* Print 2 — espaço do texto de apoio */
  .fit-copy h2 {margin-bottom: 34px;}
  .fit-grid {margin-top: 39px;}

  /* Print 3 — ícones das estatísticas */
  .territory-stats .mini-icon {
    display: grid;
    place-items: center;
    margin-top: 0;
  }

  /* Print 4 — título da faixa de Liderança */
  .leadership .value-bar h3 {
    position: relative;
    top: -12px;
    font-size: 1.65rem;
    line-height: 1.1;
  }

  /* Print 5 — pilares e nota de Liderança */
  .leadership-pillars {
    width: 100%;
    margin-left: 0;
  }

  .leadership-side-note {
    width: auto;
    margin: 28px 0 0 10px;
    white-space: nowrap;
  }

  .leadership-note-original {display: none;}
  .leadership-note-single {display: inline;}

  /* Print 6 — canto decorativo de Estrutura */
  .structure-corner {display: none;}

  /* Print 7 — dispositivos do Método */
  .system-complete {left: -90px;}

  /* Print 8 — fotografias e pontos da Diferença TF */
  .difference-gallery .glass-note {display: none;}
  .difference-copy>p:not(.eyebrow) {margin-top: 75px;}
  .three-points {margin-top: 95px;}
  .difference-gallery .gallery-main {top: -20px;}

  .difference-gallery .photo-note-blue {
    top: 505px;
    right: 20px;
    background: #fff2d9;
  }
}

@media (min-width: 1181px) and (max-width: 1400px) {
  .leadership .value-bar>div {transform: translateY(-25px);}
  .leadership .value-bar h3 {top: 0;font-size: 1.4rem;}
}

/* Composição responsiva — o desktop aprovado começa em 1181px. */
.mobile-menu-cta {display: none;}

@media (max-width: 1180px) {
  :root {
    --gutter: clamp(16px,3vw,30px);
    --radius: 32px;
    --panel-padding: clamp(24px,3.5vw,40px);
  }

  html {scroll-padding-top: 100px;}
  body {overflow-x: visible;}
  body.menu-open {position: fixed;width: 100%;overflow: hidden;}
  html.menu-open {overflow: hidden;overscroll-behavior: none;}
  .section {padding-block: 28px;}
  .container :is(div,article,li,figure,form) {min-width: 0;}
  .container :is(h1,h2,h3) {text-wrap: balance;}
  .container :is(h1,h2,h3) br {display: none;}
  .container h2 {font-size: clamp(2.3rem,4.5vw,3.1rem);line-height: 1.08;}
  .eyebrow,.structure-copy>.eyebrow,.territory-copy>.eyebrow {
    align-items: center;
    gap: 12px;
    font-size: .82rem;
    line-height: 1.5;
    letter-spacing: .15em;
  }
  .eyebrow>span {width: 28px;margin-top: 0;}
  .mini-icon {flex-shrink: 0;}
  .button {min-height: 54px;padding: 14px 24px;font-size: 1rem;}
  .button svg {flex: 0 0 20px;}

  /* Cabeçalho: CTA dentro do menu recolhível, inclusive no tablet. */
  .site-header {padding-top: 10px;}
  .header-inner,.site-header.is-scrolled .header-inner {
    min-height: 72px;
    padding: 10px 14px 10px 20px;
    border-radius: 22px;
  }
  .brand {width: 210px;}
  .header-cta {display: none;}
  .menu-toggle {display: grid;place-items: center;margin-left: auto;flex-shrink: 0;}
  .main-nav {
    position: absolute;
    top: 90px;
    right: var(--gutter);
    left: var(--gutter);
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 16px;
    max-height: calc(100dvh - 110px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease,visibility 180ms ease,transform 180ms ease;
  }
  .main-nav.is-open {opacity: 1;visibility: visible;transform: none;}
  .main-nav a {padding: 14px;border-radius: 12px;}
  .main-nav .mobile-menu-cta {display: inline-flex;margin-top: 8px;border-radius: 999px;}

  /* Hero: retrato e notas têm áreas próprias, sem texto sobre o rosto. */
  .hero {margin-top: -82px;padding-top: 112px;padding-bottom: 0;}
  .hero-grid {min-height: 0;grid-template-columns: minmax(0,1fr) minmax(0,1fr);gap: 30px;}
  .hero-content {padding: 24px 0;}
  .hero-content h1 {font-size: clamp(2.7rem,4.6vw,3.4rem);line-height: 1.06;}
  .hero-copy {font-size: 1.05rem;}
  .hero-pillars {gap: 16px;}
  .hero-pillars li {min-width: 0;display: grid;justify-items: center;gap: 8px;padding: 0;font-size: .88rem;}
  .hero-pillars li+li {padding-left: 0;border-left: 0;}
  .hero-pillars .mini-icon {width: 46px;height: 46px;}
  .hero-actions {display: flex;flex-wrap: wrap;gap: 16px;}
  .service-line {margin-top: 24px;letter-spacing: .12em;}
  .hero-visual {min-height: 0;display: grid;grid-template-columns: 1fr 1fr;gap: 12px;padding: 14px 8px 8px;}
  .hero-photo {position: relative;inset: auto;grid-column: 1/-1;aspect-ratio: 1;}
  .hero-photo img {object-position: 22% center;}
  .hero-visual .glass-note {position: relative;inset: auto;width: auto;margin: 0;padding: 18px;font-size: .65rem;letter-spacing: .1em;}
  .hero-visual .glass-note br {display: none;}
  .hero-visual .note-bottom {display: block;background: #fff2d9;color: #53697d;}
  .shape-blue {inset: 0 0 100px 35px;transform: none;border-radius: 38px;}
  .shape-yellow {z-index: 1;right: 0;bottom: 70px;width: 110px;height: 160px;transform: none;}
  .metric-panel {padding: 24px 18px;margin-top: 24px;}
  .metric-panel strong {font-size: clamp(1.75rem,3.7vw,2.7rem);}
  .metric-panel span {font-size: .9rem;}

  /* Problema e Diferença: leitura contínua e fotos em enquadramento aberto. */
  .problem-panel {grid-template-columns: 1fr;min-height: 0;padding: var(--panel-padding);gap: 24px;}
  .problem-intro>p:last-child {max-width: 65ch;}
  .pain-grid {grid-template-columns: repeat(2,minmax(0,1fr));gap: 0 24px;}
  .pain-grid li {grid-template-columns: 44px 48px minmax(0,1fr);padding: 24px 0;gap: 12px;border-right: 0!important;border-bottom: 1px solid rgba(255,255,255,.24);}
  .pain-grid li:nth-last-child(-n+2) {border-bottom: 0;}
  .card-number {font-size: 2.6rem;}
  .difference-panel {grid-template-columns: 1fr;margin-top: 20px;padding: var(--panel-padding);gap: 28px;}
  .difference-copy>p {max-width: 65ch;}
  .three-points {grid-template-columns: repeat(3,minmax(0,1fr));gap: 20px;margin-top: 28px;}
  .three-points article {display: block;padding: 0;}
  .three-points article+article {padding: 0 0 0 20px;border-top: 0;border-left: 1px solid var(--line);}
  .three-points h3 {margin: 14px 0 8px;}
  .three-points p {margin: 0;font-size: .94rem;}
  .difference-gallery {min-height: 0;display: grid;grid-template-columns: minmax(0,1fr);gap: 0;}
  .difference-gallery .gallery-main,.difference-gallery .gallery-small {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 1672/941;
    object-fit: contain;
    object-position: center;
  }
  .difference-gallery .gallery-small {width: 82%;margin: 24px auto 0;border: 0;border-radius: 26px 26px 0 0;}
  .difference-gallery .photo-note-blue {position: static;width: 82%;margin: 0 auto;padding: 18px 24px;background: #fff2d9;border-radius: 0 0 26px 26px;}
  .difference-gallery .photo-note-blue br {display: none;}
  .difference-gallery .glass-note,.difference-accent {display: none;}
  .section-link {position: static;width: auto;justify-self: center;transform: none;text-align: center;}

  /* Método: dispositivos inteiros e legendas abaixo da atividade fotografada. */
  .method-top {grid-template-columns: 1fr;min-height: 0;padding: var(--panel-padding) var(--panel-padding) 64px;gap: 24px;overflow: visible;}
  .method-copy>p:last-child {max-width: 65ch;}
  .method-side-note {position: static;margin: 24px 0 0;padding-left: 18px;}
  .method-side-note br {display: none;}
  .system-composition {z-index: 4;min-height: 0;height: auto;}
  .system-complete {position: static;display: block;width: min(112%,800px);max-width: none;max-height: none;height: auto;transform: translateY(50px);}
  .method-flow {margin-top: -32px;padding: 20px;}
  .method-flow ol {grid-template-columns: repeat(2,minmax(0,1fr));}
  .method-flow li {padding: 20px;}
  .method-flow li:nth-child(3) {border-left: 0;}
  .method-flow li:nth-child(n+3) {border-top: 1px solid var(--line);}
  .method-flow li:not(:last-child)::after {display: none;}
  .method-flow p {font-size: .95rem;}
  .method-gallery figure {height: auto;background: #fff2d9;}
  .method-gallery img {height: auto;aspect-ratio: 1672/941;object-fit: contain;}
  .method-gallery figcaption,.method-gallery figure:last-child figcaption {position: static;max-width: none;padding: 18px 22px;background: #fff2d9;font-size: .76rem;}
  .value-bar {grid-template-columns: 1fr;padding: 28px;gap: 24px;}
  .value-bar>.button {display: none;}
  .value-bar h3 {white-space: normal;font-size: 1.8rem;}
  .value-bar ul {grid-column: 1;grid-row: auto;display: grid;grid-template-columns: repeat(3,minmax(0,1fr));gap: 20px;}
  .value-bar li {font-size: .95rem;}

  /* Estrutura: retrato sem máscara lateral e informações fora do rosto. */
  .structure-panel {min-height: 0;grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr);overflow: hidden;}
  .structure-copy {padding: var(--panel-padding);}
  .structure-copy>p {font-size: 1.05rem;}
  .structure-phrase {margin-top: 28px!important;}
  .structure-panel>img {height: 100%;aspect-ratio: 4/5;object-position: 55% top;mask-image: none;-webkit-mask-image: none;}
  .structure-note {position: static;grid-column: 1/-1;margin: 0 var(--panel-padding) 28px;padding: 22px;}
  .structure-note br {display: none;}
  .structure-corner {display: none;}
  .team-panel {grid-template-columns: repeat(2,minmax(0,1fr));margin-top: 18px;padding: 20px;}
  .team-panel>div {padding: 18px;border: 0!important;}
  .team-panel>div:nth-child(n+2) {border-top: 1px solid var(--line)!important;}
  .team-panel .team-total {grid-column: 1/-1;flex-direction: row;justify-content: center;gap: 16px;}
  .benefit-panel {grid-template-columns: repeat(2,minmax(0,1fr));padding: 20px;gap: 0 20px;}
  .benefit-panel li {padding: 18px 8px;border: 0!important;}
  .benefit-panel li+li {border-top: 1px solid var(--line)!important;}
  .benefit-panel li:nth-child(2) {border-top: 0!important;}
  .benefit-panel li:last-child {grid-column: 1/-1;justify-content: center;}

  /* Liderança: a assembleia mantém o morador e Thiago no mesmo quadro. */
  .leadership-panel {padding: var(--panel-padding);}
  .leadership-header {grid-template-columns: 1fr;gap: 24px;}
  .leadership-pillars {grid-template-columns: repeat(3,minmax(0,1fr));padding: 0;}
  .leadership-pillars article {padding: 18px;}
  .leadership-pillars p {font-size: .94rem;}
  .leadership-pillars .leadership-side-note {position: static;grid-column: 1/-1;margin: 48px 0 12px;padding: 0 0 0 18px;}
  .leadership-note-original {display: none;}
  .leadership-note-single {display: inline;}
  .leadership-gallery {grid-template-columns: 1fr;padding: 12px;gap: 24px;margin-top: 24px;}
  .leadership-gallery img,.leadership-gallery .assembly-photo {height: auto!important;aspect-ratio: 1672/941;object-fit: contain;border-radius: 22px 22px 0 0;}
  .leadership-gallery figcaption,.leadership-gallery figure:first-child figcaption,.leadership-gallery figure:last-child figcaption {position: static;padding: 18px 22px;border-radius: 0 0 22px 22px;font-size: .76rem;letter-spacing: .1em;}
  .leadership-gallery figcaption br {display: none;}

  /* Atuação: vídeo em 16:9 e indicadores com centro consistente. */
  .territory-panel {grid-template-columns: 1fr;padding: var(--panel-padding);gap: 24px;}
  .territory-copy {padding: 0;}
  .territory-phrase {margin-top: 24px!important;}
  .video-frame {width: 100%;min-height: 0;aspect-ratio: 16/9;margin: 0;}
  .video-frame figcaption {top: 18px;left: 20px;right: 16px;font-size: .76rem;}
  .video-frame figcaption::before {transform: translateY(-50%);}
  .neighborhood-grid {grid-template-columns: repeat(2,minmax(0,1fr));margin: 0;gap: 16px;}
  .neighborhood-grid article {height: auto;aspect-ratio: 16/10;}
  .territory-stats {grid-template-columns: repeat(2,minmax(0,1fr));padding: 18px;}
  .territory-stats>div {padding: 18px 12px;border: 0!important;}
  .territory-stats>div:nth-child(n+3) {grid-column: 1/-1;border-top: 1px solid var(--line)!important;}
  .territory-stats .mini-icon {display: grid;place-items: center;margin-top: 0;align-self: center;}
  .territory-stats .mini-icon svg {display: block;}
  .territory-stats span {font-size: .9rem;}

  /* Perfil e FAQ: colunas com largura de leitura, ordem 01–07. */
  .fit-panel {padding: var(--panel-padding) var(--panel-padding) 60px;}
  .fit-copy {padding-right: 0;}
  .fit-copy>p:not(.eyebrow):not(.fit-side-note) {max-width: 65ch;font-size: 1.05rem;}
  .fit-side-note {position: static;width: auto;max-width: none;margin: 24px 0!important;padding: 20px;}
  .fit-grid {grid-template-columns: repeat(2,minmax(0,1fr));gap: 16px;margin-top: 28px;}
  .fit-grid li {min-height: 0;padding: 24px;}
  .fit-grid h3 {font-size: 1.15rem;}
  .fit-grid p {font-size: 1rem;}
  .fit-grid li .mini-icon {float: right;margin: 0;}
  .fit-cta {grid-template-columns: 1fr;margin-top: -28px;padding: var(--panel-padding);}
  .fit-cta>.button {justify-self: start;}
  .fit-cta ul {grid-template-columns: repeat(2,minmax(0,1fr));gap: 16px;}
  .fit-cta li {padding: 8px 0;border-left: 0!important;}
  .faq-panel {padding: var(--panel-padding);}
  .faq-header {grid-template-columns: minmax(0,1fr) minmax(0,1fr);gap: 24px;}
  .faq-header blockquote {max-width: none;padding: 24px;font-size: 1rem;}
  .faq-header blockquote>span {position: static;display: inline-block;margin-right: 8px;font-size: 3rem;vertical-align: -.2em;}
  .faq-side-note {grid-column: 1/-1;position: static;margin: 0;padding: 16px 20px;background: rgba(26,48,61,.75);border-radius: 0 18px 18px 0;}
  .faq-side-note br {display: none;}
  .faq-grid {grid-template-columns: 1fr;gap: 12px;}
  .faq-grid details {grid-column: 1!important;grid-row: auto!important;padding: 20px;}
  .faq-grid summary {cursor: pointer;gap: 14px;font-size: 1rem;}
  .faq-grid summary::after {content: "+";margin-left: auto;flex: 0 0 16px;font-size: 1.3rem;}
  .faq-grid details[open] summary::after {content: "−";}
  .faq-grid details p {font-size: 1rem;line-height: 1.55;}
  .faq-cta {grid-template-columns: 1fr;gap: 24px;padding: 24px;}
  .faq-cta ul {grid-column: 1;grid-row: auto;display: grid;grid-template-columns: repeat(3,minmax(0,1fr));gap: 20px;}
  .faq-cta li {max-width: none;font-size: .94rem;}
  .faq-cta>.button {justify-self: start;}

  /* Avaliação: fotografia e formulário com a largura disponível. */
  .evaluation-panel {grid-template-columns: minmax(0,1fr);padding: var(--panel-padding);gap: 28px;}
  .evaluation-side-note,.evaluation-corner {display: none;}
  .evaluation-copy>ul {display: grid;grid-template-columns: repeat(3,minmax(0,1fr));gap: 18px;}
  .evaluation-copy>ul li,.evaluation-copy>ul li+li {padding: 0;border: 0;}
  .evaluation-copy>figure {left: auto;margin-top: 28px;}
  .evaluation-copy>figure img {height: auto;aspect-ratio: 16/9;object-position: center;}
  .evaluation-copy figcaption {left: auto;right: 16px;bottom: 16px;padding: 18px;max-width: calc(100% - 32px);}
  .contact-form {width: 100%;padding: 28px;}
  .contact-form h3 {font-size: 2rem;}
  .form-grid {grid-template-columns: repeat(2,minmax(0,1fr));gap: 20px;}
  .form-wide {grid-column: 1/-1;}
  .contact-form label {font-size: .9rem;}
  .contact-form input,.contact-form textarea {min-width: 0;font-size: 16px;line-height: 1.45;padding: 13px 14px;}
  .contact-form textarea {min-height: 140px;}
  .contact-form input::placeholder,.contact-form textarea::placeholder {color: #69798a;opacity: 1;}
  .form-location {font-size: .85rem;white-space: normal;}
  .form-location svg {flex: 0 0 22px;}
  .form-status {overflow-wrap: anywhere;}
  .process-panel {grid-template-columns: 1fr;padding: var(--panel-padding);gap: 24px;}
  .process-panel ol {grid-template-columns: repeat(3,minmax(0,1fr));}
  .process-panel li {padding: 16px;}

  /* Encerramento: foto dentro das mesmas margens dos demais painéis. */
  .footer {margin-top: 0;padding-top: 0;background: none;}
  .footer-intro {padding: var(--panel-padding);min-height: 0;border-radius: var(--radius);background: linear-gradient(rgba(255,255,255,.72),rgba(255,255,255,.95)),url("../media/otimizadas/fundo-rodape-1600.webp") center/cover;}
  .footer-panel {grid-template-columns: repeat(3,minmax(0,1fr));padding: var(--panel-padding);gap: 28px;margin-top: 18px;}
  .footer-brand,.footer-cta,.footer-bottom {grid-column: 1/-1;}
  .footer-brand p {max-width: 65ch;margin-top: 20px;font-size: .95rem;}
  .footer-panel nav,.footer-column {padding: 0;border-left: 0;}
  .footer-panel nav a {min-height: 36px;display: inline-flex;align-items: center;}
  .footer-column span {font-size: .9rem;}
  .footer-cta {min-width: 0;padding: 24px;}
  .footer-cta>span {white-space: normal;font-size: .82rem;}
  .footer-cta>span svg {flex-shrink: 0;}
  .footer-bottom {grid-template-columns: 1fr 1fr;gap: 24px;}
  .footer-bottom p {grid-column: auto;}
}

@media (max-width: 900px) {
  .hero-grid {grid-template-columns: 1fr;gap: 16px;}
  .hero-content {padding-bottom: 0;}
  .hero-content h1 {font-size: clamp(2.7rem,6.6vw,3.5rem);max-width: 18ch;}
  .hero-copy {max-width: 62ch;}
  .hero-visual {width: min(100%,680px);justify-self: center;}
  .hero-photo {aspect-ratio: 4/3;}
  .hero-photo img {object-position: 15% center;}
  .method-gallery {grid-template-columns: 1fr;}
  .structure-panel {grid-template-columns: 1fr;}
  .structure-panel>img {width: min(calc(100% - 2 * var(--panel-padding)),440px);height: auto;aspect-ratio: 4/5;justify-self: center;border-radius: 26px;}
  .structure-note {width: min(calc(100% - 2 * var(--panel-padding)),440px);justify-self: center;margin: 18px 0 28px;}
  .faq-header {grid-template-columns: 1fr;}
  .evaluation-copy>ul li {display: grid;align-content: start;}
  .process-panel ol {grid-template-columns: 1fr;}
  .process-panel li {padding: 20px 0;border-left: 0!important;border-top: 1px solid var(--line);}
  .process-panel li:first-child {border-top: 0;}
}

@media (max-width: 720px) {
  .pain-grid {grid-template-columns: 1fr;}
  .pain-grid li:nth-last-child(2) {border-bottom: 1px solid rgba(255,255,255,.24);}
  .three-points {grid-template-columns: 1fr;gap: 0;}
  .three-points article {padding: 20px 0;}
  .three-points article+article {padding: 20px 0;border-left: 0;border-top: 1px solid var(--line);}
  .value-bar ul,.faq-cta ul {grid-template-columns: 1fr;gap: 16px;}
  .leadership-pillars {grid-template-columns: 1fr;}
  .leadership-pillars article {padding: 20px 0;}
  .leadership-pillars article+article {border-left: 0;border-top: 1px solid rgba(255,255,255,.26);}
}

@media (max-width: 600px) {
  :root {--gutter: 14px;--radius: 26px;--panel-padding: 20px;}
  .section {padding-block: 20px;}
  .container h2 {font-size: clamp(2rem,7.8vw,2.35rem);line-height: 1.1;}
  .eyebrow,.structure-copy>.eyebrow,.territory-copy>.eyebrow {font-size: .73rem;letter-spacing: .12em;gap: 10px;margin-bottom: 20px;}
  .eyebrow>span {width: 24px;}
  .header-inner,.site-header.is-scrolled .header-inner {min-height: 66px;padding: 8px 12px 8px 16px;gap: 12px;}
  .brand {width: 175px;}
  .menu-toggle {width: 44px;height: 44px;}
  .main-nav {top: 84px;max-height: calc(100dvh - 104px);}
  .hero {padding-top: 110px;padding-bottom: 0;}
  .hero-content h1 {font-size: clamp(2.15rem,8.8vw,2.65rem);max-width: none;margin-bottom: 22px;}
  .hero-copy {font-size: 1rem;}
  .hero-pillars {grid-template-columns: repeat(3,minmax(0,1fr));gap: 8px;}
  .hero-actions {display: grid;gap: 12px;}
  .hero-visual {padding: 12px 0 0;grid-template-columns: 1fr;gap: 10px;}
  .hero-visual .glass-note {padding: 16px 18px;font-size: .7rem;line-height: 1.6;}
  .hero-photo {grid-column: 1;border-radius: 30px;}
  .shape-blue {inset: 0 0 150px 35px;}
  .shape-yellow {bottom: 150px;width: 90px;height: 110px;}
  .metric-panel {padding: 18px 6px;}
  .metric-panel>div {padding: 10px 4px;}
  .metric-panel strong {font-size: clamp(1.35rem,5.7vw,1.6rem);}
  .metric-panel span {font-size: .75rem;}
  .pain-grid {grid-template-columns: 1fr;}
  .pain-grid li {grid-template-columns: 44px minmax(0,1fr);gap: 12px;}
  .pain-grid li>.mini-icon {justify-self: end;}
  .pain-grid li>div {grid-column: 1/-1;}
  .pain-grid li:nth-last-child(2) {border-bottom: 1px solid rgba(255,255,255,.24);}
  .pain-grid h3 {font-size: 1.15rem;}
  .pain-grid p {font-size: .98rem;}
  .three-points {grid-template-columns: 1fr;gap: 0;}
  .three-points article {display: grid;grid-template-columns: 48px minmax(0,1fr);column-gap: 14px;padding: 20px 0;}
  .three-points article+article {padding: 20px 0;border-left: 0;border-top: 1px solid var(--line);}
  .three-points .mini-icon {grid-row: 1/3;width: 48px;height: 48px;}
  .three-points h3 {margin: 0 0 8px;font-size: 1.1rem;}
  .three-points p {grid-column: 2;margin: 0;}
  .difference-gallery .gallery-small,.difference-gallery .photo-note-blue {width: 100%;}
  .difference-gallery .photo-note-blue {padding: 16px;font-size: .72rem;}
  .section-link {font-size: .72rem;letter-spacing: .12em;}
  .method-top {padding-bottom: 52px;}
  .system-composition {width: calc(100% + 24px);margin-inline: -12px;}
  .system-complete {width: 100%;transform: translateY(64px);}
  .method-flow {padding: 12px;}
  .method-flow ol {grid-template-columns: 1fr;}
  .method-flow li {padding: 20px 12px;}
  .method-flow h3 {font-size: 1.1rem;}
  .method-gallery figcaption,.method-gallery figure:last-child figcaption {padding: 18px;font-size: .73rem;letter-spacing: .06em;}
  .value-bar {padding: 24px 20px;}
  .value-bar h3 {font-size: 1.55rem;}
  .value-bar ul {grid-template-columns: 1fr;gap: 16px;}
  .structure-panel>img {width: calc(100% - 32px);}
  .structure-note {width: calc(100% - 32px);font-size: .72rem;letter-spacing: .1em;}
  .team-panel {grid-template-columns: 1fr;padding: 18px;}
  .team-panel>div {padding: 16px 0;}
  .team-panel span:last-child {font-size: .95rem;}
  .benefit-panel {grid-template-columns: 1fr;padding: 16px 20px;}
  .benefit-panel li {padding: 16px 0;}
  .benefit-panel li:nth-child(2) {border-top: 1px solid var(--line)!important;}
  .benefit-panel li:last-child {justify-content: start;}
  .leadership-pillars {grid-template-columns: 1fr;}
  .leadership-pillars article {display: grid;grid-template-columns: 48px minmax(0,1fr);gap: 0 14px;padding: 20px 0;}
  .leadership-pillars .mini-icon {width: 48px;height: 48px;grid-row: 1/3;}
  .leadership-pillars h3 {margin: 0 0 8px;font-size: 1.1rem;}
  .leadership-pillars p {grid-column: 2;}
  .leadership-pillars .leadership-side-note {margin-top: 40px;font-size: .9rem;}
  .leadership-gallery {padding: 0;background: transparent;border-radius: 22px;}
  .leadership-gallery figcaption {font-size: .72rem;padding: 18px;}
  .video-frame figcaption {top: 12px;left: 14px;font-size: .64rem;letter-spacing: .1em;padding-left: 28px;}
  .video-frame figcaption::before {width: 20px;}
  .neighborhood-grid {gap: 12px;}
  .neighborhood-grid article {aspect-ratio: 4/3;border-radius: 18px;}
  .neighborhood-grid h3 {left: 6px;bottom: 8px;gap: 4px;padding: 6px 8px;font-size: .73rem;}
  .neighborhood-grid h3 svg {width: 16px;height: 16px;flex-shrink: 0;}
  .territory-stats {padding: 14px;}
  .territory-stats>div {padding: 16px 0;}
  .territory-stats>div:nth-child(-n+2) {grid-template-columns: 1fr;justify-items: center;text-align: center;gap: 8px;}
  .territory-stats>div:nth-child(-n+2)>* {grid-column: 1;grid-row: auto;margin: 0;}
  .territory-stats>div:nth-child(2) {border-left: 1px solid var(--line)!important;}
  .territory-stats span {font-size: .85rem;}
  .fit-grid {grid-template-columns: 1fr;}
  .fit-side-note {font-size: .86rem;padding: 18px;}
  .fit-cta h3 {font-size: 1.8rem;}
  .fit-cta ul {gap: 12px;}
  .fit-cta li {display: grid;align-content: start;gap: 8px;font-size: .88rem;}
  .faq-grid details {padding: 16px;}
  .faq-grid summary {gap: 10px;font-size: .96rem;}
  .faq-grid summary span {width: 36px;height: 36px;border-width: 5px;font-size: .8rem;}
  .faq-grid details p {margin: 16px 0 0;font-size: .96rem;}
  .faq-cta {padding: 22px 16px;}
  .faq-cta ul {grid-template-columns: 1fr;gap: 12px;}
  .evaluation-copy>ul {grid-template-columns: 1fr;gap: 0;}
  .evaluation-copy>ul li,.evaluation-copy>ul li+li {display: flex;padding: 14px 0;border-top: 1px solid rgba(255,255,255,.2);}
  .evaluation-copy>figure img {aspect-ratio: 4/3;}
  .evaluation-copy figcaption {right: 12px;bottom: 12px;padding: 12px 14px;font-size: .6rem;letter-spacing: .1em;}
  .contact-form {padding: 24px 16px;border-radius: 24px;}
  .contact-form h3 {font-size: 1.65rem;}
  .form-grid {grid-template-columns: minmax(0,1fr);gap: 18px;}
  .contact-form .button {padding-inline: 14px;gap: 12px;line-height: 1.3;}
  .form-location {font-size: .8rem;align-items: flex-start;}
  .closing-line {font-size: 1.1rem;}
  .closing-line-mobile-break {display: block;}
  .footer {padding-top: 0;}
  .footer-panel {grid-template-columns: repeat(2,minmax(0,1fr));padding: 24px 20px;gap: 24px;}
  .footer-brand,.footer-cta,.footer-bottom,.footer-panel .structure-column {grid-column: 1/-1;}
  .footer-brand img {width: min(100%,280px);}
  .footer-panel nav,.footer-column {padding-top: 20px;border-top: 1px solid rgba(255,255,255,.2);}
  .footer-cta {display: flex;flex-direction: column;align-items: stretch;gap: 16px;padding: 22px 16px;}
  .footer-cta .eyebrow {order: 1;margin: 0;}
  .footer-cta h3 {order: 2;margin: 0;font-size: 1.7rem;}
  .footer-cta .button {order: 3;width: 100%;margin: 0;}
  .footer-cta>p:not(.eyebrow) {order: 4;margin: 0;}
  .footer-cta>span {order: 5;margin: 0;}
  .footer-bottom {grid-template-columns: 1fr;gap: 20px;}
  .footer-bottom>div {flex-wrap: nowrap;}
  .footer-bottom strong {font-size: 2rem;}
  .footer-bottom .mini-icon {flex-shrink: 0;}
}

@media (min-width: 601px) and (max-width: 1180px) {
  .structure-panel {
    grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr);
    grid-template-rows: auto 1fr;
  }

  .structure-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .structure-panel>img {
    grid-column: 2;
    grid-row: 1/3;
    width: 100%;
    height: 100%;
    min-height: 0;
    align-self: stretch;
    border-radius: 0 var(--radius) var(--radius) 0;
  }

  .structure-note {
    grid-column: 1;
    grid-row: 2;
    width: auto;
    min-height: 112px;
    height: 100%;
    align-self: stretch;
    justify-self: stretch;
    margin: 0 var(--panel-padding);
    padding: 26px;
    display: flex;
    align-items: center;
    font-size: .66rem;
    letter-spacing: .12em;
    line-height: 1.7;
    transform: translateY(24px);
  }
}
