/* ═════════════════════════════════════════════════════════════════
   DANIELA RISSO · PSICOLOGIA & PSICANÁLISE
   Identidade visual: Alummiô · 2026
   Aesthetic: editorial · refined · pontilhado
   ═════════════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Safira March';
  src: url('../assets/fonts/Safira-March-ExtraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand palette — strictly from guide book */
  --navy:       #2E3047;
  --navy-soft:  #3a3d52;
  --burgundy:   #6B3A43;
  --burgundy-soft: #8a4d57;
  --sage:       #7A9B76;
  --sage-soft:  #a8c0a3;
  --petal:      #D9A8A0;
  --petal-soft: #ecd2cd;
  --cream:      #EDE8DF;
  --cream-deep: #e3dccf;
  --paper:      #f7f3ea;
  --gold:       #d1a654;
  --terracota:  #a76e53;

  /* Functional */
  --bg:         var(--paper);
  --text:       var(--navy);
  --text-muted: #5b5e74;

  /* Typography */
  --font-display: 'Safira March', 'Cormorant Garamond', serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', -apple-system, system-ui, sans-serif;

  /* Rhythm */
  --section-pad: clamp(5rem, 10vw, 9rem);
  --container:   1240px;

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Subtle grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ───────────────  COMPONENTS · TYPOGRAPHY  ─────────────── */

.kicker {
  font-family: var(--font-body);
  font-size: .82rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}
.kicker__dot {
  width: 22px; height: 1px; background: var(--burgundy);
  display: inline-block;
}

.section-kicker {
  font-size: .82rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.section-kicker--light { color: var(--petal); }

.section-title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--navy);
  margin-bottom: 1.8rem;
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--burgundy);
  display: block;
  margin-left: 1.4ch;
}
.section-title--light {
  color: var(--cream);
  font-size: clamp(3rem, 7.5vw, 6rem);
  line-height: 1;
  letter-spacing: -.025em;
}
.section-title--light em { color: var(--petal); }

.section-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  color: var(--text-muted);
  max-width: 60ch;
  margin-bottom: 4rem;
  line-height: 1.5;
}

.lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--burgundy);
  line-height: 1.45;
  margin-bottom: 2rem;
}

/* ───────────────  BUTTONS  ─────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem 1.8rem;
  font-family: var(--font-body);
  font-size: .9rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: all .4s var(--ease);
  cursor: pointer;
  position: relative;
}
.btn svg { width: 18px; height: 18px; transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover {
  background: var(--navy);
  color: var(--cream);
}

.btn--block { width: 100%; justify-content: center; padding: 1.2rem; }

/* ───────────────  NAV  ─────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem clamp(1.2rem, 4vw, 3rem);
  transition: all .5s var(--ease);
  background: transparent;
}
/* over dark hero: text in cream */
.nav__menu a {
  transition: color .4s var(--ease);
}
.nav:not(.is-scrolled) .nav__menu a     { color: var(--cream); }
.nav:not(.is-scrolled) .nav__menu a:hover { color: var(--petal); }
.nav:not(.is-scrolled) .nav__menu a::after { background: var(--petal); }
.nav:not(.is-scrolled) .nav__cta {
  background: var(--cream);
  color: var(--navy) !important;
}
.nav:not(.is-scrolled) .nav__cta:hover {
  background: var(--petal);
}
.nav:not(.is-scrolled) .nav__toggle span { background: var(--cream); }

