/* ===================================================================
   Janete Guion — Psicoterapeuta Psicanalítica
   HTML + CSS puro · responsivo · estilo editorial / Framer
   =================================================================== */

:root {
  --cream:       #F0EBE1;
  --cream-soft:  #F6F2EA;
  --bordo:       #7A1F2E;
  --bordo-deep:  #5E1622;
  --green:       #3B5E3A;
  --forest:      #2C4A2E;
  --forest-deep: #213A23;
  --ink:         #1A0A06;
  --brown:       #5C4A3A;
  --brown-dark:  #2E2620;

  /* tints / shades derived from the core palette */
  --cream-line:  rgba(92, 74, 58, 0.16);
  --bordo-glow:  rgba(122, 31, 46, 0.7);

  --maxw: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 18px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ring: 0 0 0 3px var(--cream), 0 0 0 5px var(--bordo);

  --ff-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --ff-body: "DM Sans", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* ---------- Global focus-visible (keyboard) ---------- */
:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 6px;
}
.btn:focus-visible { box-shadow: 0 0 0 3px var(--cream), 0 0 0 5px var(--bordo); }
.section--bordo :focus-visible,
.espelho :focus-visible,
.sobre__text :focus-visible,
.cta :focus-visible,
.footer :focus-visible { box-shadow: 0 0 0 3px var(--bordo-deep), 0 0 0 5px var(--cream); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 820px; }

.section { padding-block: clamp(4.5rem, 10vw, 9rem); }
.section--flush { padding: 0; }
.section--cream { background: var(--cream-soft); }
.section--bordo { background: var(--bordo); color: var(--cream); }

/* ---------- Typography primitives ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.76rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bordo);
  margin-bottom: 1.6rem;
}
.eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow--light { color: rgba(240, 235, 225, 0.78); }
.eyebrow--center { display: flex; justify-content: center; text-align: center; }

.section__title {
  font-family: var(--ff-head);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.018em;
  font-size: clamp(2rem, 1.45rem + 2.5vw, 3.3rem);
  text-wrap: balance;
  color: var(--forest-deep);
}
/* dark-panel contexts keep cream headings */
.section--bordo .section__title,
.sobre__text .section__title { color: var(--cream); }
.section__title--center {
  text-align: center;
  margin-inline: auto;
  max-width: 26ch;
}

.lead {
  font-size: clamp(1.12rem, 1rem + 0.65vw, 1.45rem);
  line-height: 1.55;
  color: var(--brown);
  max-width: 56ch;
}
.section--bordo .lead { color: rgba(240, 235, 225, 0.92); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 1.05rem 2rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease), filter .35s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px) scale(1.02); filter: brightness(1.03); }
.btn:active { transform: translateY(0) scale(1); }

/* inline arrow that slides on hover */
.btn__arrow {
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  flex: none;
  transition: transform .4s var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--bordo);
  color: var(--cream);
  box-shadow: 0 10px 30px -12px var(--bordo-glow);
}
.btn--primary:hover { background: var(--bordo-deep); box-shadow: 0 18px 44px -12px rgba(122, 31, 46, 0.78); }

