
:root {
  --dark: #1F1612;
  --dark-2: #2F2520;
  --cream: #F2EDE3;
  --cream-2: #E8E0D2;
  --clay: #B07A4F;
  --taupe: #8B6F5C;
  --muted: #5A4A40;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}
.display { font-family: 'Fraunces', serif; font-weight: 400; }
.eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 500;
}
.eyebrow.on-dark { color: var(--cream-2); opacity: 0.7; }

/* ---------- HERO ---------- */
.hero {
  height: 100vh;
  min-height: 760px;
  position: relative;
  display: grid;
  grid-template-rows: 1fr 1fr;
  overflow: hidden;
}
.hero__top {
  background: var(--cream);
  position: relative;
  padding: 3rem 2rem 0;
}
.hero__bottom {
  background: var(--dark);
  position: relative;
  padding: 0 2rem 3rem;
}
.hero__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(10rem, 28vw, 26rem);
  letter-spacing: 0.02em;
  line-height: 0.85;
  z-index: 10;
  mix-blend-mode: difference;
  color: var(--cream);
  pointer-events: none;
  user-select: none;
}
.hero__meta-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--dark);
  max-width: 1400px;
  margin: 0 auto;
}
.hero__brand {
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
}
.hero__nav { font-size: 0.8rem; letter-spacing: 0.1em; text-align: right; }
.hero__bottom-content {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: var(--cream);
  max-width: 1400px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.hero__subtitle {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--cream-2);
  max-width: 340px;
  line-height: 1.4;
}
.hero__details {
  text-align: right;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.hero__details strong {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.hero__line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--clay);
  opacity: 0.4;
  z-index: 5;
}
.hero__dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
  z-index: 6;
}

/* ---------- NARRATIVE ---------- */
.narrative {
  padding: 8rem 2rem 6rem;
  background: var(--cream);
}
.narrative__inner {
  max-width: 760px;
  margin: 0 auto;
}
.narrative .eyebrow { margin-bottom: 2.5rem; }
.narrative h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 3rem;
  color: var(--dark);
}
.narrative h2 em {
  font-style: italic;
  color: var(--clay);
  font-weight: 400;
}
.narrative p {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 1.6rem;
  color: var(--muted);
  max-width: 640px;
}
.narrative p:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  font-weight: 300;
  float: left;
  line-height: 0.85;
  margin: 0.5rem 0.8rem 0 -0.2rem;
  color: var(--dark);
}
.narrative .close-line {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--dark);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-2);
  max-width: 600px;
}

/* ---------- IMAGE BAND ---------- */
.image-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 460px;
  gap: 0;
}
.image-band__half {
  position: relative;
  overflow: hidden;
}
.image-band__half--dark {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-band__half--light {
  background: linear-gradient(135deg, #D9CFB8 0%, #B5A688 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- HOSTS ---------- */
.hosts {
  padding: 8rem 2rem;
  background: var(--cream);
}
.hosts__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hosts__text .eyebrow { margin-bottom: 2rem; }
.hosts__text h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--dark);
}
.hosts__text p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.hosts__text p strong {
  color: var(--dark);
  font-weight: 500;
}
.hosts__image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  aspect-ratio: 1.1 / 1;
}
.hosts__image {
  background: var(--cream-2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
  text-align: center;
  padding: 1rem;
  font-style: italic;
}
.hosts__image:nth-child(2) {
  margin-top: 3rem;
}

/* ---------- PROGRAM ---------- */
.program {
  padding: 8rem 2rem;
  background: var(--dark);
  color: var(--cream);
}
.program__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.program__header {
  text-align: center;
  margin-bottom: 5rem;
}
.program__header .eyebrow { margin-bottom: 1.5rem; }
.program__header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: var(--cream);
}
.program__header h2 em {
  font-style: italic;
  color: var(--clay);
}
.program__days {
  display: grid;
  gap: 2rem;
}
.program__day {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(242, 237, 227, 0.15);
}
.program__day:last-child { border-bottom: 1px solid rgba(242, 237, 227, 0.15); }
.program__day-label {
  font-family: 'Fraunces', serif;
}
.program__day-num {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-2);
  opacity: 0.6;
  margin-bottom: 0.4rem;
}
.program__day-theme {
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--clay);
}
.program__sessions {
  display: grid;
  gap: 1.2rem;
}
.program__session {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(242, 237, 227, 0.08);
}
.program__session:last-child { border-bottom: none; }
.program__time {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream-2);
  letter-spacing: 0.05em;
}
.program__activity {
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.4;
}
.program__facilitator {
  display: block;
  font-size: 0.85rem;
  color: var(--taupe);
  margin-top: 0.2rem;
  letter-spacing: 0.03em;
}
.program__note {
  display: block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--clay);
  margin-top: 0.3rem;
  opacity: 0.85;
}