.nav.is-scrolled {
  background: rgba(247, 243, 234, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(46, 48, 71, .06);
  padding-top: .8rem;
  padding-bottom: .8rem;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  line-height: 0;
}
.nav__brand-img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity .45s var(--ease), height .5s var(--ease);
}
/* default state (over hero): show light variant, hide dark */
.nav__brand-img--dark {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.nav.is-scrolled .nav__brand-img--light { opacity: 0; }
.nav.is-scrolled .nav__brand-img--dark  { opacity: 1; }
.nav.is-scrolled .nav__brand-img { height: 38px; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav__menu a {
  font-size: .86rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--navy);
  position: relative;
  padding: .4rem 0;
  transition: color .3s var(--ease);
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__menu a:hover { color: var(--burgundy); }
.nav__menu a:hover::after { transform: scaleX(1); }

.nav__cta {
  background: var(--navy);
  color: var(--cream) !important;
  padding: .65rem 1.3rem !important;
  border-radius: 999px;
  letter-spacing: .15em;
}
.nav__cta::after { display: none; }
.nav__cta:hover {
  background: var(--burgundy);
  color: var(--cream) !important;
}

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  width: 32px; height: 24px;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 0;
}
.nav__toggle span {
  display: block;
  height: 1px; width: 100%;
  background: var(--navy);
  transition: all .3s var(--ease);
  transform-origin: center;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ───────────────  HERO  ─────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 9rem clamp(1.2rem, 4vw, 3rem) 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate; /* contain blend modes & stacking */
}

/* ─── carousel ─── */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.8s var(--ease);
  will-change: opacity, transform;
}
.hero__slide.is-active {
  opacity: 1;
  animation: kenburns 9s linear forwards;
}
@keyframes kenburns {
  from { transform: scale(1.04) translate(0,0); }
  to   { transform: scale(1.14) translate(-1.5%, -1%); }
}

/* dark editorial veil — readable on any photo */
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg,
      rgba(46, 48, 71, 0.85) 0%,
      rgba(46, 48, 71, 0.65) 38%,
      rgba(46, 48, 71, 0.38) 72%,
      rgba(46, 48, 71, 0.55) 100%
    ),
    radial-gradient(ellipse at 75% 30%,
      transparent 0%,
      rgba(46, 48, 71, 0.3) 60%,
      rgba(46, 48, 71, 0.55) 100%
    );
  pointer-events: none;
}
/* subtle bottom fade so transition into next section is seamless */
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--paper));
  z-index: -1;
  pointer-events: none;
}

/* ─── text content ─── */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding-top: 5rem;
}
.hero__content > * {
  opacity: 0;
  transform: translateY(20px);
  animation: rise .9s var(--ease) forwards;
}
.hero__content > *:nth-child(1) { animation-delay: 1.2s; }
.hero__content > *:nth-child(2) { animation-delay: 1.4s; }
.hero__content > *:nth-child(3) { animation-delay: 1.7s; }
.hero__content > *:nth-child(4) { animation-delay: 2.0s; }

@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.kicker--light { color: var(--petal); }
.kicker--light .kicker__dot { background: var(--petal); }

.hero__title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: .92;
  letter-spacing: -.03em;
  color: var(--cream);
  margin: 1.5rem 0 1.8rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero__title-line { display: block; }
.hero__title-italic {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  color: var(--petal);
  letter-spacing: 0;
  margin-top: .8rem;
  margin-left: 1ch;
  line-height: 1.3;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero__lead {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--cream);
  opacity: .92;
  max-width: 42ch;
  margin-bottom: 2.8rem;
  text-shadow: 0 1px 16px rgba(0,0,0,.35);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* light-mode buttons for hero */
.btn--cream {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}
.btn--cream:hover {
  background: var(--petal);
  border-color: var(--petal);
  color: var(--navy);
}
.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(237, 232, 223, .55);
}
.btn--ghost-light:hover {
  background: rgba(237, 232, 223, .12);
  border-color: var(--cream);
}

/* ─── dots ─── */
.hero__dots {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .75rem;
  z-index: 3;
  opacity: 0;
  animation: rise 1s var(--ease) 2.4s forwards;
}
.hero__dot {
  width: 28px;
  height: 2px;
  background: rgba(237, 232, 223, .35);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .4s var(--ease), width .4s var(--ease);
}
.hero__dot.is-active {
  background: var(--petal);
  width: 44px;
}
.hero__dot:hover:not(.is-active) {
  background: rgba(237, 232, 223, .7);
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  z-index: 3;
  animation: rise 1s var(--ease) 2.8s forwards;
}
.hero__scroll svg {
  width: 12px; height: 24px;
  color: var(--cream);
  animation: bobble 2.4s ease-in-out infinite;
}
@keyframes bobble {
  0%,100% { transform: translateY(0); opacity: .7; }
  50%     { transform: translateY(6px); opacity: .25; }
}

