/* ================================================
   MAIN.CSS — Layout Editorial Dark/Cream
   Conceito: Revista de arte + consultório premium
   ================================================ */

/* ============ GLOBAL ============ */
body {
  font-family: var(--f-sans);
  font-size: var(--t-base);
  color: var(--ink);
  background: var(--cream);
}

/* Noise fixo — GPU isolado */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: var(--z-cursor);
  pointer-events: none;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-nav);
  padding: var(--s5) var(--pad-x);
  transition: background 500ms ease, padding 300ms ease;
  will-change: background;
}
.nav.stuck {
  background: rgba(250, 246, 241, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  padding: var(--s4) var(--pad-x);
  border-bottom: 1px solid rgba(140, 45, 59, 0.08);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--f-head);
  font-size: var(--t-lg);
  font-style: italic;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  transition: color 200ms ease;
}
.nav__logo em { color: var(--rose); font-style: normal; }
.nav__logo:hover { color: var(--rose); }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s8);
}
.nav__link {
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-muted);
  position: relative;
  transition: color 200ms ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width 300ms var(--ease-out);
}
.nav__link:hover { color: var(--rose); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--rose);
  padding: 0.6rem 1.4rem;
  border-radius: var(--r-pill);
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  data-magnetic: '';
}
.nav__cta:hover {
  background: var(--rose-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(140, 45, 59, 0.35);
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: transform 300ms var(--ease-out), opacity 200ms ease, width 300ms ease;
  transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Drawer mobile */
.nav__drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-nav) - 1);
}
.nav__drawer.open { display: block; }
.nav__drawer-bg {
  position: absolute; inset: 0;
  background: rgba(13, 9, 7, 0.5);
  backdrop-filter: blur(6px);
  animation: fadeIn 250ms ease forwards;
}
.nav__drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: var(--cream);
  padding: var(--s24) var(--s8) var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  animation: slideFromRight 320ms var(--ease-out) forwards;
  box-shadow: -16px 0 64px rgba(0,0,0,0.15);
}
.nav__drawer-link {
  font-family: var(--f-head);
  font-size: var(--t-2xl);
  font-style: italic;
  color: var(--ink);
  padding: var(--s3) 0;
  border-bottom: 1px solid rgba(140, 45, 59, 0.1);
  transition: color 150ms ease, padding-left 250ms var(--ease-out);
}
.nav__drawer-link:hover { color: var(--rose); padding-left: var(--s3); }
.nav__drawer-cta {
  margin-top: var(--s5);
  display: block;
  text-align: center;
  background: var(--rose);
  color: white;
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--s4);
  border-radius: var(--r-pill);
  border-bottom: none;
}
.nav__drawer-cta:hover { background: var(--rose-mid); padding-left: 0; }

/* ============ HERO ============ */
.hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
}

/* Fundo dark com textura */
.hero__backdrop {
  position: absolute;
  inset: 0;
  background: var(--ink-soft);
  z-index: 0;
}

/* Mancha de cor marsala viva no fundo */
.hero__blob {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}
.hero__blob--1 {
  top: -15%;
  right: -10%;
  width: 65vw;
  height: 70vh;
  background: radial-gradient(ellipse at 50% 40%, rgba(140, 45, 59, 0.55) 0%, transparent 65%);
  animation: blobDrift 18s ease-in-out infinite;
}
.hero__blob--2 {
  bottom: -5%;
  left: -5%;
  width: 45vw;
  height: 45vh;
  background: radial-gradient(ellipse at 50% 60%, rgba(176, 68, 88, 0.25) 0%, transparent 65%);
  animation: blobDrift 24s ease-in-out 4s infinite reverse;
}
@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(2%, -3%) scale(1.04); }
  66%       { transform: translate(-2%, 2%) scale(0.97); }
}

/* Linha diagonal decorativa */
.hero__diag {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: var(--cream);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

.hero__inner {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: var(--s16);
  padding-top: clamp(6rem, 14vh, 10rem);
  padding-bottom: clamp(7rem, 16vh, 12rem);
}

/* Coluna esquerda — texto */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  font-family: var(--f-mono);
  font-size: var(--t-tag);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-pale);
  margin-bottom: var(--s6);
}
.hero__eyebrow-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--rose-pale);
}