/* ---------- FACILITATORS ---------- */
.team {
  padding: 8rem 2rem;
  background: var(--cream);
}
.team__inner { max-width: 1200px; margin: 0 auto; }
.team__header { text-align: center; margin-bottom: 5rem; }
.team__header .eyebrow { margin-bottom: 1.5rem; }
.team__header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 3.2rem);
  color: var(--dark);
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
}
.team__member {
  display: flex;
  flex-direction: column;
}
.team__photo {
  aspect-ratio: 1 / 1.15;
  background: var(--cream-2);
  border-radius: 4px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
  font-style: italic;
  text-align: center;
  padding: 1rem;
}
.team__name {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.team__role {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1rem;
  font-weight: 500;
}
.team__bio {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ---------- LOCATION ---------- */
.location {
  padding: 8rem 2rem;
  background: var(--cream-2);
}
.location__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.location__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: end;
}
.location__header .eyebrow { margin-bottom: 1.5rem; }
.location__header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--dark);
}
.location__map-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}
.location__map-link:hover { opacity: 0.65; }
.location__header p {
  font-size: 1.05rem;
  color: var(--muted);
}
.location__gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  height: 480px;
}
.location__main, .location__side-top, .location__side-bot {
  background: var(--taupe);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-style: italic;
  text-align: center;
  padding: 1rem;
}
.location__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

/* ---------- FOR YOU ---------- */
.for-you {
  padding: 8rem 2rem;
  background: var(--cream);
}
.for-you__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.for-you .eyebrow { margin-bottom: 2rem; }
.for-you h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 4rem;
  color: var(--dark);
}
.for-you ul {
  list-style: none;
  text-align: left;
  display: grid;
  gap: 1.5rem;
}
.for-you li {
  font-size: 1.1rem;
  color: var(--muted);
  padding-left: 2.5rem;
  position: relative;
  line-height: 1.55;
}
.for-you li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 1.4rem;
  height: 1px;
  background: var(--clay);
}


/* ---------- PRICING ---------- */
.pricing {
  padding: 8rem 2rem;
  background: var(--dark);
  color: var(--cream);
}
.pricing__inner { max-width: 1100px; margin: 0 auto; }
.pricing__header { text-align: center; margin-bottom: 5rem; }
.pricing__header .eyebrow { margin-bottom: 1.5rem; }
.pricing__header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--cream);
}
.pricing__matrix {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  border: 1px solid rgba(242, 237, 227, 0.15);
  margin-bottom: 4rem;
  overflow: hidden;
}
.pmx__corner,
.pmx__col-head,
.pmx__row-head,
.pmx__cell {
  padding: 1.8rem;
  border-right: 1px solid rgba(242, 237, 227, 0.1);
  border-bottom: 1px solid rgba(242, 237, 227, 0.1);
}
.pmx__col-head:last-child,
.pmx__cell:last-child { border-right: none; }
.pmx__corner {
  display: flex;
  align-items: flex-end;
  background: rgba(242, 237, 227, 0.02);
}
.pmx__corner-hint {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--taupe);
  line-height: 1.3;
}
.pmx__col-head {
  text-align: center;
  background: rgba(242, 237, 227, 0.03);
}
.pmx__col-title {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.pmx__col-sub {
  font-size: 0.75rem;
  color: var(--cream-2);
  opacity: 0.6;
  letter-spacing: 0.02em;
}
.pmx__row-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(242, 237, 227, 0.03);
}
.pmx__row-title {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.pmx__row-sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--cream-2);
  opacity: 0.7;
}
.pmx__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 130px;
}
.pmx__cell--feature {
  background: rgba(176, 122, 79, 0.08);
}
/* Linha encerrada (Early Bird, depois de 1 de Agosto). Fica à vista de
   propósito: prova que os prazos aqui são reais — o que dá crédito ao
   prazo seguinte (15 de Setembro / esgotar). */