/* ───────────────  MANIFESTO  ─────────────── */

.manifesto {
  padding: var(--section-pad) clamp(1.2rem, 4vw, 3rem);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  left: -5%; top: 10%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--petal-soft) 0%, transparent 70%);
  opacity: .5;
  pointer-events: none;
}

.manifesto__inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.manifesto__quote {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--burgundy);
  margin: 3rem 0 3.5rem;
  padding-left: 2rem;
  border-left: 1px solid var(--burgundy);
  position: relative;
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 1.6em;
  color: var(--petal);
  position: absolute;
  left: -.4em; top: -.2em;
  line-height: 1;
}

.manifesto__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--navy-soft);
}
.manifesto__cols p { font-weight: 300; }

.manifesto__highlight {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem !important;
  color: var(--burgundy) !important;
  line-height: 1.45 !important;
  border-top: 1px solid var(--burgundy);
  border-bottom: 1px solid var(--burgundy);
  padding: 1.5rem 0;
  grid-column: span 2;
  max-width: 60ch;
  margin: 0 auto;
  text-align: center;
}

.manifesto__closing {
  grid-column: span 2;
  text-align: center;
  font-size: 1.2rem !important;
  font-style: italic;
  font-family: var(--font-serif) !important;
  color: var(--navy) !important;
  margin-top: 1rem;
}
.manifesto__closing strong {
  color: var(--burgundy);
  font-weight: 500;
  font-style: normal;
}

.manifesto__signature {
  text-align: center;
  margin-top: 3.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-muted);
  font-size: 1rem;
  letter-spacing: .02em;
}

/* ───────────────  SOBRE  ─────────────── */

.sobre {
  padding: var(--section-pad) clamp(1.2rem, 4vw, 3rem);
  background: var(--paper);
  position: relative;
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  max-width: var(--container);
  margin: 0 auto;
  align-items: center;
}

.sobre__images {
  position: relative;
  height: 100%;
  min-height: 600px;
}
.sobre__img {
  position: absolute;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 50px -15px rgba(46, 48, 71, .25);
}
.sobre__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.sobre__img:hover img { transform: scale(1.05); }

.sobre__img--lg {
  width: 75%; height: 78%;
  top: 0; left: 0;
}
.sobre__img--sm {
  width: 55%; height: 50%;
  bottom: 0; right: 0;
  border: 6px solid var(--paper);
}

.sobre__bio {
  margin: 1.5rem 0 3rem;
  display: flex; flex-direction: column; gap: 1.2rem;
  color: var(--navy-soft);
  font-size: 1rem;
  line-height: 1.75;
}
.sobre__bio strong { color: var(--navy); font-weight: 500; }

.sobre__credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(46, 48, 71, .12);
}
.credential {
  display: flex;
  flex-direction: column;
}
.credential__num {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 2.8rem;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: .3rem;
}
.credential__num small {
  font-size: .5em;
  vertical-align: super;
  color: var(--gold);
}
.credential__label {
  font-size: .86rem;
  color: var(--text-muted);
  line-height: 1.35;
  font-weight: 400;
}

/* ───────────────  ESCUTA (cards)  ─────────────── */

.escuta {
  padding: var(--section-pad) clamp(1.2rem, 4vw, 3rem);
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.escuta::before {
  content: '';
  position: absolute;
  right: -15%; bottom: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(122, 155, 118, .2) 0%, transparent 65%);
  pointer-events: none;
}

.escuta__inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.escuta__title { max-width: 14ch; }

.escuta__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--paper);
  border: 1px solid rgba(46, 48, 71, .08);
  border-radius: 6px;
  padding: 2.5rem 2rem 2.2rem;
  position: relative;
  overflow: hidden;
  transition: all .5s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -25px rgba(46, 48, 71, .25);
  border-color: var(--burgundy);
}

.card__number {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 3.2rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 1.4rem;
  opacity: .7;
}
.card__title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 1.7rem;
  letter-spacing: -.01em;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.card__lead {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--burgundy);
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 1.4rem;
}
.card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.card__list li {
  font-size: 1rem;
  color: var(--navy-soft);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}