.btn--light {
  background: var(--cream);
  color: var(--bordo);
}
.btn--light:hover { background: #fff; box-shadow: 0 16px 40px -16px rgba(26, 10, 6, 0.5); }

.btn--lg { padding: 1.2rem 2.5rem; font-size: 1.05rem; }

/* botão ativo: brilho varrendo devagar + glow respirando suave */
.btn--glow { overflow: hidden; }
.btn--glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 36%, rgba(255, 255, 255, 0.2) 50%, transparent 64%);
  transform: translateX(-110%);
  animation: btnShine 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btnShine {
  0%        { transform: translateX(-110%); }
  30%, 100% { transform: translateX(110%); }
}
.btn--glow {
  animation: btnBreath 7s ease-in-out infinite;
}
@keyframes btnBreath {
  0%, 100% { box-shadow: 0 10px 30px -12px var(--bordo-glow); }
  50%      { box-shadow: 0 12px 38px -12px rgba(122, 31, 46, 0.85), 0 0 18px -6px rgba(122, 31, 46, 0.35); }
}
/* botão do hero mais delicado */
.hero__actions .btn {
  font-size: 0.9rem;
  padding: 0.95rem 1.7rem;
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  min-height: 80svh;
  position: relative;
}
/* foto de fundo (desktop) — Janete à direita, parede com Ψ à esquerda */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% 30%;
  z-index: 0;
}
.hero__bg.reveal-img { transition-delay: 200ms; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(240,235,225,0.7) 0%, rgba(240,235,225,0.32) 34%, rgba(240,235,225,0) 58%),
    linear-gradient(to top, var(--cream) 0%, rgba(240,235,225,0) 12%);
}
.hero__text {
  padding: 3.2rem clamp(2rem, 5vw, 5rem) 3.6rem clamp(1.25rem, 6vw, 6rem);
  max-width: 660px;
  justify-self: end;
  position: relative;
  z-index: 2;
}
.hero__title {
  font-family: var(--ff-head);
  font-weight: 500;
  font-size: clamp(2.2rem, 1.5rem + 2.7vw, 3.5rem);
  line-height: 1.09;
  letter-spacing: -0.022em;
  margin-bottom: 1.5rem;
  color: var(--forest-deep);
}
.hero__title em { color: var(--bordo); font-style: normal; font-weight: 500; }
.hero__sub {
  font-size: clamp(0.98rem, 0.95rem + 0.32vw, 1.12rem);
  font-weight: 400;
  color: var(--brown);
  max-width: 46ch;
  margin-bottom: 1rem;
}
/* diferencial do parágrafo da psicanálise */
.hero__sub--destaque {
  font-family: var(--ff-head);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.08rem, 1rem + 0.5vw, 1.3rem);
  color: var(--bordo);
  line-height: 1.5;
}
.hero__actions { margin-top: 2rem; }
.hero__info {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.8;
}
/* sequential hero reveal — eyebrow → title → subs → CTA → info */
.hero__text--seq .reveal:nth-child(1) { --reveal-delay:  60ms; }
.hero__text--seq .reveal:nth-child(2) { --reveal-delay: 200ms; }
.hero__text--seq .reveal:nth-child(3) { --reveal-delay: 360ms; }
.hero__text--seq .reveal:nth-child(4) { --reveal-delay: 480ms; }
.hero__text--seq .reveal:nth-child(5) { --reveal-delay: 620ms; }
.hero__text--seq .reveal:nth-child(6) { --reveal-delay: 760ms; }

.hero__media {
  display: none;
  position: relative;
  height: 100%;
  min-height: 60vh;
  padding: 0;
}
/* image wipes in alongside the text sequence */
.hero__media .reveal-img { transition-delay: 220ms; }
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 16%;
  border-radius: 0;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, var(--cream) 0%, rgba(240,235,225,0.55) 16%, rgba(240,235,225,0) 46%),
    linear-gradient(to bottom, rgba(240,235,225,0) 60%, rgba(240,235,225,0.6) 86%, var(--cream) 100%),
    linear-gradient(to top, rgba(240,235,225,0) 90%, var(--cream) 100%);
}

/* cartão flutuante sobre a foto (desktop) — nome + CRP */
.hero__card {
  position: absolute;
  z-index: 2;
  right: clamp(3rem, 13vw, 15rem);
  top: 56%;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.15rem;
  border-radius: 100px;
  background: rgba(246, 242, 234, 0.75);
  backdrop-filter: blur(10px) saturate(1.15);
  -webkit-backdrop-filter: blur(10px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 14px 34px -18px rgba(26, 10, 6, 0.35);
  transition-delay: 900ms;
  animation: cardFloat 5.5s ease-in-out infinite alternate;
}
@keyframes cardFloat {
  from { translate: 0 0; }
  to   { translate: 0 -7px; }
}
.hero__card-dot {
  width: 0.55rem;
  height: 0.55rem;
  flex: none;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(59, 94, 58, 0.18);
}
.hero__card-name {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--bordo);
  line-height: 1;
  white-space: nowrap;
}
.hero__card-crp {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
  white-space: nowrap;
  padding-left: 0.6rem;
  border-left: 1px solid rgba(92, 74, 58, 0.25);
}

/* ===================================================================
   LAYERED BACKGROUNDS — barely-there atmosphere on the light sections
   (one wide, soft, off-centre radial each; never competes with text)
   =================================================================== */
.espelho, .possivel, .faq { position: relative; isolation: isolate; }
.espelho > .container,
.possivel > .container,
.faq > .container { position: relative; z-index: 1; }
.espelho::before,
.possivel::before,
.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.espelho::before {
  background: radial-gradient(58% 46% at 84% 8%, rgba(240, 235, 225, 0.08), transparent 72%);
}
.possivel::before {
  background:
    radial-gradient(50% 52% at 10% 92%, rgba(59, 94, 58, 0.07), transparent 72%),
    radial-gradient(46% 40% at 92% 6%, rgba(122, 31, 46, 0.045), transparent 72%);
}
.faq::before {
  background: radial-gradient(52% 38% at 50% -4%, rgba(122, 31, 46, 0.05), transparent 70%);
}