.hero__h1 {
  font-family: var(--f-head);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--parchment);
  margin-bottom: var(--s6);
}
.hero__h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose-pale);
}
.hero__h1 span.break { display: block; }

.hero__sub {
  font-size: var(--t-md);
  color: var(--warm-mid);
  line-height: 1.72;
  max-width: 46ch;
  margin-bottom: var(--s10);
  font-weight: 300;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--s5);
  flex-wrap: wrap;
  margin-bottom: var(--s12);
}

/* Botão primário — fill direcional */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  font-family: var(--f-sans);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--rose);
  padding: 0.88rem 2rem;
  border-radius: var(--r-pill);
  overflow: hidden;
  transition: transform 250ms var(--ease-out), box-shadow 250ms ease, background 250ms ease;
  box-shadow: 0 4px 24px rgba(140, 45, 59, 0.4), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--rose-mid), var(--rose));
  opacity: 0;
  transition: opacity 300ms ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(140, 45, 59, 0.5), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-primary > * { position: relative; z-index: 1; }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--warm-mid);
  border: 1px solid rgba(196, 169, 154, 0.3);
  padding: 0.85rem 1.6rem;
  border-radius: var(--r-pill);
  transition: color 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.btn-ghost-light:hover {
  color: var(--parchment);
  border-color: rgba(196, 169, 154, 0.6);
  transform: translateY(-1px);
}

/* Coluna direita — foto + stats */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: var(--r-xl) var(--r-xl) 60px 60px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(140,45,59,0.35) 0%, rgba(30,20,16,0.8) 100%);
  border: 1px solid rgba(255,255,255,0.07);
}

/* Placeholder elegante para foto */
.hero__frame-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: var(--s8);
  background: linear-gradient(170deg, #2a1318 0%, #1a0c10 100%);
}
.hero__frame-initials {
  font-family: var(--f-head);
  font-size: 8rem;
  font-style: italic;
  font-weight: 700;
  color: rgba(140, 45, 59, 0.2);
  line-height: 1;
  user-select: none;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
}
.hero__frame-caption {
  position: relative;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: var(--t-tag);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-mid);
  text-align: center;
  line-height: 1.8;
}

/* Marcador corner */
.hero__corner {
  position: absolute;
  top: var(--s4);
  right: var(--s4);
  width: 28px; height: 28px;
}
.hero__corner::before,
.hero__corner::after {
  content: '';
  position: absolute;
  background: var(--rose-pale);
  opacity: 0.5;
  border-radius: 2px;
}
.hero__corner::before { top: 0; right: 0; width: 12px; height: 1.5px; }
.hero__corner::after  { top: 0; right: 0; width: 1.5px; height: 12px; }

/* Stats verticais ao lado */
.hero__stats {
  display: flex;
  gap: var(--s5);
  margin-top: var(--s5);
  width: 100%;
}
.hero__stat {
  flex: 1;
  padding: var(--s5) var(--s4);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
  text-align: center;
}
.hero__stat-num {
  display: block;
  font-family: var(--f-head);
  font-size: var(--t-xl);
  font-weight: 700;
  color: var(--rose-pale);
  line-height: 1;
  margin-bottom: var(--s2);
}
.hero__stat-label {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-mid);
  line-height: 1.4;
}

/* Linha de scroll hint */
.hero__scroll {
  position: absolute;
  bottom: calc(var(--s32) + var(--s4));
  left: var(--pad-x);
  display: flex;
  align-items: center;
  gap: var(--s4);
  font-family: var(--f-mono);
  font-size: var(--t-tag);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(196, 169, 154, 0.45);
  writing-mode: vertical-rl;
  z-index: 4;
}
.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(196,169,154,0.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(0.6); opacity: 1; }
}