.card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: .65em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--burgundy);
  opacity: .5;
}

.card__corner {
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background:
    linear-gradient(135deg, transparent 50%, var(--petal) 50%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.card:hover .card__corner { opacity: .25; }

.escuta__footnote {
  text-align: center;
  margin-top: 4rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-muted);
}

/* ───────────────  TRAJETÓRIA / TIMELINE  ─────────────── */

.trajetoria {
  padding: var(--section-pad) clamp(1.2rem, 4vw, 3rem);
  background: var(--paper);
}

.trajetoria__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.timeline {
  margin-top: 3rem;
  position: relative;
  padding-left: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 14ch; top: 0; bottom: 0;
  width: 1px;
  background-image: linear-gradient(to bottom, var(--gold) 50%, transparent 50%);
  background-size: 1px 8px;
  background-repeat: repeat-y;
  opacity: .55;
}

.timeline__item {
  display: grid;
  grid-template-columns: 14ch 1fr;
  gap: 2.5rem;
  padding: 1.6rem 0;
  position: relative;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: calc(14ch - 5px);
  top: 2.1rem;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--burgundy);
  z-index: 1;
  transition: all .3s var(--ease);
}
.timeline__item:hover::before {
  background: var(--burgundy);
  transform: scale(1.3);
}

.timeline__year {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--burgundy);
  line-height: 1.3;
  text-align: right;
  padding-right: 1.5rem;
  padding-top: .2rem;
}

.timeline__body h4 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: .3rem;
  letter-spacing: -.01em;
}
.timeline__body p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

/* ───────────────  CONTATO  ─────────────── */

.contato {
  padding: var(--section-pad) clamp(1.2rem, 4vw, 3rem);
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.contato__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: var(--container);
  margin: 0 auto;
  align-items: start;
}

.contato__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--cream);
  opacity: .8;
  margin: 0 0 2.5rem;
  max-width: 42ch;
}

.contato__info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.contato__info li {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding-bottom: 1.4rem;
  border-bottom: 1px dashed rgba(237, 232, 223, .18);
}
.contato__info li:last-child { border-bottom: 0; }

.contato__info-label {
  font-size: .78rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--petal);
  font-weight: 400;
}
.contato__info a, .contato__info li > span:last-child {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--cream);
  transition: color .3s var(--ease);
}
.contato__info a:hover { color: var(--petal); }

/* form */
.contato__form {
  background: rgba(237, 232, 223, .04);
  border: 1px solid rgba(237, 232, 223, .14);
  border-radius: 6px;
  padding: 2.5rem;
  backdrop-filter: blur(8px);
}

.form__title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
  color: var(--cream);
  letter-spacing: -.01em;
}

.field {
  margin-bottom: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field label {
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--petal);
  font-weight: 400;
}
.field label span {
  color: var(--gold);
  margin-left: .1rem;
}

.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(237, 232, 223, .25);
  padding: .7rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cream);
  font-weight: 300;
  transition: border-color .3s var(--ease);
  border-radius: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--petal);
}

.field textarea { resize: vertical; min-height: 90px; font-family: var(--font-body); }
.field select { appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D9A8A0' fill='none' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .5rem center;
  padding-right: 1.5rem;
}
.field select option { background: var(--navy); color: var(--cream); }

.check {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  font-size: .9rem;
  line-height: 1.5;
  color: rgba(237, 232, 223, .75);
  margin: 1.5rem 0 1.8rem;
  cursor: pointer;
}
.check input {
  width: 16px; height: 16px;
  margin-top: .15rem;
  accent-color: var(--petal);
  flex-shrink: 0;
}

.form__feedback {
  margin-top: 1rem;
  font-size: .98rem;
  font-family: var(--font-serif);
  font-style: italic;
  min-height: 1.2rem;
  text-align: center;
}
.form__feedback.is-success { color: var(--sage-soft); }
.form__feedback.is-error   { color: var(--petal); }

.contato .btn--primary {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}
.contato .btn--primary:hover {
  background: var(--petal);
  border-color: var(--petal);
  color: var(--navy);
}

/* ───────────────  FOOTER  ─────────────── */

