/* =============================================
   NIDINHA NEGREIROS | PSICÓLOGA — 2026
   ============================================= */

:root {
  --bg:          #EDE8DE;
  --accent:      #8C1F55;
  --accent-dark: #6E1840;
  --tint:        rgba(140, 31, 85, 0.07);
  --text:        #0D0D0D;
  --muted:       #666;
  --white:       #fff;
  --nav-h:       80px;
  --max-w:       1200px;
  --pad-x:       clamp(20px, 5vw, 64px);
  --pad-s:       clamp(72px, 9vw, 128px);
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur:         0.35s;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Inter', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { background: var(--bg); color: var(--text); font-family: var(--sans); font-weight: 300; line-height: 1.75; overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.2; }
p { color: var(--muted); font-size: 1rem; line-height: 1.82; margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.tag {
  display: inline-block; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}

.bento .bento__body-1 .tag {
  font-size: 2.4rem;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.bento .bento__body-1 .btn {
  align-self: flex-start;
  width: fit-content;
}
.bento .bento__body-1 .btn i,
.bento .bento__body-2 .btn i {
  font-size: 1.3rem;
}
.bento .bento__body-2--berry .btn .fa-whatsapp {
  font-size: 1.98rem;
}
.bento .bento__body-1 .section-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 10px;
}
.bento .bento__body-1 .divider {
  margin: 8px 0 16px;
}

.bento .bento__body-1 p {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.82;
}

.quem-sou__logo {
  height: clamp(50px, 6vw, 80px);
  width: auto;
  opacity: 0.15;
  align-self: center;
  margin-top: clamp(48px, 6vw, 80px);
}
.section-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 18px; }
.divider { width: 44px; height: 1px; background: var(--accent); margin: 14px 0 30px; }
.divider--center { margin-left: auto; margin-right: auto; }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
section.section { padding: var(--pad-s) 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 34px; font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  cursor: pointer;
}
.btn--primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn--outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn--outline:hover { background: var(--accent); color: var(--white); }
.btn--light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.75); }
.btn--light:hover { background: var(--white); color: var(--text); }
.btn--sm { padding: 9px 20px; font-size: 0.68rem; }

/* ── Framed image ── */
.img-frame { position: relative; display: inline-block; width: 100%; }
.img-frame::before {
  content: ''; position: absolute;
  top: 18px; left: -18px; right: 18px; bottom: -18px;
  border: 1px solid var(--accent); z-index: 0; pointer-events: none;
}
.img-frame img { position: relative; z-index: 1; width: 100%; object-fit: cover; }

/* =============================================
   NAVBAR
   ============================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), height var(--dur) var(--ease);
}
.nav.is-scrolled, .nav.is-solid {
  background: rgba(237,232,222,.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,.07); height: 68px;
}
.nav__inner {
  max-width: var(--max-w); width: 100%; margin: 0 auto; padding: 0 var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo img { height: 44px; width: auto; filter: none; transition: filter var(--dur) var(--ease); }
.nav.is-scrolled .nav__logo img, .nav.is-solid .nav__logo img { filter: brightness(0); }

.nav__menu { display: flex; align-items: center; gap: 20px; }
.nav__cta-start { margin-left: auto; }
.nav__link {
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,.9); position: relative; transition: color var(--dur) var(--ease);
}
.nav.is-scrolled .nav__link, .nav.is-solid .nav__link { color: var(--text); }
.nav__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__cta {
  padding: 9px 20px; border: 1px solid rgba(255,255,255,.7);
  color: rgba(255,255,255,.9); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--white); color: var(--text); border-color: var(--white); }
.nav.is-scrolled .nav__cta, .nav.is-solid .nav__cta { border-color: var(--accent); color: var(--accent); }
.nav.is-scrolled .nav__cta:hover, .nav.is-solid .nav__cta:hover { background: var(--accent); color: var(--white); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 9001; }
.nav__burger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.nav.is-scrolled .nav__burger span, .nav.is-solid .nav__burger span { background: var(--text); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =============================================
   HERO — foto full + quadrado flutuante direito
   ============================================= */