/* ===================================================================
   ESPELHO — cards grid
   =================================================================== */
/* seção verde: degradê do escuro (topo) pro claro (base), cards sólidos e vivos */
.espelho {
  background: linear-gradient(180deg, var(--forest-deep) 0%, var(--forest) 52%, #4C7050 100%);
  color: var(--cream);
}
.espelho .eyebrow--center { margin-top: 0; color: rgba(240, 235, 225, 0.78); }
.espelho .section__title { color: var(--cream); }
.espelho .card {
  background: linear-gradient(180deg, var(--bordo) 0%, var(--bordo-deep) 100%);
  border: 1px solid rgba(240, 235, 225, 0.22);
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 2px 4px rgba(10, 24, 12, 0.14),
    0 14px 28px -10px rgba(10, 24, 12, 0.35),
    0 36px 70px -24px rgba(10, 24, 12, 0.55);
}
.espelho .card:hover {
  border-color: rgba(240, 235, 225, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 3px 6px rgba(10, 24, 12, 0.18),
    0 20px 40px -12px rgba(10, 24, 12, 0.42),
    0 48px 90px -28px rgba(10, 24, 12, 0.62);
}
.espelho .card::before { background: rgba(240, 235, 225, 0.55); }
.espelho .card__title { color: var(--cream); }
.espelho .card__text { color: rgba(240, 235, 225, 0.85); }
.espelho .card__icon--medal {
  width: 6.4rem;
  height: 6.4rem;
  margin-inline: auto;
  border-color: rgba(240, 235, 225, 0.4);
}
.cards-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  position: relative;
  background: var(--cream-soft);
  border: 1px solid rgba(92, 74, 58, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.6rem 2.2rem;
  overflow: hidden;
  box-shadow: 0 2px 5px -3px rgba(26, 10, 6, 0.1), 0 14px 30px -26px rgba(26, 10, 6, 0.22);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 3px;
  background: var(--bordo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(26, 10, 6, 0.4);
  border-color: rgba(122, 31, 46, 0.4);
}
.card:hover::before { transform: scaleX(1); }
.card__title {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.18;
  margin-bottom: 0.9rem;
  color: var(--bordo);
}
.card__text { color: var(--brown); font-size: 1rem; }

/* ===================================================================
   TWO COLUMN (pense junto / como funciona)
   =================================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.two-col__right > p { margin-bottom: 1.2rem; }

/* ---- Pense Junto — balanced two-column with integrated photo ---- */
.pense__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.pense__title {
  max-width: 16ch;
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}
.pense__content > p { margin-bottom: 1.2rem; }
.pense__content .lead { margin-bottom: 1.4rem; max-width: 50ch; }

.quote {
  margin-top: 2.8rem;
  font-family: var(--ff-head);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.95rem);
  line-height: 1.38;
  letter-spacing: -0.01em;
  padding-left: 1.8rem;
  border-left: 2px solid rgba(240, 235, 225, 0.55);
}

/* ===================================================================
   COMO FUNCIONA — central alternating timeline
   =================================================================== */
.como__intro {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.como__intro .eyebrow { margin-bottom: 1.4rem; }
.como__lead {
  margin: 1.4rem auto 0;
  text-align: center;
  max-width: 44ch;
}

.timeline {
  list-style: none;
  position: relative;
  max-width: 940px;
  margin-inline: auto;
}
/* central vertical line */
.timeline::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  bottom: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(rgba(122,31,46,0), rgba(122,31,46,0.22) 12%, rgba(122,31,46,0.22) 88%, rgba(122,31,46,0));
  z-index: 0;
}
.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: clamp(1.5rem, 3.4vw, 2.6rem);
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}
.timeline__item:last-child { margin-bottom: 0; }

.timeline__node {
  grid-column: 2;
  z-index: 2;
  display: inline-flex;
}
.timeline__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(122, 31, 46, 0.24);
  color: var(--bordo);
  box-shadow: 0 12px 28px -16px rgba(26, 10, 6, 0.45);
  transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}
.timeline__badge .ico { width: 1.55rem; height: 1.55rem; }
.timeline__item:hover .timeline__badge { background: var(--bordo); color: var(--cream); transform: scale(1.07); }

