/* ========================================
   PÂMELA CARDOSO - PSICÓLOGA
   Estilos Principais
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

@font-face {
  font-family: 'Moneta Sans';
  src: url('fonts/moneta-sans-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sage: #955935;
  --sage-light: #B48E69;
  --sage-dark: #4E1E14;
  --cream: #FAF7F2;
  --warm-white: #FFFFFF;
  --stone: #8C8279;
  --stone-light: #C4BDB7;
  --charcoal: #2D2926;
  --text-primary: #2D2926;
  --text-secondary: #6B6360;
  --text-light: #9A9490;
  --border: #E8E3DC;
  --shadow: 0 4px 24px rgba(45, 41, 38, 0.08);
  --shadow-hover: 0 8px 40px rgba(45, 41, 38, 0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.3s ease;
  --max-width: 1100px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #F2F0EF;
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Moneta Sans', serif;
  font-weight: 400;
  line-height: 1.25;
  color: var(--charcoal);
  text-transform: uppercase;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1rem; }

p {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 400;
}

a {
  color: var(--sage-dark);
  text-decoration: none;
  transition: var(--transition);
}

a:hover { color: var(--sage); }

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

/* ---- Utilities ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background-color: var(--warm-white);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(149, 89, 53, 0.12);
  padding: 7px 14px 6px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header {
  margin-bottom: 56px;
}

.section-header p {
  max-width: 620px;
  margin-top: 12px;
  font-size: 1.05rem;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--sage);
  border-radius: 2px;
  margin: 20px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  line-height: 1;
}

.btn svg {
  display: block;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--sage-dark);
  color: #FAF7F2;
}

.btn-primary:hover {
  background: var(--sage-dark);
  color: #FAF7F2;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(149, 89, 53, 0.4);
}

.nav-cta.btn-primary {
  background: var(--sage-dark);
  color: #FAF7F2;
}

.nav-cta.btn-primary:hover {
  background: #3a1510;
  color: #FAF7F2;
}

.btn-outline {
  background: transparent;
  color: var(--sage-dark);
  border: 2px solid var(--sage-dark);
}

.btn-outline:hover {
  background: var(--sage-dark);
  color: white;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background: #1ebe5b;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* ---- Navigation ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #F2F0EF;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  padding: 0;
  will-change: transform;
}

#navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(45, 41, 38, 0.06);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: flex-end;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.nav-logo-icon {
  height: 32px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-logo-name {
  font-family: 'Moneta Sans', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--sage-dark);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.nav-logo-title {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--sage-dark);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  justify-content: center;
}

.nav-links a {
  font-size: 0.70rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.1rem;
  position: relative;
  padding-bottom: 2px;
  text-transform: uppercase
  ;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sage);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--charcoal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 18px !important;
  font-size: 0.70rem !important;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.1rem;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Offset do navbar fixo ao rolar para seções */
section[id] {
  scroll-margin-top: 72px;
}

/* ---- Hero Section ---- */
#home {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

#neural-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(149, 89, 53, 0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(180, 142, 105, 0.01) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

#home .hero-inner {
  position: relative;
  z-index: 2;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 40px 24px 56px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}


.hero-title {
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title em {
  font-style: normal;
  color: var(--sage);
}

.hero-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-services-tag {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 2px solid rgba(149, 89, 53, 0.25);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.hero-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-hover);
}

.hero-card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  z-index: 2;
}