.hero {
  position: relative;
  height: 100svh; min-height: 600px;
  overflow: hidden;
}

/* Foto de fundo */
.hero__bg { position: absolute; inset: 0; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Logo flutuante sobre a foto do hero */
.hero__float-logo {
  position: absolute;
  z-index: 3;
  left: 75%;
  top: 17%;
  transform: translateY(-50%);
  height: clamp(98px, 11vw, 154px);
  width: auto;
  opacity: 0.4;
  filter: drop-shadow(0 3px 14px rgba(0,0,0,.55));
  pointer-events: none;
}

/* Quadrado transparente — lado esquerdo */
.hero__panel {
  position: absolute;
  z-index: 2;
  left: 45%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(572px, 40%, 900px);
  display: flex; flex-direction: column; align-items: flex-start;
  padding: clamp(44px,5.5vw,80px) clamp(62px,7.7vw,110px);
  background: rgba(10, 10, 10, 0.54);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  color: var(--white);
}

.hero__tagline {
  font-family: var(--serif); font-size: clamp(2.2rem,4vw,3.6rem);
  font-style: italic; font-weight: 300;
  color: rgba(255,255,255,.75); margin-bottom: 10px;
}
.hero__headline {
  font-family: var(--serif); font-size: clamp(1.4rem,2.4vw,2.2rem);
  font-weight: 300; line-height: 1.4; color: var(--white); margin-bottom: 0;
  width: 100%;
}

/* Botões */
.hero__actions {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 16px; margin-top: clamp(24px,3.5vw,40px);
}
.hero__actions .fa-whatsapp { font-size: 0.8rem; }
.hero__saiba {
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,.55); display: flex; align-items: center; gap: 10px;
  transition: color var(--dur) var(--ease);
}
.hero__saiba:hover { color: var(--white); }
.hero__saiba i { animation: bounce-down 2s ease-in-out infinite; }
@keyframes bounce-down { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }

/* =============================================
   INFO STRIP
   ============================================= */
.info-strip { background: var(--text); padding: 16px 0; }
.info-strip__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x);
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 12px 20px; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.info-strip .sep { color: var(--accent); }

/* =============================================
   BENTO A — image-left (58%) | text-right (42%)
   ============================================= */
.bento {
  display: grid;
  grid-template-columns: 45% 55%;
  grid-template-rows: 2fr 0.7fr;
  min-height: clamp(240px, 26vw, 360px);
  overflow: hidden;
}
.bento__media {
  grid-column: 1; grid-row: 1 / 3; overflow: hidden;
}
.bento__media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

.bento__body-1 {
  grid-column: 2; grid-row: 1;
  padding: clamp(70px,8vw,100px) clamp(48px,6vw,80px) clamp(22px,2.8vw,40px);
  display: flex; flex-direction: column; justify-content: flex-start;
  background: var(--bg);
}
.bento__body-1 p { margin-bottom: 0.65em; font-size: 0.88rem; line-height: 1.65; }

.bento__body-2 {
  grid-column: 2; grid-row: 2;
  padding: clamp(60px,7.5vw,96px) clamp(24px,3vw,44px) clamp(20px,2.5vw,32px);
  display: flex; flex-direction: column; justify-content: flex-start;
  align-items: center; text-align: center;
}
.bento__body-2--berry { background: var(--accent); color: var(--white); }
.bento__body-2--berry .tag { color: rgba(255,255,255,.5); margin-bottom: 14px; font-size: 0.975rem; }
.bento__body-2--berry blockquote {
  font-family: var(--serif); font-size: clamp(1.2rem,2vw,1.65rem);
  font-style: italic; font-weight: 300; line-height: 1.45; color: var(--white);
  margin-bottom: 28px;
}
.bento__body-2--berry p { color: rgba(255,255,255,.75); }

/* =============================================
   BENTO B — text-left (40%) | image-right (60%)
   ============================================= */