.timeline__card {
  position: relative;
  background: var(--cream-soft);
  border: 1px solid rgba(92, 74, 58, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.7rem, 3vw, 2.2rem);
  box-shadow: 0 2px 5px -3px rgba(26, 10, 6, 0.1), 0 18px 40px -30px rgba(26, 10, 6, 0.3);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.timeline__item:hover .timeline__card {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -34px rgba(26, 10, 6, 0.4);
  border-color: rgba(122, 31, 46, 0.34);
}
.timeline__item:nth-child(odd) .timeline__card { grid-column: 1; text-align: right; }
.timeline__item:nth-child(even) .timeline__card { grid-column: 3; text-align: left; }
/* connector tick from card toward the central node */
.timeline__card::before {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(1.5rem, 3.4vw, 2.6rem);
  height: 1px;
  background: rgba(122, 31, 46, 0.22);
}
.timeline__item:nth-child(odd) .timeline__card::before { right: calc(-1 * clamp(1.5rem, 3.4vw, 2.6rem)); }
.timeline__item:nth-child(even) .timeline__card::before { left: calc(-1 * clamp(1.5rem, 3.4vw, 2.6rem)); }

.timeline__num {
  display: block;
  font-family: var(--ff-head);
  font-weight: 500;
  font-size: clamp(1.7rem, 1.35rem + 1vw, 2.3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bordo);
  opacity: 0.42;
  margin-bottom: 0.55rem;
}
.timeline__title {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.15;
  margin-bottom: 0.55rem;
  color: var(--forest-deep);
}
.timeline__text { color: var(--brown); }

@media (max-width: 760px) {
  .timeline { max-width: 540px; }
  .timeline::before { left: 1.65rem; transform: none; }
  .timeline__item {
    grid-template-columns: auto 1fr;
    column-gap: 1.4rem;
    align-items: start;
  }
  .timeline__node { grid-column: 1; align-self: start; }
  .timeline__badge { width: 3.3rem; height: 3.3rem; }
  .timeline__item:nth-child(odd) .timeline__card,
  .timeline__item:nth-child(even) .timeline__card {
    grid-column: 2;
    text-align: left;
  }
  .timeline__card::before { display: none; }
}

/* ===================================================================
   SOBRE — full bleed split
   =================================================================== */
.sobre { display: grid; grid-template-columns: 1fr 1fr; }
.sobre__media { position: relative; min-height: 70vh; overflow: hidden; }
.sobre__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.2s var(--ease);
}
.sobre:hover .sobre__media img { transform: scale(1); }
.sobre__text {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: var(--cream);
  display: flex;
  align-items: center;
  padding: clamp(3.5rem, 7vw, 7rem) clamp(1.5rem, 5vw, 5rem);
}
.sobre__inner { max-width: 620px; }
.sobre__text .eyebrow { color: rgba(240, 235, 225, 0.66); }
.sobre__text .lead { color: var(--cream); margin-bottom: 1.5rem; }
.sobre__text p {
  color: rgba(240, 235, 225, 0.8);
  margin-bottom: 1.35rem;
  line-height: 1.78;
}
/* moments of emphasis inside the dark panel */
.sobre__text em {
  font-style: italic;
  color: var(--cream);
  font-weight: 500;
}
.sobre__text strong {
  font-weight: 500;
  color: var(--cream);
  background: linear-gradient(transparent 62%, rgba(122, 31, 46, 0.55) 62%);
  padding: 0 0.06em;
}
/* pull-quote — one promoted sentence */
.sobre__pull {
  font-family: var(--ff-head);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 2rem 0 2.2rem;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(240, 235, 225, 0.5);
}
.sobre__subhead {
  font-family: var(--ff-head);
  font-style: italic;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--cream);
  margin: 2.4rem 0 1.2rem;
}
.sobre__crp {
  margin-top: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 235, 225, 0.55) !important;
}

/* ===================================================================
   NOSSOS ENCONTROS
   =================================================================== */