.footer {
  background: var(--cream);
  padding: 4rem clamp(1.2rem, 4vw, 3rem) 2rem;
  text-align: center;
  position: relative;
}
.footer__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}
.footer__brand { display: flex; align-items: center; justify-content: center; }
.footer__brand-img {
  height: 72px;
  width: auto;
  display: block;
}
.footer__manifesto {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--burgundy);
  max-width: 35ch;
  line-height: 1.55;
}
.footer__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
  font-size: .88rem;
  color: var(--text-muted);
  letter-spacing: .05em;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(46, 48, 71, .1);
  width: 100%;
}

/* ───────────────  WHATSAPP FLOATER  ─────────────── */

.whatsapp-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 80;
  background: #25D366;
  color: white;
  width: 60px; height: 60px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, .55);
  transition: all .45s var(--ease);
  overflow: hidden;
  padding: 0 18px;
  white-space: nowrap;
}
.whatsapp-float svg {
  width: 28px; height: 28px;
  flex-shrink: 0;
}
.whatsapp-float__label {
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  max-width: 0;
  opacity: 0;
  margin-left: 0;
  transition: all .4s var(--ease);
}
.whatsapp-float:hover {
  width: auto;
  border-radius: 999px;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -10px rgba(37, 211, 102, .65);
}
.whatsapp-float:hover .whatsapp-float__label {
  max-width: 200px;
  opacity: 1;
  margin-left: .8rem;
}

/* ───────────────  REVEAL ANIMATIONS  ─────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ───────────────  DOTLINE (decorative accent)  ─────────────── */

.dotline {
  display: block;
  width: 44px;
  height: 3px;
  background-image: radial-gradient(circle, currentColor 32%, transparent 33%);
  background-size: 8px 3px;
  background-repeat: repeat-x;
  color: var(--terracota);
  opacity: .75;
  margin-bottom: 1.3rem;
}
.dotline--gold { color: var(--gold); opacity: .85; }

/* ───────────────  A QUEM ATENDO  ─────────────── */

.atendo {
  padding: var(--section-pad) clamp(1.2rem, 4vw, 3rem);
  background: var(--paper);
  position: relative;
}
.atendo__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.atendo__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.atendo-card {
  background: var(--cream);
  border-top: 2px solid var(--navy);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.atendo-card:nth-child(2) { border-top-color: var(--burgundy); }
.atendo-card:nth-child(3) { border-top-color: var(--sage); }
.atendo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -22px rgba(46, 48, 71, .22);
}
.atendo-card__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: .9rem;
  letter-spacing: .02em;
}
.atendo-card__title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 1.1rem;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.atendo-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--navy-soft);
}

/* ───────────────  FRENTES DA ESCUTA  ─────────────── */

.frentes {
  padding: var(--section-pad) clamp(1.2rem, 4vw, 3rem);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.frentes::before {
  content: '';
  position: absolute;
  left: -10%; top: 20%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(167, 110, 83, .12) 0%, transparent 65%);
  pointer-events: none;
}
.frentes__inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.frentes__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.frente-card {
  background: var(--cream);
  border-top: 2px solid var(--burgundy);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.frente-card--burgundy { border-top-color: var(--burgundy); }
.frente-card--terra    { border-top-color: var(--terracota); }
.frente-card--navy     { border-top-color: var(--navy); }
.frente-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -22px rgba(46, 48, 71, .22);
}
.frente-card__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: .9rem;
  letter-spacing: .02em;
}
.frente-card__title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 1.1rem;
  line-height: 1.2;
  letter-spacing: -.01em;
}
.frente-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--navy-soft);
}

/* ───────────────  POR QUE PSICANÁLISE (destaque + CTA)  ─────────────── */