.bento-b {
  display: grid;
  grid-template-columns: 57% 43%;
  grid-template-rows: auto 1fr;
  min-height: clamp(480px, 54vw, 680px);
  overflow: hidden;
}
.bento-b__top {
  grid-column: 1; grid-row: 1;
  padding: clamp(48px,6vw,80px) clamp(36px,5vw,72px) clamp(32px,4vw,48px);
  background: var(--text); color: var(--white);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.bento-b__top .tag   { color: var(--accent); font-size: 2.72rem; letter-spacing: 0.08em; }
.bento-b__top .section-title { color: var(--white); }
.bento-b__top .divider { background: var(--accent); }

.bento-b__bottom {
  grid-column: 1; grid-row: 2;
  padding: clamp(36px,5vw,60px) clamp(24px,3vw,44px) clamp(20px,2.5vw,32px);
  background: var(--tint);
  border-left: 3px solid var(--accent);
  display: flex; flex-direction: column; justify-content: flex-start; gap: 10px;
}
.bento-b__bottom .missao-quote {
  font-family: var(--serif); font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-style: italic; font-weight: 400; line-height: 1.5;
  color: var(--accent); margin: 0 0 clamp(20px, 3vw, 40px);
}
.bento-b__bottom p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.75; margin: 0;
}
.bento-b__logo {
  width: auto; height: clamp(95px, 13.3vw, 152px);
  opacity: 0.18; align-self: center; margin-top: clamp(32px, 5vw, 56px);
  filter: saturate(1.2);
}

.bento-b__media {
  grid-column: 2; grid-row: 1 / 3; overflow: hidden;
}
.bento-b__media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

/* =============================================
   APPROACH BENTO — 3 cols: card | photo | card
   ============================================= */
.abordagem-header { text-align: center; padding: clamp(46px,5.8vw,82px) 0 clamp(26px,3.2vw,41px); }
.abordagem-header .tag { font-size: 1.32rem; }
.abordagem-header .section-title { font-size: clamp(2rem,4vw,3.2rem); }
.abordagem-header .divider { margin: 10px auto 0; }
.abordagem-bento {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  min-height: clamp(196px,22vw,279px);
  overflow: hidden;
}
.abordagem-bento__card {
  padding: clamp(32px,4vw,58px) clamp(19px,2.4vw,38px);
  display: flex; flex-direction: column; justify-content: center;
  border: 1px solid rgba(140,31,85,.2);
}
.abordagem-bento__card:first-child { border-left: none; }
.abordagem-bento__card:last-child  { border-right: none; }
.abordagem-bento__num {
  font-family: var(--serif); font-size: 4rem; font-weight: 300;
  color: var(--accent); opacity: 1; line-height: 1; margin-bottom: 14px;
}
.abordagem-bento__card h3 { font-family: var(--serif); font-size: 2.5rem; font-weight: 500; margin-bottom: 14px; }
.abordagem-bento__card p { font-size: clamp(0.95rem,1.3vw,1.15rem); line-height: 1.75; }
.abordagem-bento__photo { overflow: hidden; }
.abordagem-bento__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }

/* =============================================
   VÍDEOS
   ============================================= */
.videos__header { text-align: center; margin-bottom: clamp(36px,5vw,64px); }
.videos__header .tag { font-size: 1.32rem; }
.servicos__header .tag { font-size: 1.32rem; }
.videos__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.video-item { display: flex; flex-direction: column; gap: 10px; }
.video-reel {
  position: relative; aspect-ratio: 9/16; overflow: hidden;
  background: #111; border: 1px solid rgba(140,31,85,.15);
}
.video-reel iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-weight: 500; text-align: center; margin: 0; }

/* =============================================
   SERVIÇOS
   ============================================= */
.servicos__header { text-align: center; margin-bottom: clamp(36px,5vw,64px); }
.servicos__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: clamp(36px,5vw,56px); }
.servico {
  padding: clamp(28px,3vw,44px) clamp(22px,2.5vw,34px);
  border: 1px solid var(--accent); text-align: center;
  transition: background var(--dur) var(--ease);
}
.servico:hover { background: var(--accent); }
.servico:hover .servico__icon, .servico:hover h3 { color: var(--white); }
.servico:hover p { color: rgba(255,255,255,.8); }
.servico__icon { font-size: 1.75rem; color: var(--accent); margin-bottom: 18px; transition: color var(--dur) var(--ease); }
.servico h3 { font-family: var(--sans); font-size: 0.94rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; transition: color var(--dur) var(--ease); }
.servicos__cta { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; }