.encontros__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.encontro {
  border-radius: var(--radius-lg);
  padding: clamp(2.6rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.encontro--light:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -34px rgba(26,10,6,0.4); }
.encontro--bordo:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -28px var(--bordo-glow); }
.encontro--light {
  background: var(--cream-soft);
  border: 1px solid rgba(92, 74, 58, 0.2);
  box-shadow: 0 2px 6px -3px rgba(26, 10, 6, 0.1), 0 16px 34px -28px rgba(26, 10, 6, 0.22);
}
.encontro--bordo { background: var(--bordo); color: var(--cream); }
.encontro__title {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: clamp(2rem, 1.5rem + 1.6vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 1.3rem;
}
.encontro--light .encontro__title { color: var(--bordo); }
.encontro__text {
  margin-bottom: 1.8rem;
  font-size: 1.02rem;
}
.encontro--light .encontro__text { color: var(--brown); }
.encontro--bordo .encontro__text { color: rgba(240, 235, 225, 0.82); }
/* lead line — first sentence, larger and higher contrast */
.encontro__lead {
  display: block;
  font-family: var(--ff-head);
  font-weight: 500;
  font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.45rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}
.encontro--light .encontro__lead { color: var(--ink); }
.encontro--bordo .encontro__lead { color: var(--cream); }
.encontro .btn { align-self: flex-start; }

/* ===================================================================
   POSSÍVEL DESENVOLVER — alternating cards
   =================================================================== */
.possivel__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pcard {
  border-radius: var(--radius-lg);
  padding: 2.7rem 2.2rem;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.pcard--light:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -34px rgba(26,10,6,0.4); }
.pcard--dark:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(26,10,6,0.6); }
.pcard--light {
  background: var(--cream);
  border: 1px solid rgba(92, 74, 58, 0.19);
  box-shadow: 0 2px 5px -3px rgba(26, 10, 6, 0.1), 0 14px 30px -26px rgba(26, 10, 6, 0.22);
}
.pcard--dark { background: linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%); color: var(--cream); }
.pcard__num {
  display: block;
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 1.8rem + 1.2vw, 3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0.32;
}
.pcard--light .pcard__num { color: var(--bordo); }
.pcard__title {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 1rem 0 0.7rem;
}
.pcard--light .pcard__title { color: var(--ink); }
.pcard--light .pcard__text { color: var(--brown); }
.pcard--dark .pcard__text { color: rgba(240, 235, 225, 0.82); }

/* ===================================================================
   CTA CENTRAL
   =================================================================== */