/* ============ MARQUEE ============ */
.marquee-wrap {
  overflow: hidden;
  background: var(--rose);
  padding: var(--s4) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(140,45,59,0.3);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 24s linear infinite;
  will-change: transform;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: var(--s5);
  padding: 0 var(--s8);
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}
.marquee-sep {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ SOBRE ============ */
.sobre {
  padding: var(--section-y) var(--pad-x);
  background: var(--cream);
}
.sobre__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

/* Lado esq — imagem + tag */
.sobre__img-col {
  position: relative;
}
.sobre__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
  overflow: hidden;
  background: linear-gradient(145deg, var(--rose-ghost) 0%, var(--rose-blush) 100%);
  border: 1px solid rgba(140, 45, 59, 0.12);
}
.sobre__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-size: var(--t-xl);
  font-style: italic;
  color: var(--rose-pale);
  opacity: 0.5;
}
/* Borda decorativa offset */
.sobre__img-border {
  position: absolute;
  top: var(--s4); left: var(--s4);
  right: calc(var(--s4) * -1);
  bottom: calc(var(--s4) * -1);
  border: 1.5px solid var(--rose-blush);
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
  z-index: -1;
}
/* Tag vertical */
.sobre__tag {
  position: absolute;
  right: calc(-1 * var(--s10));
  top: var(--s12);
  writing-mode: vertical-rl;
  font-family: var(--f-mono);
  font-size: var(--t-tag);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-pale);
  opacity: 0.7;
}

/* Lado dir — texto */
.sobre__kicker {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--s6);
}
.sobre__kicker::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--rose);
}

.sobre__h2 {
  font-family: var(--f-head);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: var(--s8);
}
.sobre__h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
}

.sobre__p {
  font-size: var(--t-md);
  font-weight: 400;
  color: var(--warm-muted);
  line-height: 1.8;
  max-width: 60ch;
  margin-bottom: var(--s5);
}
.sobre__p:last-of-type { margin-bottom: var(--s10); }

/* Tags de especialidade — pill outline */
.sobre__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}
.pill {
  font-family: var(--f-sans);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rose);
  border: 1.5px solid rgba(140, 45, 59, 0.35);
  padding: 0.55rem 1.2rem;
  border-radius: var(--r-pill);
  transition: background 200ms ease, color 200ms ease;
}
.pill:hover {
  background: var(--rose);
  color: white;
}

/* ============ SERVIÇOS ============ */
.servicos {
  padding: var(--section-y) var(--pad-x);
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.servicos::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw; height: 80%;
  background: radial-gradient(ellipse, rgba(140,45,59,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.servicos__head {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s8);
  margin-bottom: var(--s16);
  padding-bottom: var(--s8);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.servicos__kicker {
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-pale);
  margin-bottom: var(--s4);
}
.servicos__h2 {
  font-family: var(--f-head);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--parchment);
}
.servicos__h2 em { font-style: italic; font-weight: 400; color: var(--rose-pale); }
.servicos__note {
  font-size: var(--t-md);
  font-weight: 400;
  color: var(--warm-muted);
  max-width: 30ch;
  line-height: 1.7;
  text-align: right;
}

/* Grid de serviços — assimétrico */
.servicos__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--s2);
}

.svc {
  padding: var(--s10);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.025);
  transition: background 300ms ease, border-color 300ms ease, transform 300ms var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.svc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(140,45,59,0.12), transparent);
  opacity: 0;
  transition: opacity 300ms ease;
}
.svc:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(140, 45, 59, 0.35);
  transform: translateY(-3px);
}
.svc:hover::after { opacity: 1; }

/* Spotlight border via JS */
.svc.spotlight-active {
  border-color: rgba(140, 45, 59, 0.5);
}

.svc--wide { grid-column: span 2; }