.porque {
  padding: var(--section-pad) clamp(1.2rem, 4vw, 3rem);
  background: var(--cream-deep);
  position: relative;
}
.porque__inner {
  max-width: 920px;
  margin: 0 auto;
}
.porque__card {
  background: var(--paper);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.8rem, 4vw, 3.5rem);
  border-top: 3px solid var(--gold);
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(46, 48, 71, .2);
}
.porque__card::before {
  content: '';
  position: absolute;
  top: -3px; left: 0; right: 0;
  height: 3px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--gold) 0, var(--gold) 5px,
    transparent 5px, transparent 11px
  );
}
.porque__body {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  color: var(--navy-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}
.porque__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.75vw, 1.35rem);
  color: var(--burgundy);
  line-height: 1.5;
  margin-bottom: .5rem;
}
.porque__cta {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px dashed rgba(46, 48, 71, .18);
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  align-items: flex-start;
}
.porque__cta-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--burgundy);
  line-height: 1.5;
  margin: 0;
}

/* WhatsApp button (sage green, matches palette) */
.btn--wa {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: var(--sage);
  color: var(--cream);
  border: 1px solid var(--sage);
  padding: 1rem 1.7rem;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn--wa:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn--wa svg {
  width: 16px; height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ───────────────  MODALIDADES  ─────────────── */

.modalidades {
  padding: var(--section-pad) clamp(1.2rem, 4vw, 3rem);
  background: var(--paper);
}
.modalidades__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.modalidades__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(46, 48, 71, .14);
}
.mod {
  padding: 1.9rem 0;
  border-bottom: 1px solid rgba(46, 48, 71, .14);
  display: flex;
  align-items: baseline;
  gap: 1.8rem;
}
.mod:nth-child(odd)  { padding-right: 1.5rem; border-right: 1px solid rgba(46, 48, 71, .14); }
.mod:nth-child(even) { padding-left: 1.5rem; }
.mod__label {
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--burgundy);
  flex-shrink: 0;
  width: 130px;
}
.mod__text {
  flex: 1;
  line-height: 1.55;
}
.mod__text strong {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 1.15rem;
  color: var(--navy);
  display: block;
  letter-spacing: -.005em;
  margin-bottom: .2rem;
}
.mod__text span {
  font-size: .98rem;
  color: var(--text-muted);
}

/* ───────────────  FAQ  ─────────────── */

.faq {
  padding: var(--section-pad) clamp(1.2rem, 4vw, 3rem);
  background: var(--cream);
  position: relative;
}
.faq__inner {
  max-width: 920px;
  margin: 0 auto;
}
.faq__list {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(46, 48, 71, .16);
}
.faq__item {
  border-bottom: 1px solid rgba(46, 48, 71, .16);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -.005em;
  transition: color .25s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--burgundy);
  line-height: 1;
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--burgundy); }
.faq__answer {
  padding: 0 0 1.8rem;
  font-size: 1rem;
  color: var(--navy-soft);
  line-height: 1.75;
  max-width: 70ch;
}

/* ───────────────  EMPRESAS  ─────────────── */