.cta {
  position: relative;
  background: var(--bordo-deep) url("assets/cta-bg.webp") center / cover no-repeat;
  color: var(--cream);
  padding-block: clamp(5.5rem, 12vw, 10rem);
  text-align: center;
  overflow: hidden;
}
.cta__inner {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* oversized decorative quotation mark */
.cta__mark {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(4.5rem, 3rem + 8vw, 8rem);
  line-height: 0.6;
  height: 0.5em;
  color: rgba(240, 235, 225, 0.16);
  margin-bottom: 0.6rem;
  user-select: none;
}
/* accent pill echoing the hero badge */
.cta__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 235, 225, 0.92);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  border: 1px solid rgba(240, 235, 225, 0.26);
  background: rgba(240, 235, 225, 0.06);
  margin-bottom: 1.8rem;
}
.cta__pill-dot {
  width: 0.5rem;
  height: 0.5rem;
  flex: none;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(59, 94, 58, 0.28);
}
.cta__title {
  font-family: var(--ff-head);
  font-weight: 500;
  font-size: clamp(2.1rem, 1.4rem + 3.2vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 1.6rem;
}
/* thin horizontal rule under the heading */
.cta__rule {
  width: 3.5rem;
  height: 1px;
  margin: 0 auto 1.9rem;
  background: linear-gradient(90deg, transparent, rgba(240, 235, 225, 0.5), transparent);
}
.cta__text { color: rgba(240, 235, 225, 0.85); font-size: 1.1rem; }
.cta__inner .btn { margin-top: 2.4rem; }
.cta__info {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(240, 235, 225, 0.6);
}

/* ===================================================================
   FAQ
   =================================================================== */
.faq__list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq__item {
  background: var(--cream-soft);
  border: 1px solid rgba(122, 31, 46, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 5px -3px rgba(26, 10, 6, 0.1), 0 16px 34px -30px rgba(26, 10, 6, 0.5);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.faq__item:hover {
  transform: translateY(-3px);
  border-color: rgba(122, 31, 46, 0.35);
  box-shadow: 0 24px 48px -28px rgba(26, 10, 6, 0.42);
}
/* quadrante da pergunta: bordô clarinho fechado, escuro quando aberto */
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--ff-head);
  font-weight: 500;
  font-size: clamp(1.12rem, 1rem + 0.55vw, 1.4rem);
  color: var(--cream);
  background: #9B5560;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.3rem clamp(1.3rem, 3vw, 2rem);
  transition: background .3s var(--ease);
}
.faq__item summary:hover { background: var(--bordo); }
.faq__item[open] summary { background: var(--bordo-deep); }
.faq__item summary:focus-visible { box-shadow: inset 0 0 0 3px var(--bordo-deep), inset 0 0 0 5px var(--cream); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  flex: none;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(240, 235, 225, 0.16);
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 1.55rem;
  color: var(--cream);
  transition: transform .35s var(--ease), background .3s var(--ease);
  line-height: 0;
}
.faq__item summary:hover::after { background: rgba(240, 235, 225, 0.26); }
.faq__item[open] summary::after { transform: rotate(45deg); background: rgba(240, 235, 225, 0.26); }
/* risca dividindo o quadrante da pergunta do da resposta */
.faq__item[open] summary { border-bottom: 2px solid rgba(240, 235, 225, 0.35); }
/* quadrante da resposta: fundo bege */
.faq__item p {
  margin: 0;
  padding: 1.3rem clamp(1.3rem, 3vw, 2rem) 1.5rem;
  background: var(--cream-soft);
  color: var(--brown);
  max-width: none;
  animation: fadeIn .4s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .faq__item p { animation: none !important; }
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding-block: 1.4rem;
  text-align: center;
}
.footer__copy {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: rgba(240, 235, 225, 0.55);
}

/* ===================================================================
   REVEAL ANIMATION
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
  .btn--glow { animation: none !important; }
  .btn--glow::before { animation: none !important; }
  .hero__card { animation: none !important; }
  .sobre__media img { transform: none !important; transition: none !important; }
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 980px) {
  .cards-grid, .possivel__grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 860px) {
  /* Hero stacks */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  /* texto todo dentro da foto: parede com Ψ em cima, Janete embaixo */
  .hero__bg, .hero::before { display: none; }
  /* tag flutuante delicada: menor, na lateral direita, mais abaixo */
  .hero__card {
    left: auto;
    right: 0.9rem;
    top: auto;
    bottom: 4%;
    width: fit-content;
    gap: 0.4rem;
    padding: 0.32rem 0.7rem;
  }
  .hero__card-dot { width: 0.4rem; height: 0.4rem; box-shadow: 0 0 0 2px rgba(59, 94, 58, 0.16); }
  .hero__card-name { font-size: 0.76rem; }
  .hero__card-crp { font-size: 0.46rem; padding-left: 0.4rem; }
  .hero {
    display: block;
    min-height: 0;
    aspect-ratio: 939 / 2000;
    max-height: 210vw;
  }
  .hero__media {
    display: block;
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 0;
    z-index: 0;
  }
  .hero__media img { height: 100%; object-position: 50% 100%; }
  .hero__media::after {
    background: linear-gradient(to bottom, rgba(240,235,225,0.6) 0%, rgba(240,235,225,0.28) 32%, rgba(240,235,225,0) 55%);
  }
  .hero__text {
    position: relative;
    z-index: 2;
    padding: 1.4rem var(--gutter) 0;
    justify-self: stretch;
    max-width: 640px;
    margin-inline: auto;
    text-align: center;
  }
  /* título flui natural, sem quebra forçada, centralizado */
  .hero__title br { display: none; }
  .hero__title em { display: block; }
  .hero__title { text-wrap: balance; }
  .hero__text .eyebrow::before { display: none; }
  /* hierarquia de landing page: título protagonista, apoio leve */
  .hero__text .eyebrow { font-size: 0.58rem; letter-spacing: 0.2em; margin-bottom: 0.85rem; opacity: 0.9; }
  .hero__title {
    font-size: clamp(2.05rem, 8.4vw, 2.45rem);
    font-weight: 600;
    line-height: 1.14;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
  }
  .hero__title em { font-weight: 600; }
  .hero__sub { font-size: 0.86rem; line-height: 1.62; max-width: none; margin-bottom: 0.7rem; opacity: 0.92; }
  .hero__sub--destaque { font-size: 0.97rem; opacity: 1; }
  .hero__actions { margin-top: 1.25rem; }
  .hero__info { font-size: 0.56rem; margin-top: 0.95rem; letter-spacing: 0.06em; opacity: 0.7; }

  /* Sobre & encontros stack */
  .sobre { grid-template-columns: 1fr; }
  .sobre__media { min-height: 60vh; }
  .encontros__grid { grid-template-columns: 1fr; }

  /* Pense Junto stacks: texto → divã fechando a seção */
  .pense__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .pense__title { max-width: 22ch; }
  .pense__media img { max-width: 440px; }
}