.pmx__row-head--closed .pmx__row-title { color: var(--taupe); }
.pmx__row-head--closed .pmx__row-sub   { text-decoration: line-through; }
.pmx__row-head--closed,
.pmx__cell--closed {
  background: rgba(0, 0, 0, 0.28);
  opacity: .28;
  border-bottom: 1px solid rgba(242, 237, 227, 1)
}
.pmx__cell--closed .pmx__price {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.pmx__cell-tag {
  position: absolute;
  top: 0.9rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
}
.pmx__price {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
.pmx__price span { font-size: 1.3rem; vertical-align: top; margin-right: 0.1rem; opacity: 0.7; }
.pricing__fineprint {
  font-size: 0.8rem !important;
  opacity: 0.55;
  max-width: 600px;
  margin: 1.5rem auto 0 !important;
  line-height: 1.5;
}
.pricing__details {
  text-align: center;
  border-top: 1px solid rgba(242, 237, 227, 0.15);
  padding-top: 3rem;
}
.pricing__details p {
  color: var(--cream-2);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}
.pricing__details strong { color: var(--cream); font-weight: 500; }

/* ---------- VALUE ---------- */
.value {
  padding: 8rem 2rem;
  background: var(--cream-2);
}
.value__inner {
  max-width: 760px;
  margin: 0 auto;
}
.value__header { text-align: center; margin-bottom: 4rem; }
.value__header .eyebrow { margin-bottom: 1.5rem; }
.value__header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 2.5rem;
  color: var(--dark);
}
.value__items {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
}
.value__item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding-bottom: 0.8rem;
  border-bottom: 1px dotted var(--taupe);
}
.value__item-name { color: var(--muted); font-size: 1rem; }
.value__item-price {
  font-family: 'Fraunces', serif;
  color: var(--dark);
  font-size: 1rem;
  font-weight: 400;
}
.value__total {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--dark);
}
.value__total-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--dark);
}
.value__total-price {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  color: var(--clay);
}
.value__note {
  text-align: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
  margin-top: 2rem;
}

/* ---------- CTA ---------- */
.cta {
  padding: 8rem 2rem;
  background: var(--cream);
  text-align: center;
}
.cta__inner { max-width: 700px; margin: 0 auto; }
.cta__eyebrow { margin-bottom: 1.5rem; }
.cta h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--dark);
}
.cta h2 em { font-style: italic; color: var(--clay); }
.cta p { font-size: 1.05rem; color: var(--muted); margin-bottom: 3rem; }
.cta__button {
  display: inline-block;
  background: var(--dark);
  color: var(--cream);
  padding: 1.2rem 3rem;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s;
}
.cta__button:hover { background: var(--clay); }
.cta__urgency {
  margin-top: 2.5rem;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--clay);
  font-size: 0.95rem;
}

/* ---------- INLINE CTA BANDS ---------- */
.cta-band {
  text-align: center;
  padding: 4.5rem 2rem;
}
.cta-band--light { background: var(--cream); }
.cta-band--dark { background: var(--dark); }
.cta-band__line {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.3;
  max-width: 620px;
  margin: 0 auto 2rem;
}
.cta-band--light .cta-band__line { color: var(--dark); }
.cta-band--dark .cta-band__line { color: var(--cream); }
.cta-band--light .cta-band__line em { color: var(--clay); font-style: italic; }
.cta-band--dark .cta-band__line em { color: var(--clay); font-style: italic; }
.cta-band__btn {
  display: inline-block;
  padding: 1.1rem 2.8rem;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
  border: 1px solid;
}
.cta-band--light .cta-band__btn {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}
.cta-band--light .cta-band__btn:hover { background: var(--clay); border-color: var(--clay); }
.cta-band--dark .cta-band__btn {
  background: transparent;
  color: var(--cream);
  border-color: var(--clay);
}
.cta-band--dark .cta-band__btn:hover { background: var(--clay); }
.cta-band__hint {
  display: block;
  margin-top: 1.3rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  opacity: 0.6;
}
.cta-band--light .cta-band__hint { color: var(--muted); }
.cta-band--dark .cta-band__hint { color: var(--cream-2); }