.svc__num {
  font-family: var(--f-head);
  font-size: var(--t-4xl);
  font-weight: 700;
  font-style: italic;
  color: rgba(212, 130, 143, 0.45);   /* rose-pale com mais opacidade */
  line-height: 1;
  position: absolute;
  top: var(--s4);
  right: var(--s6);
  user-select: none;
  text-shadow: 0 2px 12px rgba(140, 45, 59, 0.2);
}
.svc__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: rgba(140, 45, 59, 0.15);
  border: 1px solid rgba(140, 45, 59, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-pale);
  margin-bottom: var(--s5);
  position: relative;
  z-index: 1;
}
.svc__title {
  font-family: var(--f-head);
  font-size: var(--t-2xl);
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: var(--s3);
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.svc__text {
  font-size: var(--t-base);
  font-weight: 400;
  color: var(--warm-muted);
  line-height: 1.75;
  max-width: 42ch;
  position: relative;
  z-index: 1;
}
.svc__link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-pale);
  margin-top: var(--s6);
  position: relative;
  z-index: 1;
  transition: gap 200ms ease, color 200ms ease;
}
.svc__link:hover { color: white; gap: var(--s3); }

/* Card CTA especial */
.svc--cta {
  background: var(--rose);
  border-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}
.svc--cta:hover {
  background: var(--rose-mid);
  border-color: transparent;
  transform: translateY(-3px);
}
.svc--cta::after { display: none; }
.svc--cta .svc__title { color: white; }
.svc--cta .svc__text { color: rgba(255,255,255,0.75); }
.svc--cta-quote {
  font-family: var(--f-head);
  font-style: italic;
  font-size: var(--t-xl);
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
  margin-bottom: var(--s6);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  background: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-pill);
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  align-self: flex-start;
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

/* ============ ABORDAGEM ============ */
.abordagem {
  padding: var(--section-y) var(--pad-x);
  background: var(--parchment);
  position: relative;
}
/* Símbolo decorativo removido */
.abordagem::before {
  display: none;
}

.abordagem__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.abordagem__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  margin-bottom: var(--s20);
}
.abordagem__kicker {
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--s5);
}
.abordagem__h2 {
  font-family: var(--f-head);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.abordagem__h2 em { font-style: italic; font-weight: 400; color: var(--rose); }
.abordagem__body {
  font-size: var(--t-md);
  font-weight: 400;
  color: var(--warm-muted);
  line-height: 1.8;
  max-width: 55ch;
  margin-bottom: var(--s5);
}
.abordagem__body strong { color: var(--rose); font-weight: 500; }

/* Passos — linha horizontal */
.abordagem__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(140, 45, 59, 0.15);
}
.step {
  padding: var(--s8) var(--s8) var(--s8) 0;
  border-right: 1px solid rgba(140, 45, 59, 0.1);
  transition: background 300ms ease;
}
.step:last-child { border-right: none; padding-right: 0; padding-left: var(--s8); }
.step:nth-child(2) { padding-left: var(--s8); }
.step:hover { background: rgba(140, 45, 59, 0.02); }
.step__n {
  font-family: var(--f-head);
  font-size: var(--t-2xl);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
  color: rgba(212, 130, 143, 0.55);
  margin-bottom: var(--s3);
  line-height: 1;
}
.step__title {
  font-family: var(--f-head);
  font-size: var(--t-2xl);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--s3);
  line-height: 1.25;
}
.step__text {
  font-size: var(--t-base);
  font-weight: 400;
  color: var(--warm-muted);
  line-height: 1.75;
}

/* ============ FAQ ============ */
.faq {
  padding: var(--section-y) var(--pad-x);
  background: var(--cream);
}
.faq__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.faq__left { position: sticky; top: calc(var(--s24) + var(--s4)); }
.faq__kicker {
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--s5);
}
.faq__h2 {
  font-family: var(--f-head);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: var(--s6);
}
.faq__h2 em { font-style: italic; font-weight: 400; color: var(--rose); }
.faq__sub {
  font-size: var(--t-md);
  font-weight: 400;
  color: var(--warm-muted);
  line-height: 1.7;
  max-width: 30ch;
  margin-bottom: var(--s8);
}
.faq__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  border-bottom: 1px solid rgba(140,45,59,0.3);
  padding-bottom: 3px;
  transition: border-color 200ms ease;
}
.faq__cta:hover { border-color: var(--rose); }