/* botão do hero em uma linha no mobile (mesma fonte, só menos padding lateral) */
@media (max-width: 430px) {
  .hero__actions .btn { padding-inline: 1.2rem; }
}

/* telas bem estreitas: aperta um pouco pra manter o botão em uma linha */
@media (max-width: 380px) {
  .hero__title { font-size: 1.82rem; }
  .hero__sub { font-size: 0.78rem; }
  .hero__sub--destaque { font-size: 0.86rem; }
  .hero__actions .btn { font-size: 0.84rem; padding: 0.95rem 0.9rem; }
  .hero__info { font-size: 0.52rem; }
}

@media (max-width: 600px) {
  .cards-grid, .possivel__grid { grid-template-columns: 1fr; }
  .section__title--center { max-width: 100%; }
  .btn { width: 100%; }
  .encontro .btn { width: 100%; }
  .hero__actions .btn { width: auto; } /* delicado, sem ocupar a largura toda */
  .cta .btn--lg { padding-inline: 1.1rem; font-size: 0.98rem; } /* uma linha no mobile */
  .cta { background-image: url("assets/cta-bg-mobile.webp"); } /* versão vertical */
  .hero__actions, .cta__inner, .encontro { width: 100%; }
}

/* ===================================================================
   MICRO-ELEMENTS — icons, checklists, badges
   =================================================================== */

/* ---- Base line icon ---- */
.ico {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

/* ---- ESPELHO: icon badge above title ---- */
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  background: rgba(122, 31, 46, 0.08);
  border: 1px solid rgba(122, 31, 46, 0.18);
  color: var(--bordo);
  transition: background .45s var(--ease), color .45s var(--ease);
}
.card__icon .ico { width: 1.5rem; height: 1.5rem; }
.card:hover .card__icon { background: var(--bordo); color: var(--cream); }

/* medalhões ilustrados (imagens da série em clay) */
.card__icon--medal {
  width: 5.6rem;
  height: 5.6rem;
  background: none;
  border: 1px solid rgba(122, 31, 46, 0.16);
  overflow: hidden;
  box-shadow: 0 3px 8px -2px rgba(26, 10, 6, 0.18), 0 14px 28px -14px rgba(26, 10, 6, 0.3);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.card__icon--medal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .6s var(--ease);
}
.card:hover .card__icon--medal { background: none; transform: translateY(-2px); box-shadow: 0 6px 14px -4px rgba(26, 10, 6, 0.22), 0 22px 40px -18px rgba(26, 10, 6, 0.38); }
.card:hover .card__icon--medal img { transform: scale(1.08); }

/* ---- POSSÍVEL: number + icon row ---- */
.pcard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.pcard__ico {
  width: 1.7rem;
  height: 1.7rem;
  opacity: 0.7;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.pcard--light .pcard__ico { color: var(--bordo); }
.pcard--dark .pcard__ico { color: var(--cream); }
.pcard:hover .pcard__ico { opacity: 1; transform: translateY(-2px); }

/* ---- SOBRE: signature ---- */
.sobre__sign {
  font-family: var(--ff-head);
  font-style: italic;
  font-weight: 500;
  font-size: 2rem;
  color: var(--cream) !important;
  margin: 2rem 0 0.2rem;
  opacity: 0.92;
}

/* ---- ENCONTROS: benefit checklist + badge ---- */
.encontro { position: relative; }
.encontro__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: auto 0 2.2rem;
  padding-top: 1.9rem;
  border-top: 1px solid currentColor;
}
.encontro--light .encontro__list { border-top-color: rgba(92, 74, 58, 0.16); }
.encontro--bordo .encontro__list { border-top-color: rgba(240, 235, 225, 0.18); }
.encontro__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1.02rem;
  line-height: 1.5;
}
.encontro--light .encontro__list li { color: var(--brown); }
.encontro--bordo .encontro__list li { color: rgba(240, 235, 225, 0.92); }
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  margin-top: 0.05rem;
  flex: none;
  border-radius: 50%;
}
.check .ico { width: 1.02rem; height: 1.02rem; stroke-width: 2.2; }
.encontro--light .check { background: rgba(59, 94, 58, 0.16); color: var(--green); }
.encontro--bordo .check { background: rgba(240, 235, 225, 0.2); color: var(--cream); }
.encontro__badge {
  position: absolute;
  top: clamp(1.6rem, 3vw, 2.4rem);
  right: clamp(1.6rem, 3vw, 2.4rem);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.48rem 1rem;
  border-radius: 100px;
  background: var(--cream);
  color: var(--bordo);
  font-weight: 600;
  box-shadow: 0 10px 24px -14px rgba(26, 10, 6, 0.55);
}