/* =============================================
   CONTATO
   ============================================= */
.contato { background: var(--text); color: var(--white); }
.contato .tag { color: var(--accent); }
.contato .section-title { color: var(--white); }
.contato .divider { background: var(--accent); }
.contato p { color: rgba(255,255,255,.65); }
.contato__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,96px); align-items: center; }
.contato__links { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 36px; }
.contato__link { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.75); font-size: .95rem; transition: color var(--dur) var(--ease); }
.contato__link:hover { color: var(--white); }
.contato__link i { font-size: 1.1rem; color: var(--accent); width: 22px; text-align: center; }
.contato__img .img-frame::before { border-color: rgba(140,31,85,.35); }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: #080808; padding: 52px 0; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer__logo { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: .7; margin-bottom: 4px; }
.footer__crp { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.3); margin: 0; }
.footer__social { display: flex; gap: 22px; margin: 6px 0; }
.footer__social a { color: rgba(255,255,255,.4); font-size: 1rem; transition: color var(--dur) var(--ease); }
.footer__social a:hover { color: var(--accent); }
.footer__copy { font-size: .7rem; color: rgba(255,255,255,.25); margin: 0; }

/* =============================================
   PAGE HEADER (páginas internas)
   ============================================= */
.page-header { padding: calc(var(--nav-h) + 37px) 0 37px; background: var(--text); text-align: center; }
.page-header .tag    { color: rgba(255,165,165,.75); }
.page-header .section-title { color: var(--white); font-size: clamp(2.5rem,5vw,4.2rem); }
.page-header .divider { margin-left: auto; margin-right: auto; }
.page-header p { color: rgba(255,255,255,.6); max-width: 560px; margin: 0 auto; }

/* =============================================
   TRAJETÓRIA
   ============================================= */
.traj__layout { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(32px,5vw,64px); align-items: start; }
.traj__photo { margin-bottom: 0; position: sticky; top: calc(var(--nav-h) + 20px); }
.traj__photo .img-frame img { aspect-ratio: 3/4; width: 100%; }
.timeline { position: relative; }
.timeline::before { content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 1px; background: rgba(140,31,85,.2); }
.timeline__item { padding-left: 36px; margin-bottom: 24px; position: relative; }
.timeline__item::before { content: ''; position: absolute; left: -4px; top: 8px; width: 9px; height: 9px; border: 1px solid var(--accent); background: var(--bg); }
.timeline__year { font-size: .7rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.timeline__item h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; margin-bottom: 8px; }
.timeline__item p { white-space: nowrap; overflow: visible; }
.section-sub { font-family: var(--serif); font-size: clamp(1.5rem,2.5vw,2rem); font-weight: 400; margin-bottom: 28px; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tags__item { font-size: .72rem; font-weight: 400; letter-spacing: .08em; padding: 7px 16px; border: 1px solid var(--accent); color: var(--accent); transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }
.tags__item:hover { background: var(--accent); color: var(--white); }

/* =============================================
   REFLEXÕES
   ============================================= */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; }
.filter-btn { font-size: .7rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; padding: 8px 20px; border: 1px solid rgba(140,31,85,.35); color: var(--muted); background: transparent; cursor: pointer; transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.filter-btn:hover, .filter-btn.is-active { background: var(--accent); color: var(--white); border-color: var(--accent); }
.reflexoes__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.reflexao-card { display: flex; flex-direction: column; border: 1px solid rgba(140,31,85,.15); transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease); }
.reflexao-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-4px); }
.reflexao-card__img { aspect-ratio: 4/3; overflow: hidden; }
.reflexao-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.reflexao-card:hover .reflexao-card__img img { transform: scale(1.04); }
.reflexao-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.reflexao-card__cat { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 8px; }
.reflexao-card__body h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; margin-bottom: 10px; }
.reflexao-card__body p { font-size: .88rem; flex: 1; margin-bottom: 18px; }

/* =============================================
   LEITURAS
   ============================================= */