/* Accordion */
.faq__list { border-top: 1px solid rgba(28, 20, 16, 0.1); }
.faq__item { border-bottom: 1px solid rgba(28, 20, 16, 0.08); }
.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding: var(--s6) 0;
  text-align: left;
  transition: color 200ms ease;
}
.faq__q {
  font-family: var(--f-head);
  font-size: var(--t-xl);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  transition: color 200ms ease;
}
.faq__btn:hover .faq__q { color: var(--rose); }
.faq__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--rose);
  border-radius: 2px;
  top: 50%; left: 50%;
  transition: transform 350ms var(--ease-spring), opacity 200ms ease;
}
.faq__icon::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__icon::after  { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
.faq__btn[aria-expanded="true"] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq__a {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 400ms var(--ease-out), opacity 300ms ease, padding-bottom 300ms ease;
}
.faq__a.open { opacity: 1; padding-bottom: var(--s6); }
.faq__a p {
  font-size: var(--t-md);
  font-weight: 400;
  color: var(--warm-muted);
  line-height: 1.8;
  max-width: 58ch;
}

/* ============ CTA FINAL ============ */
.cta {
  padding: var(--section-y) var(--pad-x);
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 70vw; height: 80%;
  background: radial-gradient(ellipse, rgba(140,45,59,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.cta__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--s12);
  position: relative;
  z-index: 1;
}
.cta__kicker {
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-pale);
  margin-bottom: var(--s6);
}
.cta__h2 {
  font-family: var(--f-head);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--parchment);
}
.cta__h2 em { font-style: italic; font-weight: 400; color: var(--rose-pale); }
.cta__right {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
  align-items: flex-end;
  flex-shrink: 0;
}
.cta__note {
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(196,169,154,0.65);
  text-align: right;
  line-height: 1.7;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink-soft);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: var(--s12) var(--pad-x) var(--s8);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--s10);
  padding-bottom: var(--s10);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer__brand-name {
  font-family: var(--f-head);
  font-size: var(--t-xl);
  font-style: italic;
  color: var(--parchment);
  margin-bottom: var(--s3);
}
.footer__brand-sub {
  font-family: var(--f-mono);
  font-size: var(--t-tag);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-muted);
  line-height: 1.8;
}
.footer__col-title {
  font-family: var(--f-mono);
  font-size: var(--t-tag);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-muted);
  margin-bottom: var(--s4);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.footer__links a {
  font-size: var(--t-sm);
  color: rgba(196,169,154,0.55);
  transition: color 150ms ease;
}
.footer__links a:hover { color: var(--parchment); }
.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: var(--s6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
}
.footer__copy {
  font-family: var(--f-mono);
  font-size: var(--t-tag);
  color: rgba(196,169,154,0.3);
  letter-spacing: 0.08em;
}

/* ============ WPP FLOAT ============ */
.wpp {
  position: fixed;
  bottom: var(--s6);
  right: var(--s6);
  z-index: var(--z-float);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #1fad4e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(31,173,78,0.45);
  transition: transform 300ms var(--ease-spring), box-shadow 250ms ease;
  animation: wppBreath 3s ease-in-out infinite;
}
.wpp:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 28px rgba(31,173,78,0.55);
  animation: none;
}
.wpp:active { transform: scale(0.96); }
@keyframes wppBreath {
  0%, 100% { box-shadow: 0 4px 20px rgba(31,173,78,0.45), 0 0 0 0 rgba(31,173,78,0.3); }
  50%       { box-shadow: 0 4px 20px rgba(31,173,78,0.45), 0 0 0 12px rgba(31,173,78,0); }
}
.wpp__tip {
  position: absolute;
  right: calc(100% + 10px);
  font-family: var(--f-sans);
  font-size: var(--t-xs);
  font-weight: 500;
  color: var(--parchment);
  background: var(--ink);
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 200ms ease, transform 200ms ease;
  pointer-events: none;
}
.wpp__tip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--ink);
}
.wpp:hover .wpp__tip { opacity: 1; transform: translateX(0); }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Keyframes compartilhados */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideFromRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

/* ============ PALESTRAS ============ */
.palestras {
  padding: var(--section-y) var(--pad-x);
  background: var(--cream);
  position: relative;
}