.empresas {
  padding: var(--section-pad) clamp(1.2rem, 4vw, 3rem);
  background: var(--burgundy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.empresas::before {
  content: '';
  position: absolute;
  right: -8%; top: -10%;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(209, 166, 84, .14) 0%, transparent 65%);
  pointer-events: none;
}
.empresas__inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.section-kicker--gold { color: var(--gold); }

.empresas__title {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  margin-bottom: 1.6rem;
}
.empresas__intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  color: var(--petal);
  line-height: 1.55;
  max-width: 65ch;
  margin-bottom: 3rem;
}
.empresas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.frente-corp {
  background: rgba(255, 255, 255, .06);
  border-top: 2px solid var(--gold);
  padding: 2.2rem 1.9rem;
  transition: transform .5s var(--ease), background .5s var(--ease);
}
.frente-corp:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .1);
}
.frente-corp__title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 1rem;
  letter-spacing: -.005em;
  line-height: 1.2;
}
.frente-corp p {
  font-size: .98rem;
  line-height: 1.65;
  color: var(--petal);
  margin: 0;
}
.empresas__cta {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  align-items: flex-start;
}
.empresas__cta-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--petal);
  margin: 0;
}
.empresas__cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
}
.empresas__cta-links a {
  display: inline-flex;
  align-items: center;
  padding: .9rem 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.empresas__cta-links a:hover {
  background: var(--gold);
  color: var(--burgundy);
  transform: translateY(-2px);
}

/* ═══════════════  RESPONSIVE  ═══════════════ */

@media (max-width: 1024px) {
  .sobre__grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre__images { min-height: 480px; max-width: 540px; margin: 0 auto; width: 100%; }
  .escuta__cards { grid-template-columns: 1fr; gap: 1.2rem; }
  .contato__grid { grid-template-columns: 1fr; gap: 3rem; }
  .manifesto__cols { grid-template-columns: 1fr; gap: 1.6rem; }
  .manifesto__highlight, .manifesto__closing { grid-column: span 1; }

  /* new sections */
  .atendo__cards { grid-template-columns: 1fr; gap: 1.2rem; }
  .frentes__cards { grid-template-columns: 1fr; gap: 1.2rem; }
  .empresas__grid { grid-template-columns: 1fr; gap: 1.2rem; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav { padding: 1rem 1.2rem; }
  .nav__brand-img { height: 36px; }
  .nav.is-scrolled .nav__brand-img { height: 32px; }
  .footer__brand-img { height: 56px; }
  .nav__menu {
    position: fixed;
    top: 70px; right: 0;
    background: var(--paper);
    flex-direction: column;
    gap: 0;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - 70px);
    padding: 2rem 1.5rem;
    border-left: 1px solid rgba(46, 48, 71, .1);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu.is-open a { color: var(--navy) !important; }
  .nav__menu a {
    padding: 1.1rem 0;
    width: 100%;
    border-bottom: 1px dashed rgba(46, 48, 71, .12);
  }
  .nav__toggle { display: flex; }

  .hero { padding: 7rem 1.2rem 5rem; min-height: 100vh; min-height: 100svh; }
  .hero__slide { background-position: center 30%; }
  .hero__veil {
    background:
      linear-gradient(180deg,
        rgba(46, 48, 71, 0.55) 0%,
        rgba(46, 48, 71, 0.4) 40%,
        rgba(46, 48, 71, 0.75) 100%
      );
  }
  .hero__content { padding-top: 3rem; }
  .hero__title { font-size: clamp(3.5rem, 18vw, 5rem); }
  .hero__title-italic { font-size: 1.2rem; }
  .hero__lead { font-size: 1.1rem; max-width: 32ch; }
  .hero__scroll { display: none; }
  .hero__dots { bottom: 2.5rem; }
  .kicker {
    font-size: .68rem;
    flex-wrap: wrap;
    line-height: 1.5;
  }
  .kicker__dot { width: 14px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }

  .manifesto__quote { font-size: 1.5rem; padding-left: 1.2rem; }

  .timeline::before { left: 0; }
  .timeline__item { grid-template-columns: 1fr; gap: .4rem; padding-left: 1.8rem; }
  .timeline__item::before { left: -5px; top: 1.9rem; }
  .timeline__year { text-align: left; padding-right: 0; }

  .sobre__credentials { grid-template-columns: 1fr; gap: 1.2rem; }

  .contato__form { padding: 1.8rem; }
  .field-row { grid-template-columns: 1fr; }
  .contato__info li { grid-template-columns: 1fr; gap: .3rem; }

  .whatsapp-float { bottom: 1.2rem; right: 1.2rem; width: 54px; height: 54px; padding: 0 14px; }
  .whatsapp-float svg { width: 26px; height: 26px; }

  .section-title { font-size: clamp(2.2rem, 9vw, 3.2rem); }

  /* new sections — mobile */
  .modalidades__list { grid-template-columns: 1fr; }
  .mod:nth-child(odd) { padding-right: 0; border-right: none; }
  .mod:nth-child(even) { padding-left: 0; }
  .mod { gap: 1rem; padding: 1.4rem 0; }
  .mod__label { width: auto; min-width: 110px; font-size: .68rem; }

  .porque__card { padding: 2rem 1.4rem; }
  .porque__cta { align-items: stretch; }
  .btn--wa { justify-content: center; }

  .faq__item summary { font-size: 1.1rem; padding: 1.3rem 0; gap: 1rem; }
  .faq__item summary::after { font-size: 1.5rem; }
  .faq__answer { padding-bottom: 1.4rem; font-size: .96rem; }

  .empresas__cta-links { flex-direction: column; align-items: stretch; }
  .empresas__cta-links a { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