.leituras__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.livro-card { display: flex; flex-direction: column; gap: 14px; }
.livro-card__cover { aspect-ratio: 2/3; overflow: hidden; border: 1px solid rgba(140,31,85,.15); }
.livro-card__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.livro-card:hover .livro-card__cover img { transform: scale(1.04); }
.livro-card h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; margin-bottom: 2px; }
.livro-card__author { font-size: .78rem; color: var(--accent); font-weight: 500; letter-spacing: .06em; margin: 0 0 6px; }
.livro-card p { font-size: .87rem; }

/* =============================================
   FERRAMENTAS
   ============================================= */
.ferramentas__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.ferramenta-card { border: 1px solid rgba(140,31,85,.2); display: flex; flex-direction: column; transition: box-shadow var(--dur) var(--ease); }
.ferramenta-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.08); }
.ferramenta-card__type { display: flex; align-items: center; gap: 10px; padding: 14px 20px; background: var(--accent); color: var(--white); font-size: .68rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.ferramenta-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.ferramenta-card h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; margin-bottom: 10px; }
.ferramenta-card p { font-size: .88rem; flex: 1; margin-bottom: 18px; }
.video-player { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #111; margin-bottom: 16px; }
.video-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* =============================================
   PARCERIAS
   ============================================= */
.parcerias__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.parceiro-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.parceiro-card__photo { width: 156px; height: 156px; border-radius: 50%; overflow: hidden; border: 2px solid var(--accent); }
.parceiro-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.parceiro-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.parceiro-card__role { font-size: .73rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin: 0; }
.parceiro-card p { font-size: .88rem; }

/* =============================================
   NAV DROPDOWN
   ============================================= */
/* Leituras link idêntico aos outros itens do menu */
.nav__link--has-dropdown { display: inline; }

/* =============================================
   DROPDOWN — oculto por padrão com display:none
   ============================================= */

/* Leituras link idêntico aos outros */
.nav__item--dropdown { position: relative; }
.nav__link--has-dropdown { display: inline; }

/* DESKTOP — completamente oculto por padrão */
.nav__dropdown {
  display: none;           /* invisível — não ocupa espaço */
  position: fixed;         /* flutua sobre o layout */
  min-width: 250px;
  background: var(--bg);
  border-top: 2px solid var(--accent);
  box-shadow: 0 16px 48px rgba(0,0,0,.15);
  list-style: none;
  padding: 0;
  z-index: 99999;
}

/* Abrir com animação suave */
.nav__dropdown.is-visible {
  display: block;
  animation: dropOpen .22s ease forwards;
}

@keyframes dropOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes dropClose {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-8px); }
}

/* Cabeçalho */
.nav__dropdown-header {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px 10px;
  font-size: .6rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(140,31,85,.15);
  background: rgba(140,31,85,.05);
}

/* Itens */
.nav__dropdown li { list-style: none; }

.nav__dropdown li a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 20px;
  font-size: .68rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); white-space: nowrap;
  border-bottom: 1px solid rgba(140,31,85,.06);
  transition: background .18s ease, color .18s ease, padding-left .18s ease;
}
.nav__dropdown li:last-child a { border-bottom: none; }
.nav__dropdown li a:hover { background: var(--accent); color: var(--white); padding-left: 28px; }
.nav__dropdown li a:hover i { color: var(--white); }
.nav__dropdown li a i { color: var(--accent); width: 16px; text-align: center; flex-shrink: 0; }

/* Rodapé */
.nav__dropdown-footer { border-top: 1px solid rgba(140,31,85,.15); }
.nav__dropdown-footer a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(140,31,85,.05);
  transition: background .18s ease;
}
.nav__dropdown-footer a:hover { background: rgba(140,31,85,.12); }