.palestras__head {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s8);
  margin-bottom: var(--s16);
  padding-bottom: var(--s8);
  border-bottom: 1px solid rgba(140, 45, 59, 0.12);
}
.palestras__kicker {
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--s4);
}
.palestras__h2 {
  font-family: var(--f-head);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.palestras__h2 em { font-style: italic; font-weight: 400; color: var(--rose); }
.palestras__note {
  font-size: var(--t-md);
  font-weight: 400;
  color: var(--warm-muted);
  max-width: 34ch;
  line-height: 1.7;
  text-align: right;
}

/* Layout: foto esquerda + conteúdo direita */
.palestras__layout {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

/* Visual / foto */
.palestras__visual { position: relative; }
.palestras__img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl) var(--r-xl) 80px 80px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--rose-ghost) 0%, var(--rose-blush) 100%);
  border: 1px solid rgba(140, 45, 59, 0.12);
  position: relative;
}
.palestras__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 5%;   /* puxa para o topo — mostra rosto/busto */
}
.palestras__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-size: var(--t-lg);
  font-style: italic;
  color: var(--rose-pale);
  opacity: 0.5;
}
.palestras__img-badge {
  position: absolute;
  bottom: var(--s5);
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: rgba(13, 9, 7, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--parchment);
  font-family: var(--f-mono);
  font-size: var(--t-tag);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

/* Conteúdo */
.palestras__intro {
  font-size: var(--t-md);
  font-weight: 400;
  color: var(--warm-muted);
  line-height: 1.8;
  max-width: 55ch;
  margin-bottom: var(--s10);
}
.palestras__intro strong { color: var(--ink); font-weight: 500; }

/* Cards dos tipos de palestra */
.palestras__cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--s10);
  border-top: 1px solid rgba(140, 45, 59, 0.1);
}
.pal-card {
  display: flex;
  gap: var(--s5);
  align-items: flex-start;
  padding: var(--s6) 0;
  border-bottom: 1px solid rgba(140, 45, 59, 0.08);
  transition: background 200ms ease;
}
.pal-card:hover { background: rgba(140, 45, 59, 0.02); }
.pal-card__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--rose-ghost);
  border: 1px solid var(--rose-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  margin-top: 2px;
}
.pal-card__title {
  font-family: var(--f-head);
  font-size: var(--t-xl);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--s2);
  line-height: 1.3;
}
.pal-card__text {
  font-size: var(--t-base);
  font-weight: 400;
  color: var(--warm-muted);
  line-height: 1.7;
}

/* Temas */
.palestras__temas { margin-bottom: var(--s10); }
.palestras__temas-label {
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--s4);
}
.palestras__temas-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}

/* Pill variante dark (para fundo claro) */
.pill--dark {
  font-family: var(--f-sans);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
  border-color: rgba(28, 20, 16, 0.25);
  border-width: 1.5px;
  background: transparent;
  padding: 0.6rem 1.3rem;
}
.pill--dark:hover { background: var(--ink); color: var(--cream); }

/* CTA palestras */
.palestras__cta {
  display: flex;
  align-items: center;
  gap: var(--s5);
  flex-wrap: wrap;
}
.palestras__cta-note {
  font-family: var(--f-mono);
  font-size: var(--t-tag);
  letter-spacing: 0.1em;
  color: var(--warm-muted);
  line-height: 1.7;
}

/* ============ SOBRE — imagem mobile ============ */
/* Escondido por padrão; responsive.css faz display:block no mobile */
.sobre__img-mobile {
  display: none;
  width: 100%;
  margin-bottom: var(--s6);
  border-radius: var(--r-xl);
  overflow: hidden;
  /* aspect-ratio garante altura mesmo antes do carregamento */
  aspect-ratio: 4 / 3;
}

/* A <img> direta dentro do .sobre__img-mobile */
.sobre__img-mobile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  border-radius: var(--r-xl);
}

/* Garante que imagens reais dentro dos placeholders funcionem */
.sobre__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Palestra: object-position definido na regra principal acima */
.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transform: scale(1.38);        /* zoom para aproximar a figura */
  transform-origin: center 25%;  /* ancora o zoom no rosto/busto */
  transition: transform 0.4s ease;
}