/* ---------- TESTEMUNHOS ---------- */
.voices {
  padding: 8rem 2rem;
  background: var(--cream);
}
.voices__inner { max-width: 1000px; margin: 0 auto; }
.voices__header { text-align: center; margin-bottom: 5rem; }
.voices__header .eyebrow { margin-bottom: 1.5rem; }
.voices__header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--dark);
}
.voices__header p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--muted);
  margin-top: 1rem;
}
.voices__lead {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}
.voices__lead blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.3;
  color: var(--dark);
}
.voices__lead blockquote::before { content: '“'; color: var(--clay); }
.voices__lead blockquote::after { content: '”'; color: var(--clay); }
.voices__lead cite {
  display: block;
  margin-top: 1.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 500;
}
.voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  border-top: 1px solid var(--cream-2);
  padding-top: 4rem;
}
.voices__quote blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--dark);
  margin-bottom: 1rem;
}
.voices__quote cite {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 500;
}
@media (max-width: 800px) {
  .voices { padding: 5rem 1.5rem; }
  .voices__grid { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 3rem; }
}

/* ---------- INTERESSE (sem compromisso) ---------- */
.interest {
  padding: 6rem 2rem;
  background: var(--cream-2);
}
.interest__inner { max-width: 620px; margin: 0 auto; text-align: center; }
.interest .eyebrow { margin-bottom: 1.5rem; }
.interest h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1.2rem;
}
.interest h2 em { font-style: italic; color: var(--clay); }
.interest p { font-size: 1rem; color: var(--muted); margin-bottom: 2.5rem; }
.interest-form { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; text-align: left; }
.interest-form input[type="text"], .interest-form input[type="email"], .interest-form input[type="tel"] {
  width: 100%; padding: 0.85rem 1rem; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem;
  color: var(--dark); background: #FBF8F2; border: 1px solid var(--taupe); border-radius: 2px; font-weight: 300; transition: border-color 0.2s;
}
.interest-form input:focus { outline: none; border-color: var(--clay); }
.interest-form button {
  border: none; cursor: pointer; background: var(--dark); color: var(--cream);
  padding: 0.85rem 1.8rem; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; transition: background 0.3s; white-space: nowrap;
}
.interest-form button:hover { background: var(--clay); }
.interest-form .hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.interest__hint { margin-top: 1.3rem; font-size: 0.8rem; color: var(--muted); opacity: 0.75; margin-bottom: 0 !important; }
@media (max-width: 700px) { .interest-form { grid-template-columns: 1fr; } .interest-form button { width: 100%; } }

/* ---------- FAQ ---------- */
.faq {
  padding: 8rem 2rem;
  background: var(--dark);
  color: var(--cream);
}
.faq__inner { max-width: 760px; margin: 0 auto; }
.faq__header { text-align: center; margin-bottom: 4rem; }
.faq__header .eyebrow { margin-bottom: 1.5rem; }
.faq__header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
}
.faq__item {
  border-bottom: 1px solid rgba(242, 237, 227, 0.12);
  padding: 1.8rem 0;
}
.faq__q {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.faq__a {
  font-size: 0.95rem;
  color: var(--cream-2);
  opacity: 0.85;
  line-height: 1.7;
}

.faq__item:last-of-type {
  border-bottom: 1px solid rgba(242, 237, 227, 0.12);
}
.faq__contact {
  text-align: center;
  margin-top: 3.5rem;
}
.faq__contact p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream-2);
  max-width: 480px;
  margin: 0 auto 1.8rem;
  line-height: 1.5;
}
.faq__contact-btn {
  display: inline-block;
  padding: 1rem 2.6rem;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
  background: transparent;
  border: 1px solid var(--clay);
  transition: background 0.3s;
}
.faq__contact-btn:hover { background: var(--clay); }