.hero-card-bottom {
  bottom: 28px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-card-top {
  top: 28px;
  left: -20px;
}

.hero-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(149, 89, 53, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-card-label {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 500;
}

.hero-card-value {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-top: 1px;
}

/* ---- About Section ---- */
#sobre .about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.about-image-wrap {
  position: sticky;
  top: 112px;
}

.about-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-content {
  padding-top: 8px;
}

.about-content p {
  margin-bottom: 18px;
  line-height: 1.8;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.pillar-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.pillar-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.pillar-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.pillar-desc {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ---- About Timeline Vertical ---- */
/* ---- .tl-section-header base ---- */
.tl-section-header {
  margin-top: 72px;
  margin-bottom: 56px;
}

.timeline-v {
  position: relative;
  padding: 8px 0 8px;
}

/* Linha central — cresce do topo ao scroll */
.timeline-v::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--sage), var(--sage-dark));
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-v.tl-line-visible::before {
  transform: translateX(-50%) scaleY(1);
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  margin-bottom: 56px;
  align-items: start;
}

.tl-item:last-child {
  margin-bottom: 0;
}

/* Left: card em col 1, spine em col 2 */
.tl-left .tl-card {
  grid-column: 1;
  grid-row: 1;
  padding-right: 48px;
  text-align: right;
}

.tl-left .tl-spine {
  grid-column: 2;
  grid-row: 1;
}

/* Right: spine em col 2, card em col 3 */
.tl-right .tl-spine {
  grid-column: 2;
  grid-row: 1;
}

.tl-right .tl-card {
  grid-column: 3;
  grid-row: 1;
  padding-left: 48px;
}

.tl-spine {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

/* ---- Animações dos cards ---- */
.tl-right .tl-card {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.tl-left .tl-card {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.tl-item.tl-visible .tl-card {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Animação dos dots ---- */
.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 2px solid var(--stone-light);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, background 0.3s ease;
}

.tl-item.tl-visible .tl-dot {
  opacity: 1;
  transform: scale(1);
}

/* Dot ativo — pulso contínuo */
@keyframes tl-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(149, 89, 53, 0.18), 0 0 0 8px rgba(149, 89, 53, 0.06); }
  50%       { box-shadow: 0 0 0 7px rgba(149, 89, 53, 0.12), 0 0 0 14px rgba(149, 89, 53, 0.03); }
}

.tl-dot--active {
  background: var(--sage);
  border-color: var(--sage);
  width: 18px;
  height: 18px;
  margin-top: -2px;
}

.tl-item.tl-visible .tl-dot--active {
  animation: tl-pulse 2.4s ease-in-out infinite;
}

/* ---- Labels e títulos ---- */
.tl-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.tl-item.tl-visible .tl-label {
  opacity: 1;
  transform: translateY(0);
}

.tl-title {
  font-family: 'Moneta Sans', serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--charcoal);
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.3;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.32s, transform 0.5s ease 0.32s;
}

.tl-item.tl-visible .tl-title {
  opacity: 1;
  transform: translateY(0);
}

.tl-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease 0.44s, transform 0.5s ease 0.44s;
}

.tl-item.tl-visible .tl-card p {
  opacity: 1;
  transform: translateY(0);
}

.tl-item--active .tl-label {
  color: var(--sage-dark);
}

.tl-item--active .tl-title {
  color: var(--sage-dark);
}

.credentials strong {
  color: var(--charcoal);
}

/* ---- Serviços: faixa de apresentação (sala.png) ---- */
.servicos-cover {
  background-image: url('sala.png');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 140px 0;
  display: flex;
  align-items: center;
}

.servicos-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 4, 2, 0.82);
}

.servicos-cover .container {
  position: relative;
  z-index: 1;
}

.servicos-cover-inner {
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}

.servicos-cover-inner h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 20px 0 0;
  line-height: 1.2;
}

.servicos-cover-inner h2 em {
  font-style: normal;
  color: var(--sage-light);
}

.servicos-cover-inner .divider {
  background: var(--sage);
}

.servicos-cover-inner > p {
  color: rgba(196, 189, 183, 0.85);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

/* ---- Serviços: lista de entradas ---- */
.servicos-lista {
  background: var(--cream);
  padding: 0 0 24px;
}

/* ---- Cada entry de serviço ---- */
.servico-entry {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  padding: 96px 0;
  align-items: start;
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.servico-entry.se-visible {
  opacity: 1;
  transform: translateY(0);
}

.servico-entry--flip {
  grid-template-columns: 1fr 300px;
}

.servico-entry--flip .servico-entry-side {
  grid-column: 2;
  grid-row: 1;
}

.servico-entry--flip .servico-entry-body {
  grid-column: 1;
  grid-row: 1;
}

.servico-sep {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border) 30%, var(--border) 70%, transparent);
}

/* ── Painel lateral: número + nome ── */
.servico-entry-side {
  position: sticky;
  top: 112px;
}

.servico-entry-num {
  display: block;
  font-family: 'Moneta Sans', serif;
  font-size: 8rem;
  line-height: 1;
  color: rgba(149, 89, 53, 0.1);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  transition: color 0.8s ease;
}