/* ===================================================================
   FRAMER-STYLE ELEMENTS & INTERACTIONS
   =================================================================== */

/* ---- Scroll progress bar ---- */
.scrollbar {
  position: fixed;
  top: 0; left: 0;
  z-index: 9999;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--bordo), var(--green));
  will-change: transform;
}

/* ---- Film grain texture overlay ---- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Image reveal (wipe) ---- */
.reveal-img {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  transition: clip-path 1.1s var(--ease), opacity 1.1s var(--ease);
}
.reveal-img.is-visible { clip-path: inset(0 0 0 0); opacity: 1; }

/* ---- Marquee band ---- */
.marquee {
  overflow: hidden;
  background: var(--cream-soft);
  border-top: 1px solid var(--cream-line);
  border-bottom: 1px solid var(--cream-line);
  padding-block: 0.6rem;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 1.7rem;
  animation: marquee 34s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: clamp(0.95rem, 0.85rem + 0.5vw, 1.3rem);
  color: var(--bordo);
  letter-spacing: -0.01em;
}
.marquee__dot {
  font-style: normal !important;
  color: var(--green) !important;
  font-size: 1.1em !important;
  line-height: 0;
  opacity: 0.8;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- CTA centred tonal glow (clean edges, no muddy blend) ---- */
.cta { position: relative; overflow: hidden; }
.cta__inner { position: relative; z-index: 1; }
.cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(115vw, 1100px);
  aspect-ratio: 1;
  z-index: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(122, 31, 46, 0.55) 0%, rgba(122, 31, 46, 0) 55%),
    radial-gradient(circle, rgba(240, 235, 225, 0.07) 0%, rgba(240, 235, 225, 0) 42%);
  filter: blur(40px);
  animation: ctaGlow 12s ease-in-out infinite alternate;
}
@keyframes ctaGlow {
  from { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}


/* ---- Floating WhatsApp button ---- */
.wfab {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 9998;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 16px 34px -12px rgba(44, 74, 46, 0.8);
  opacity: 0;
  transform: translateY(26px) scale(0.6);
  pointer-events: none;
  transition: opacity .45s var(--ease), transform .45s var(--ease), background .3s var(--ease);
}
.wfab svg { width: 30px; height: 30px; }
.wfab.is-shown { opacity: 1; transform: none; pointer-events: auto; }
.wfab:hover { background: var(--forest); transform: translateY(-3px) scale(1.06); }
.wfab.is-shown::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(59, 94, 58, 0.5);
  animation: wpulse 2.6s ease-out infinite;
}
@keyframes wpulse { to { box-shadow: 0 0 0 18px rgba(59, 94, 58, 0); } }

/* ---- Reduced motion: calm everything ---- */
@media (prefers-reduced-motion: reduce) {
  .reveal-img { clip-path: none !important; opacity: 1 !important; transition: none !important; }
  .marquee__track { animation: none !important; }
  .cta__glow { animation: none !important; }
  .wfab { transition: opacity .3s linear !important; }
  .wfab.is-shown::after { animation: none !important; }
}

/* ===================================================================
   FOTOS SIMBÓLICAS (placeholders — trocar pelas fotos reais)
   =================================================================== */

/* Pense Junto — divã flutuante (arte com fundo transparente) */
.pense__media {
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
.pense__media img {
  width: 100%;
  max-width: 620px;
  margin-inline: auto;
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.35));
}

/* Sobre — foto da equoterapia após o pull-quote */
.sobre__photo {
  margin: 2.2rem 0 2.4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(240, 235, 225, 0.18);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.5);
}
.sobre__photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* Encontros — mini-foto no topo dos cards */
.encontro__media {
  margin: calc(clamp(2.6rem, 4vw, 4rem) * -1);
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.encontro__media img {
  width: 100%;
  height: clamp(160px, 22vw, 210px);
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.encontro:hover .encontro__media img { transform: scale(1.04); }
.encontro__badge { z-index: 2; }

/* Faixa de foto antes do CTA */
.photoband {
  position: relative;
  height: clamp(260px, 44vh, 460px);
  overflow: hidden;
}
.photoband img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photoband::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, var(--cream) 0%, rgba(240,235,225,0) 18%),
    linear-gradient(to top, var(--forest-deep) 0%, rgba(33,58,35,0) 24%);
}

@media (prefers-reduced-motion: reduce) {
  .encontro__media img { transition: none !important; }
}