/* ---------- FOOTER ---------- */
footer {
  background: var(--dark);
  color: var(--cream-2);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(242, 237, 227, 0.1);
  font-size: 0.85rem;
  opacity: 0.6;
  letter-spacing: 0.05em;
}

/* ---------- MEDIA FILL (imagens reais) ---------- */
.image-band__half, .hosts__image, .team__photo,
.location__main, .location__side-top, .location__side-bot { position: relative; overflow: hidden; }
.media-fill { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.image-band__half .media-fill { z-index: 1; }
.image-band__half::after { content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.image-band__half--light::after { background: linear-gradient(135deg, rgba(176,122,79,0.10), rgba(31,22,18,0.04)); }
.image-band__half--dark::after  { background: linear-gradient(135deg, rgba(31,22,18,0.30), rgba(31,22,18,0.55)); }

/* ---------- RESERVA FORM ---------- */
.reserva-form { max-width: 540px; margin: 0 auto 1rem; text-align: left; display: grid; gap: 1.1rem; }
.reserva-form .rf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.reserva-form label { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe); margin-bottom: 0.5rem; font-weight: 500; }
.reserva-form input, .reserva-form select, .reserva-form textarea {
  width: 100%; padding: 0.85rem 1rem; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem;
  color: var(--dark); background: #FBF8F2; border: 1px solid var(--cream-2); border-radius: 2px; font-weight: 300; transition: border-color 0.2s;
}
.reserva-form input:focus, .reserva-form select:focus, .reserva-form textarea:focus { outline: none; border-color: var(--clay); }
.reserva-form textarea { resize: vertical; min-height: 90px; }
.reserva-form .cta__button { border: none; cursor: pointer; width: 100%; margin-top: 0.4rem; }
.reserva-form .hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 600px) { .reserva-form .rf-row { grid-template-columns: 1fr; } }

/* ---------- LOGO ---------- */
.hero__meta-top { align-items: center; }
.hero__logo { display: inline-block; line-height: 0; }
.hero__logo img { height: 100px; width: auto; display: block; }
@media (max-width: 600px) { .hero__logo img { height: 50px; } }

/* ---------- STICKY CTA (só mobile) ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--dark);
  border-top: 1px solid rgba(242, 237, 227, 0.14);
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transform: translateY(110%);
  transition: transform 0.35s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__text {
  color: var(--cream-2);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  line-height: 1.45;
  min-width: 0;
}
.sticky-cta__text strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.sticky-cta__btn {
  flex-shrink: 0;
  background: var(--clay);
  color: var(--cream);
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s;
}
.sticky-cta__btn:active { background: var(--taupe); }
@media (max-width: 800px) {
  .sticky-cta { display: flex; }
}

/* ---------- ACORDEÃO DO PROGRAMA (todos os ecrãs) ---------- */
.program__day { position: relative; }
.program__day-label {
  align-self: start;            /* não estica com a linha: o chevron não salta */
  padding-right: 2.8rem;
  -webkit-tap-highlight-color: transparent;
}
/* Âncora é a LINHA inteira, não o rótulo — a seta encosta à direita de tudo.
   Offset fixo a partir do topo: abrir as sessões não a move. */
.program__day-label::after {
  content: '';
  position: absolute;
  right: 0.25rem;
  top: 5.8rem;
  width: 15px;
  height: 15px;
  border-right: 1.5px solid var(--clay);
  border-bottom: 1.5px solid var(--clay);
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 0.3s ease;
  pointer-events: auto;
  cursor: pointer;
}
/* Zona de clique à volta do chevron. Fica fora da célula de 220px do rótulo,
   mas por ser pseudo-elemento dele, o clique é encaminhado para lá. */