.servico-entry.se-visible .servico-entry-num {
  color: rgba(149, 89, 53, 0.2);
}

.servico-entry-name {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.2;
}

.servico-entry-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.servico-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--sage-dark);
  background: rgba(149, 89, 53, 0.1);
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(149, 89, 53, 0.18);
}

/* ── Corpo: lead + detalhes + online ── */
.servico-entry-lead {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.servico-entry.se-visible .servico-entry-lead {
  opacity: 1;
  transform: translateY(0);
}

.servico-entry-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 32px;
}

.servico-entry-details li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.servico-entry.se-visible .servico-entry-details li:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.18s; }
.servico-entry.se-visible .servico-entry-details li:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.28s; }
.servico-entry.se-visible .servico-entry-details li:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.38s; }
.servico-entry.se-visible .servico-entry-details li:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.48s; }

.servico-entry-details li strong {
  color: var(--charcoal);
  font-weight: 600;
}

.servico-entry-online {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--sage-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.52s, transform 0.6s ease 0.52s;
}

.servico-entry.se-visible .servico-entry-online {
  opacity: 1;
  transform: translateY(0);
}

.servico-online-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}

.servico-entry-online p {
  font-size: 0.87rem;
  line-height: 1.78;
  color: var(--text-secondary);
}

/* ---- Serviços: dois lado a lado sobre sala.png ---- */
.servicos-bg {
  background-image: url('sala.png');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 120px 0;
}

.servicos-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 4, 2, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.servicos-bg .container {
  position: relative;
  z-index: 1;
}

.servicos-duo-header {
  text-align: center;
  margin-bottom: 52px;
}

.servicos-duo-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);
  border: 1px solid rgba(180, 142, 105, 0.4);
  padding: 7px 20px;
  border-radius: 50px;
}

.servicos-bg .container {
  max-width: 1280px;
}

.servicos-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 80px;
  align-items: start;
}

.scd-title {
  color: #ffffff;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.scd-lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.88;
  margin-bottom: 12px;
}

.scd-item {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.5;
  padding: 13px 0;
  border-bottom: 1px solid rgba(180, 142, 105, 0.18);
}

.scd-item strong {
  color: var(--sage-light);
  font-weight: 600;
}

.scd-block {
  display: flex;
  flex-direction: column;
}

.scd-sub-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 8px;
}

.scd-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.36);
  letter-spacing: 0.06em;
  padding-top: 16px;
  margin-top: auto;
}

.servico-card-title {
  color: #ffffff;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.servico-card-lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.88;
}

.servico-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.servico-card-list li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.80);
  padding: 12px 0;
  border-bottom: 1px solid rgba(180, 142, 105, 0.18);
  line-height: 1.5;
}

.servico-card-list li:first-child {
  border-top: 1px solid rgba(180, 142, 105, 0.18);
}

.servico-card-list li strong {
  color: var(--sage-light);
  font-weight: 600;
}

.servico-card-note {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.06em;
}

/* ---- Abordagem: fundo claro ---- */
.abordagem-section {
  background: var(--warm-white);
  padding: 112px 0;
  border-top: 1px solid var(--border);
}

.abordagem-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 0;
}

.abordagem-header h2 {
  color: var(--charcoal);
  margin-top: 16px;
  line-height: 1.25;
}

.abordagem-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 16px;
}

.abordagem-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 12px 28px;
  border: 1.5px solid var(--sage);
  background: transparent;
  color: var(--sage-dark);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.abordagem-toggle:hover {
  background: var(--sage);
  color: #fff;
}

.abordagem-toggle .toggle-icon {
  display: block;
  position: relative;
  top: 1px;
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.abordagem-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(180deg);
}

.abordagem-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.55s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.abordagem-cards.is-open {
  max-height: 1200px;
  opacity: 1;
  margin-top: 56px;
}

.abordagem-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 3px solid var(--sage);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}

.abordagem-card-abbr {
  display: block;
  font-family: 'Moneta Sans', serif;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(149, 89, 53, 0.35);
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.abordagem-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.3;
}