/* ── MOBILE — controlado por max-height via is-open ── */
@media (max-width: 768px) {
  .nav__item--dropdown { width: 100%; }

  /* Sobrescreve display:none do desktop */
  .nav__dropdown,
  .nav__dropdown.is-visible {
    display: block;
    position: static;
    animation: none;
    box-shadow: none;
    border-top: 1px solid rgba(140,31,85,.15);
    background: rgba(140,31,85,.04);
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height .4s ease;
    pointer-events: none;
    transform: none;
    opacity: 1;
  }

  .nav__item--dropdown.is-open .nav__dropdown {
    max-height: 700px;
    pointer-events: auto;
  }

  .nav__dropdown-header { justify-content: center; }
  .nav__dropdown li a,
  .nav__dropdown-footer a { justify-content: center; }
  .nav__dropdown li a:hover { padding-left: 20px; background: var(--tint); color: var(--accent); }
  .nav__dropdown li a:hover i { color: var(--accent); }
}

/* =============================================
   FADE-IN
   ============================================= */
[data-fade] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-fade].is-visible { opacity: 1; transform: translateY(0); }
[data-fade-delay="1"] { transition-delay: .1s; }
[data-fade-delay="2"] { transition-delay: .2s; }
[data-fade-delay="3"] { transition-delay: .3s; }
[data-fade-delay="4"] { transition-delay: .4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .servicos__grid { grid-template-columns: repeat(2,1fr); }
  .videos__grid   { grid-template-columns: repeat(2,1fr); }
  .leituras__grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 900px) {
  /* Bento A: stack */
  .bento { grid-template-columns: 1fr; grid-template-rows: auto; min-height: auto; }
  .bento__media { grid-column: 1; grid-row: 1; min-height: 360px; }
  .bento__body-1 { grid-column: 1; grid-row: 2; }
  .bento__body-2 { grid-column: 1; grid-row: 3; }

  /* Bento B: stack (image first) */
  .bento-b { grid-template-columns: 1fr; grid-template-rows: auto; min-height: auto; }
  .bento-b__media { grid-column: 1; grid-row: 1; min-height: 360px; }
  .bento-b__top    { grid-column: 1; grid-row: 2; }
  .bento-b__bottom { grid-column: 1; grid-row: 3; border-left: 3px solid var(--accent); }

  /* Approach bento: stack */
  .abordagem-bento { grid-template-columns: 1fr; min-height: auto; }
  .abordagem-bento__photo { min-height: 300px; }
  .abordagem-bento__card:first-child, .abordagem-bento__card:last-child { border: 1px solid rgba(140,31,85,.2); border-left: none; border-right: none; }

  .contato__grid { grid-template-columns: 1fr; }
  .contato__img  { display: none; }
  .reflexoes__grid { grid-template-columns: repeat(2,1fr); }
  .leituras__grid  { grid-template-columns: repeat(2,1fr); }
  .ferramentas__grid { grid-template-columns: repeat(2,1fr); }
  .parcerias__grid { grid-template-columns: repeat(2,1fr); }
  .traj__layout { grid-template-columns: 1fr 2fr; }
  .traj__photo  { display: block; position: static; }
}

@media (max-width: 768px) {
  /* Hero mobile: quadrado ocupa toda a base */
  .hero__panel {
    right: 0; left: 0; bottom: 0; width: 100%;
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    background: rgba(10,10,10,.65);
    padding: clamp(28px,6vw,48px) clamp(24px,5vw,40px) clamp(36px,7vw,56px);
  }
  .nav__burger { display: flex; }
  .nav__menu {
    position: fixed; inset: 0; background: var(--bg);
    flex-direction: column; justify-content: center; align-items: center; gap: 32px;
    transform: translateX(100%); transition: transform .4s var(--ease); z-index: 9000;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__link { color: var(--text); font-size: .9rem; }
  .nav.is-scrolled .nav__link, .nav.is-solid .nav__link { color: var(--text); }
  .nav__cta { border-color: var(--accent); color: var(--accent); }
  .info-strip__inner { gap: 8px 14px; }
}

@media (max-width: 580px) {
  .videos__grid    { grid-template-columns: repeat(2,1fr); }
  .servicos__grid  { grid-template-columns: 1fr; }
  .reflexoes__grid { grid-template-columns: 1fr; }
  .leituras__grid  { grid-template-columns: repeat(2,1fr); }
  .ferramentas__grid { grid-template-columns: 1fr; }
  .parcerias__grid { grid-template-columns: repeat(2,1fr); }
}