.program--accordion .program__day-label::before {
  content: '';
  position: absolute;
  top: 3rem;
  right: 0;
  width: 4.5rem;
  height: 5.5rem;
  cursor: pointer;
}
@media (max-width: 800px) {
  .program--accordion .program__day-label::before { top: 2.5rem; }
}
.program--accordion .program__day.is-open .program__day-label::after {
  transform: rotate(225deg);
}
@media (max-width: 800px) {
  .program__day-label::after { top: 5.3rem; }
}
/* Sem JS, o programa fica todo visível. O acordeão só entra em acção
   depois de o retiro.js marcar .program--accordion no contentor. */
.program--accordion .program__sessions { display: none; }
.program--accordion .program__day.is-open .program__sessions { display: grid; }
.program__day-label { cursor: default; }
.program--accordion .program__day-label { cursor: pointer; }
.program__day-label::after { display: none; }
.program--accordion .program__day-label::after { display: block; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 800px) {
  .hero__title { font-size: clamp(7rem, 32vw, 14rem); }
  .hero__bottom-content { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .hero__details { text-align: left; }
  .narrative { padding: 5rem 1.5rem 4rem; }
  .narrative h2 { font-size: 2rem; }
  .hosts__inner, .location__header { grid-template-columns: 1fr; gap: 3rem; }
  .hosts__image-pair { aspect-ratio: 2 / 1; }
  .program__day { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.5rem 0; }
  .program__session { grid-template-columns: 60px 1fr; gap: 1rem; }
  .team__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .pricing__matrix {
    grid-template-columns: 1fr 1fr;
  }
  .pmx__corner { display: none; }
  .pmx__row-head {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
    border-right: none;
  }
  .pmx__col-head:nth-child(2) { border-right: 1px solid rgba(242, 237, 227, 0.1); }
  .image-band { grid-template-columns: 1fr; height: auto; }
  .image-band__half { height: 320px; }
}
@media (max-width: 500px) {
  .team__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════
   ADIÇÕES PARTILHADAS (lean + completo)
   ═══════════════════════════════════════════════════════════════════════ */

/* ---------- ACESSIBILIDADE ---------- */
a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible,
.program__day-label:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ---------- BARRA DE PRAZO (logo abaixo do hero) ---------- */
.deadline {
  background: var(--dark);
  color: var(--cream-2);
  text-align: center;
  padding: 1.1rem 1.5rem;
  border-top: 1px solid rgba(242, 237, 227, 0.12);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.deadline strong {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--clay);
  font-size: 1rem;
  letter-spacing: 0.02em;
}
@media (max-width: 560px) {
  .deadline { font-size: 0.78rem; padding: 0.9rem 1.2rem; }
  /* As vagas passaram para a frente: o <strong> fica em cima, não em baixo. */
  .deadline strong { display: block; margin-top: 0; margin-bottom: 0.25rem; }
}

/* ---------- CTA DUPLO (duro + suave) ---------- */
.cta-band__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cta-band--light .cta-band__btn--ghost {
  background: transparent;
  color: var(--muted);
  border-color: var(--taupe);
}
.cta-band--light .cta-band__btn--ghost:hover {
  background: rgba(176, 122, 79, 0.16);
  border-color: var(--clay);
  color: var(--dark);
}
.cta-band--dark .cta-band__btn--ghost {
  background: transparent;
  color: var(--cream-2);
  border-color: rgba(242, 237, 227, 0.3);
}
.cta-band--dark .cta-band__btn--ghost:hover {
  background: rgba(242, 237, 227, 0.14);
  border-color: var(--cream-2);
  color: var(--cream);
}
@media (max-width: 560px) {
  .cta-band__actions { flex-direction: column; gap: 0.8rem; }
  .cta-band__btn { width: 100%; max-width: 320px; }
}

/* ---------- REFORÇO SOB O FORMULÁRIO (substitui o IBAN) ---------- */
.form-reassure {
  max-width: 480px;
  margin: 1.4rem auto 0;
  font-size: 0.85rem;
  color: var(--muted);
  opacity: 0.85;
  line-height: 1.6;
}