.abordagem-card p {
  font-size: 0.88rem;
  line-height: 1.82;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.abordagem-card p:last-of-type {
  margin-bottom: 0;
}

/* Pillars base (usados fora de abordagem-card) */
.intro-pillars {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.abordagem-card .intro-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  margin-top: auto;
}

.intro-pillars li {
  background: rgba(149, 89, 53, 0.1);
  color: var(--sage);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ---- Faixa foto divisória ---- */
.photo-strip {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}


/* ---- TCC & PBE Section ---- */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}

.approach-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}

.approach-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.approach-icon {
  width: 56px;
  height: 56px;
  background: rgba(149, 89, 53, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.approach-card p {
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.technique-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.technique-tag {
  background: rgba(149, 89, 53, 0.1);
  color: var(--sage-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}


/* ---- CTA Blob Section ---- */
#cta-webgl-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

.section-cta-blob {
  position: relative;
  overflow: hidden;
  background: var(--sage-dark);
  padding: 112px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-blob-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-blob-content h2 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 20px;
  font-weight: 500;
}


.cta-blob-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.85;
}

.cta-blob-content em {
  color: var(--sage-light);
  font-style: normal;
  font-weight: 600;
}

.btn-white {
  background: white;
  color: var(--sage-dark);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--cream);
  color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

/* ---- FAQ Tabs ---- */
.faq-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 40px;
}

.faq-tab {
  padding: 10px 28px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.faq-tab:hover { color: var(--sage-dark); }

.faq-tab.is-active {
  color: var(--sage-dark);
  border-bottom-color: var(--sage);
}

.faq-panel[hidden] { display: none; }

.faq-category-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
  margin-top: 36px;
}

.faq-panel > .faq-category-label:first-child { margin-top: 0; }

/* ---- FAQ Section ---- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.faq-item {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover { color: var(--sage-dark); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(149, 89, 53, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--sage-dark);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--sage);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: #F5A623;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(149, 89, 53, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
}

.testimonial-label {
  font-size: 0.73rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ---- Contact Section ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

/* ---- Contact split layout (com foto) ---- */
.contact-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.contact-left h2 {
  margin-top: 8px;
}

.contact-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: absolute;
  inset: 0;
}

.contact-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 24px;
  background: linear-gradient(to top, rgba(78, 30, 20, 0.92) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-photo-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.contact-photo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.88rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-photo-link:hover {
  opacity: 0.8;
  color: #fff;
}

.contact-info h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.contact-info > p {
  margin-bottom: 32px;
  font-size: 0.93rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item-icon {
  width: 42px;
  height: 42px;
  background: rgba(149, 89, 53, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 3px;
}

.contact-item-value {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-item-value a {
  color: var(--text-secondary);
}

.contact-item-value a:hover {
  color: var(--sage-dark);
}

.policy-note {
  font-size: 0.78rem;
  color: var(--text-light);
  padding: 14px 16px;
  background: rgba(149, 89, 53, 0.06);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--sage-light);
  line-height: 1.6;
}

/* ---- Contact Form ---- */
.contact-form-wrap {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
}

.contact-form-wrap h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.contact-form-wrap > p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  background: white;
  box-shadow: 0 0 0 3px rgba(149, 89, 53, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

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

.form-privacy {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--sage-dark);
}

/* ---- Footer ---- */
footer {
  background: var(--sage-dark);
  color: rgba(255,255,255,0.9);
  padding: 72px 0 32px;
  position: relative;
  overflow: hidden;
}

/* Marca d'água decorativa no canto esquerdo — aparece mais escura que o fundo, igual ao cartão */
.footer-watermark {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 450px;
  height: auto;
  opacity: 0.25;
  pointer-events: none;
  user-select: none;
  filter: brightness(0.5);
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: 'Moneta Sans', 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #FAF7F2;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.footer-brand-crp {
  font-size: 0.72rem;
  color: var(--sage-light);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand-text {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-top: 18px;
}


.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-icon {
  font-size: 0.85rem;
  opacity: 0.7;
  flex-shrink: 0;
}

.footer-address {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
}

.footer-brand-address {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-style: normal;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
  line-height: 1.5;
}

.footer-brand-address svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: var(--sage-light);
  opacity: 0.7;
}


.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.social-btn:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.footer-cfp {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-cfp:hover {
  color: #FAF7F2;
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-size: 1.6rem;
  color: white;
  animation: float-in 0.5s ease 1s both;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

@keyframes float-in {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Mobile Nav ---- */
@media (max-width: 900px) {
  .hamburger { display: flex; }

  .nav-cta { display: none; }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 20px 0 32px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

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

  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

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

@media (max-width: 768px) {
  .section { padding: 56px 0; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 20px 52px;
    text-align: center;
  }

  .hero-text { margin: 0 auto 36px; }

  .hero-actions { justify-content: center; }

  .hero-stats { justify-content: center; }

  .hero-image-wrap { order: -1; }

  .hero-image-frame::before { display: none; }

  .hero-image-frame img { height: auto; }

  .hero-card-bottom { right: 0; }
  .hero-card-top { left: 0; }

  #sobre .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-wrap {
    position: static;
  }

  .about-image-wrap img { height: auto;  object-fit: cover; }

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

  .timeline-v::before {
    left: 20px;
    transform: none;
  }

  .tl-item {
    grid-template-columns: 40px 1fr;
    margin-bottom: 36px;
  }

  .tl-left .tl-card,
  .tl-right .tl-card {
    grid-column: 2;
    grid-row: 1;
    padding-left: 16px;
    padding-right: 0;
    text-align: left;
    transform: translateY(20px);
  }

  .tl-item.tl-visible .tl-left .tl-card,
  .tl-item.tl-visible .tl-right .tl-card {
    transform: translateY(0);
  }

  .tl-left .tl-spine,
  .tl-right .tl-spine {
    grid-column: 1;
    grid-row: 1;
  }

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


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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-photo {
    position: static;
    max-height: 420px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-watermark {
    width: 280px;
    left: -40px;
    top: 20px;
    transform: none;
    opacity: 0.25;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .servicos-cover {
    padding: 96px 0;
  }

  .servicos-lista {
    padding-bottom: 0;
  }

  .servico-entry {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 64px 0;
  }

  .servico-entry--flip {
    grid-template-columns: 1fr;
  }

  .servico-entry--flip .servico-entry-side,
  .servico-entry--flip .servico-entry-body {
    grid-column: auto;
    grid-row: auto;
  }

  .servico-entry-side {
    position: static;
  }

  .servico-entry-num {
    font-size: 5rem;
  }

  .servicos-bg {
    padding: 64px 0;
  }

  .servicos-duo-header { margin-bottom: 32px; }

  /* Serviços */
  .servicos-duo {
    grid-template-columns: 1fr;
    gap: 24px 0;
  }

  /* Reagrupa por serviço: odd = psico, even = avaliação */
  .servicos-duo > *:nth-child(1) { order: 1; }
  .servicos-duo > *:nth-child(3) { order: 2; }
  .servicos-duo > *:nth-child(5) { order: 3; }
  .servicos-duo > *:nth-child(7) { order: 4; }
  .servicos-duo > *:nth-child(9) { order: 5; padding-bottom: 40px; border-bottom: 1px solid rgba(180,142,105,0.22); margin-bottom: 40px; }
  .servicos-duo > *:nth-child(2) { order: 6; }
  .servicos-duo > *:nth-child(4) { order: 7; }
  .servicos-duo > *:nth-child(6) { order: 8; }
  .servicos-duo > *:nth-child(8) { order: 9; }
  .servicos-duo > *:nth-child(10){ order: 10; }

  .scd-title { margin-bottom: 4px; }
  .scd-lead  { margin-bottom: 8px; }

  /* Abordagem */
  .abordagem-section   { padding: 64px 0; }
  .abordagem-header    { margin-bottom: 0; }
  .abordagem-toggle    { width: 100%; justify-content: center; }
  .abordagem-cards     { grid-template-columns: 1fr; gap: 16px; }
  .abordagem-cards.is-open { margin-top: 36px; }
  .abordagem-card      { padding: 28px 24px; }
  .abordagem-card-abbr { font-size: 2.2rem; }

  /* FAQ */
  .faq-tabs {
    flex-wrap: wrap;
    margin-bottom: 28px;
  }

  .faq-tab {
    flex: 1 1 50%;
    padding: 10px 8px;
    font-size: 0.68rem;
    text-align: center;
    white-space: normal;
  }

  .faq-category-label { margin-top: 28px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .contact-form-wrap { padding: 28px 20px; }

  .approach-card { padding: 28px 24px; }

  .section-cta-blob { padding: 80px 24px; }
}

/* ============================================================
   RESPONSIVIDADE COMPLETA
   320 | 360 | 425 | 768 (já existe acima) | 1024 | 1440 | 2560
   ============================================================ */

/* ---- 425px: mobile médio/grande ---- */
@media (max-width: 425px) {
  .container { padding: 0 18px; }

  /* Nav */
  .nav-logo-title { display: none; }
  .nav-logo-name  { font-size: 1rem; }

  /* Hero */
  .hero-inner {
    padding: 32px 18px 48px;
    gap: 36px;
  }
  .hero-title { font-size: 1.9rem; }
  .hero-text  { font-size: 0.95rem; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-services-tag { font-size: 0.72rem; letter-spacing: 0.08em; }
  .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }

  /* Sobre */
  #sobre .about-grid { gap: 32px; }
  .pillars-grid { grid-template-columns: 1fr; }

  /* Serviços */
  .servicos-bg { padding: 56px 0; }
  .servicos-duo-header { margin-bottom: 28px; }
  .scd-title { font-size: 1.4rem; }
  .scd-lead  { font-size: 0.85rem; }
  .scd-sub-label { font-size: 0.65rem; }

  /* Abordagem */
  .abordagem-header h2 { font-size: 1.4rem; }
  .abordagem-toggle { font-size: 0.72rem; padding: 11px 20px; }
  .abordagem-card-abbr { font-size: 2.5rem; }

  /* CTA */
  .cta-heading { font-size: 1.6rem; }
  .section-cta-blob { padding: 72px 18px; }
  .section-cta-blob p { font-size: 0.9rem; }

  /* FAQ */
  .faq-question { font-size: 0.86rem; }
  .faq-tab { font-size: 0.65rem; padding: 10px 8px; }
  .faq-category-label { font-size: 0.64rem; }

  /* Contato */
  .contact-form-wrap { padding: 28px 18px; }
  .section-header h2 { font-size: 1.5rem; }

  /* Footer */
  .footer-inner { padding: 64px 18px 32px; }
  .nav-logo-icon { height: 28px; }
}

/* ---- 360px: mobile pequeno ---- */
@media (max-width: 360px) {
  .container { padding: 0 14px; }

  .hero-title { font-size: 1.65rem; }
  .hero-text  { font-size: 0.88rem; }

  .btn { font-size: 0.82rem; padding: 12px 22px; }

  .scd-title { font-size: 1.25rem; }
  .scd-lead  { font-size: 0.82rem; }
  .scd-sub-label { font-size: 0.65rem; }

  .abordagem-card { padding: 28px 18px; }
  .abordagem-toggle { font-size: 0.7rem; padding: 10px 16px; }

  .faq-tab { font-size: 0.65rem; padding: 8px 10px; }
  .faq-answer p { font-size: 0.85rem; }

  .cta-heading { font-size: 1.4rem; }

  /* hero stats em 2x2 */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
  }
  .hero-stat { text-align: center; }
}

/* ---- 1024px: tablet landscape ---- */
@media (min-width: 769px) and (max-width: 1024px) {
  .container { padding: 0 32px; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 48px 32px 64px;
  }
  .hero-title { font-size: 2.2rem; }
  .hero-text  { font-size: 0.95rem; }

  /* Sobre */
  #sobre .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .about-image-wrap { position: sticky; top: 88px; }

  /* Serviços — gap menor para dar mais largura às colunas */
  .servicos-bg .container { max-width: 100%; padding: 0 32px; }
  .servicos-duo { gap: 16px 32px; }
  .scd-title { font-size: 1.35rem; }
  .scd-lead      { font-size: 0.84rem; }
  .scd-sub-label { font-size: 0.67rem; }

  /* Abordagem */
  .abordagem-cards { grid-template-columns: 1fr 1fr; gap: 20px; }
  .abordagem-card  { padding: 32px 28px; }

  /* FAQ */
  .faq-tab { font-size: 0.72rem; padding: 10px 20px; }

  /* Contato — foto acompanha a altura do formulário */
  .contact-split {
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
  }
  .contact-photo { max-height: none; min-height: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }

  /* CTA */
  .section-cta-blob { padding: 100px 48px; }
}

/* ---- 1440px: desktop grande ---- */
