:root {
  --marrom: #261f0d;
  --terracota: #8c3c35;
  --bege: #f2e7db;
  --off: #f6efe7;
  --areia: #ceb8a3;
  --dourado: #debd5b;
  --ouro-escuro: #a8792d;
  --branco: #ffffff;
  --sombra: 0 24px 70px rgba(38, 31, 13, .16);
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section { scroll-margin-top: 80px; }
body {
  margin: 0;
  font-family: "Bricolage Grotesque", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--marrom);
  background:
    radial-gradient(circle at 15% 5%, rgba(222, 189, 91, .22), transparent 28rem),
    radial-gradient(circle at 85% 10%, rgba(140, 60, 53, .16), transparent 26rem),
    linear-gradient(180deg, var(--off), var(--bege));
  text-wrap: pretty;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.page-shell { position: relative; overflow: visible; }
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(246, 239, 231, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(38, 31, 13, .08);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 6px 0;
}
.brand img { width: 68px; border-radius: 999px; }
.nav { display: flex; justify-content: center; gap: 24px; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.nav a { opacity: .72; padding: 8px 0; border-bottom: 1px solid transparent; }
.nav a:hover { opacity: 1; color: var(--marrom); border-bottom-color: rgba(140, 60, 53, .38); }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 36px;
  background: var(--terracota);
  color: var(--off);
  padding: 9px 17px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(38, 31, 13, .12);
  justify-self: end;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.header-cta:hover { background: var(--marrom); transform: translateY(-1px); }

.section { width: min(1160px, calc(100% - 32px)); margin: 0 auto; padding: 92px 0; }
.hero {
  min-height: calc(100svh - 90px);
  display: grid;
  grid-template-columns: 1.04fr .82fr;
  align-items: center;
  gap: 52px;
  padding-top: clamp(30px, 4vh, 46px);
  padding-bottom: clamp(28px, 4vh, 46px);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--terracota);
  
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow-gold { color: var(--ouro-escuro); }
.eyebrow-terracotta { color: var(--terracota) !important; }
h1, h2, h3 { margin: 0; font-family: "Instrument Serif", Georgia, serif; font-weight: 400; line-height: 1.01; }
h1 { font-size: clamp(3.35rem, 6.3vw, 5.85rem); letter-spacing: -.004em; max-width: 820px; }
.headline-accent { color: var(--terracota); font-style: italic; }
.dark-headline-accent { color: var(--dourado); font-style: italic; }
h2 { font-size: clamp(2.7rem, 5.45vw, 5.45rem); letter-spacing: -.008em; }
h3 { font-size: clamp(1.7rem, 2.6vw, 2.55rem); letter-spacing: .004em; }
p { font-size: 1.08rem; line-height: 1.75; }
.hero-text { max-width: 620px; font-size: clamp(1.12rem, 1.72vw, 1.36rem); color: rgba(38, 31, 13, .78); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 18px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-2px); }
.primary { background: var(--terracota); color: var(--off); box-shadow: 0 16px 34px rgba(140, 60, 53, .24); }
.ghost { border: 1px solid rgba(38, 31, 13, .22); color: var(--marrom); }
.wide { width: 100%; margin-top: 18px; }
.hero-note { color: rgba(38, 31, 13, .55); font-size: .95rem; }
.hero-visual { position: relative; }
.image-frame {
  border-radius: 44px;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(38, 31, 13, .14);
  background: rgba(255, 255, 255, .28);
  box-shadow: var(--sombra);
}
.image-frame img { width: 100%; height: clamp(390px, 54vh, 500px); object-fit: cover; border-radius: 34px; }
.floating-card {
  position: absolute;
  left: -32px;
  bottom: 42px;
  width: 190px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(38, 31, 13, .92);
  color: var(--dourado);
  box-shadow: var(--sombra);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .76rem;
  font-weight: 700;
}
.floating-card img { width: 92px; margin: 0 auto 10px; }

.intro-band {
  width: 100%;
  padding: 64px 16px;
  background: var(--marrom);
  color: var(--off);
  text-align: center;
}
.intro-band p {
  max-width: 960px;
  margin: 0 auto;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -.008em;
}

.split, .offer, .facilitator { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 64px; }
.copy-block p { color: rgba(38, 31, 13, .76); }
.copy-block strong { color: var(--marrom); font-size: 1.06em; font-weight: 800; }
.split .copy-block, .facilitator .copy-block { text-align: center; }
.split .copy-block p, .facilitator .copy-block p { max-width: 620px; margin-left: auto; margin-right: auto; }
.image-stack { position: relative; min-height: 600px; }
.image-stack img, .offer-media img, .facilitator-gallery img {
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--sombra);
}
.main-img { width: 82%; height: 540px; }
.small-img { position: absolute; width: 52%; height: 300px; right: 0; bottom: 0; border: 9px solid var(--off); }

.section-heading { max-width: 880px; margin: 0 auto 46px; text-align: center; }
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card, .offer-card, .quote-card, .who-card, details, .timeline-item {
  border: 1px solid rgba(38, 31, 13, .12);
  background: rgba(255, 255, 255, .34);
  box-shadow: 0 16px 40px rgba(38, 31, 13, .08);
}
.card { min-height: 330px; padding: 28px; border-radius: 28px; }
.card-number { display: block; color: var(--dourado); font-weight: 800; margin-bottom: 58px; }
.card p, .who-card p, details p { color: rgba(38, 31, 13, .72); }

.dark-panel {
  width: min(1220px, calc(100% - 32px));
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  padding: 50px;
  border-radius: 46px;
  background:
    linear-gradient(135deg, rgba(38,31,13,.96), rgba(76,44,29,.94)),
    url('assets/images/praia-ritual.jpeg');
  color: var(--off);
  box-shadow: var(--sombra);
}
.dark-panel .eyebrow { color: var(--dourado); }
.dark-copy { text-align: center; max-width: 720px; margin: 0 auto; }
.dark-copy p { max-width: 620px; margin-left: auto; margin-right: auto; color: rgba(246, 239, 231, .76); }
.timeline { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; align-content: center; }
.timeline-item { padding: 18px 18px 17px; border-radius: 22px; background: rgba(246, 239, 231, .08); border-color: rgba(246, 239, 231, .14); }
.timeline-item span { color: var(--dourado); font-weight: 800; font-size: .83rem; letter-spacing: .12em; text-transform: uppercase; }
.timeline-item h3 { margin: 7px 0 4px; font-size: 1.62rem; line-height: 1.06; }
.timeline-item p { margin: 0; color: rgba(246, 239, 231, .72); font-size: .96rem; line-height: 1.48; }

.offer-media img { width: 100%; height: clamp(440px, 58vh, 560px); }
.offer-card { padding: clamp(28px, 4.2vw, 44px); border-radius: 38px; background: rgba(246, 239, 231, .72); }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 34px; font-size: 1.07rem; line-height: 1.55; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .45em; width: 16px; height: 16px; border-radius: 999px; background: var(--dourado); box-shadow: inset 0 0 0 4px var(--terracota); }

.quote-section { padding-top: 8px; padding-bottom: 62px; }
.quote-card { max-width: 980px; margin: 0 auto; padding: clamp(34px, 6vw, 72px); border-radius: 42px; text-align: center; }
.quote-card p {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4.15rem);
  line-height: 1.06;
  letter-spacing: -.004em;
  color: var(--marrom);
}
.quote-card span { display: block; margin-top: 22px; font-weight: 700; color: rgba(38, 31, 13, .62); }

.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.who-card {
  position: relative;
  border-radius: 26px;
  padding: 30px 24px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(222, 189, 91, .14), transparent 7rem),
    rgba(255,255,255,.30);
}
.who-card::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  background: url('assets/images/simbolo.png') center / contain no-repeat;
  opacity: .74;
}
.who-card p { margin: 0; max-width: 18rem; font-weight: 600; line-height: 1.58; }

.facilitator .copy-block h2 { color: var(--terracota); }
.facilitator-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.facilitator-gallery img { width: 100%; height: 430px; }
.facilitator-gallery img:nth-child(2) { margin-top: 54px; }
.facilitator-gallery img:nth-child(3) { margin-top: 108px; }

.faq { max-width: 920px; }
.faq-list { display: grid; gap: 14px; }
details { padding: 24px 28px; border-radius: 24px; }
summary { cursor: pointer; font-weight: 800; font-size: 1.15rem; }
details p { margin-bottom: 0; }

.final-cta { text-align: center; padding-bottom: 70px; }
.final-cta img { width: 130px; margin: 0 auto 20px; }
.final-cta h2 { max-width: 860px; margin: 0 auto 28px; }

.discernment {
  padding-top: 34px;
  padding-bottom: 54px;
}

.discernment-card {
  display: block;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(140, 60, 53, .16);
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 0%, rgba(222, 189, 91, .22), transparent 24rem),
    rgba(255, 255, 255, .30);
  box-shadow: 0 18px 46px rgba(38, 31, 13, .08);
  text-align: center;
}

.discernment-head {
  max-width: 820px;
  margin: 0 auto 28px;
}

.discernment-card h2 {
  max-width: 840px;
  margin: 0 auto;
  font-size: clamp(2.7rem, 4.35vw, 4.65rem);
  line-height: 1.02;
}

.discernment-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 840px;
  margin: 0 auto;
}

.discernment-copy p {
  margin: 0;
  padding: 22px 24px;
  border: 1px solid rgba(38, 31, 13, .10);
  border-radius: 24px;
  background: rgba(246, 239, 231, .48);
  color: rgba(38, 31, 13, .74);
  text-align: center;
}

.discernment-copy p:last-child { margin-bottom: 0; }

.whatsapp-float {
  position: fixed;
  right: 38px;
  bottom: 38px;
  z-index: 120;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 24%, rgba(246, 239, 231, .92), transparent 34%),
    linear-gradient(135deg, var(--dourado) 0%, var(--terracota) 100%);
  color: var(--off);
  border: 1px solid rgba(140, 60, 53, .26);
  box-shadow: 0 16px 34px rgba(140, 60, 53, .24), inset 0 0 0 2px rgba(246, 239, 231, .22);
  isolation: isolate;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.whatsapp-float svg {
  width: 52px;
  height: auto;
  fill: currentColor;
  animation: wa-soft-pulse 2.8s ease-in-out infinite;
}
.whatsapp-ping {
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(222, 189, 91, .42);
  opacity: 0;
  z-index: -1;
  animation: wa-ping 2.45s ease-out infinite;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  filter: brightness(1.03);
  box-shadow: 0 20px 42px rgba(140, 60, 53, .30), inset 0 0 0 2px rgba(246, 239, 231, .28);
}
.whatsapp-float:hover svg { animation: wa-nudge .46s ease 1; }

.intro-accent { color: var(--dourado); font-style: italic; }
.card strong, .timeline-item strong, .check-list strong, .copy-block strong, .discernment-copy strong, details strong, .hero-text strong, .hero-note strong, .who-card strong {
  color: var(--marrom);
  font-weight: 800;
}
.timeline-item strong { color: var(--off); }
.dark-copy strong { color: var(--off); font-weight: 800; }
.quote-card strong { font-weight: 800; color: var(--terracota); }
.section-heading h2 .headline-accent { display: inline-block; }
.dark-panel .dark-copy h2 {
  font-size: clamp(2.85rem, 4.7vw, 4.65rem);
  line-height: 1.01;
}
.offer-card h2 { font-size: clamp(2.9rem, 4.8vw, 4.9rem); }

/* V9 explicit section eyebrow fixes */
.split .eyebrow-terracotta,
.facilitator .eyebrow-terracotta {
  color: var(--terracota) !important;
}

.footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 28px 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  border-top: 1px solid rgba(38,31,13,.16);
  color: rgba(38,31,13,.62);
  font-size: .95rem;
}
.footer p { margin: 0; }
.footer a { font-weight: 700; color: var(--terracota); }

.reveal { animation: rise .9s ease both; }
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .22s; }
.delay-3 { animation-delay: .32s; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes wa-ping { 0% { opacity: .68; transform: scale(.92); } 70%, 100% { opacity: 0; transform: scale(1.22); } }
@keyframes wa-soft-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@keyframes wa-nudge { 0% { transform: translateX(0); } 35% { transform: translateX(2px); } 65% { transform: translateX(-1px); } 100% { transform: translateX(0); } }


/* V9 desktop readability boost */
@media (min-width: 941px) {
  p {
    font-size: 1.18rem;
    line-height: 1.78;
  }

  .copy-block p,
  .offer-card p,
  .discernment-copy p,
  details p {
    font-size: 1.2rem;
    line-height: 1.8;
  }

  .hero-text {
    font-size: clamp(1.22rem, 1.55vw, 1.44rem);
    line-height: 1.72;
  }

  .hero-note {
    font-size: 1.04rem;
  }

  .card p,
  .who-card p {
    font-size: 1.16rem;
    line-height: 1.68;
  }

  .check-list li {
    font-size: 1.17rem;
    line-height: 1.66;
  }

  .timeline-item p {
    font-size: 1.05rem;
    line-height: 1.56;
  }

  summary {
    font-size: 1.22rem;
  }
}

@media (max-width: 940px) {
  .header-inner { grid-template-columns: auto auto; justify-content: space-between; }
  .nav { display: none; }
  .brand img { width: 63px; }
  .hero, .split, .offer, .facilitator, .dark-panel, .discernment-card { grid-template-columns: 1fr; gap: 34px; }
  .hero { min-height: auto; padding-top: 54px; }
  .timeline { grid-template-columns: 1fr; }
  .image-frame img, .offer-media img { height: 520px; }
  .floating-card { left: 18px; bottom: 18px; width: 150px; }
  .cards-grid, .who-grid { grid-template-columns: 1fr 1fr; }
  .dark-panel { padding: 42px 24px; }
  .main-img { width: 100%; }
  .small-img { width: 58%; }
}

@media (max-width: 620px) {
  body { text-wrap: pretty; }
  .section { width: min(100% - 36px, 1160px); padding: 58px 0; }
  .header-inner { width: calc(100% - 30px); padding: 6px 0; gap: 10px; }
  .brand img { width: 49px; }
  .header-cta { justify-self: end; min-height: 34px; padding: 8px 13px; font-size: .74rem; white-space: nowrap; }
  .whatsapp-float { right: 16px; bottom: 18px; width: 58px; height: 58px; }
  .whatsapp-float svg { width: 42px; }
  h1, h2, h3 { line-height: 1.04; letter-spacing: 0; }
  .headline-accent { display: inline; }
  h1 { font-size: clamp(3.05rem, 14.5vw, 4.85rem); }
  h2 { font-size: clamp(2.28rem, 10.8vw, 3.72rem); }
  h3 { font-size: clamp(1.62rem, 7vw, 2.18rem); }
  p { font-size: 1.12rem; line-height: 1.7; }
  .eyebrow { margin-bottom: 14px; font-size: 1rem; letter-spacing: .15em; }
  .hero { padding-top: 42px; gap: 30px; }
  .hero-text { font-size: 1.12rem; line-height: 1.68; }
  .hero-note { text-align: center; max-width: 18rem; margin-left: auto; margin-right: auto; }
  .hero-actions { flex-direction: column; gap: 12px; margin: 28px 0 18px; }
  .button { width: 100%; min-height: 52px; padding: 14px 18px; }
  .image-frame { border-radius: 32px; padding: 8px; }
  .image-frame img, .offer-media img { height: 410px; border-radius: 25px; }
  .floating-card { left: 14px; bottom: 14px; width: 138px; padding: 14px; border-radius: 20px; font-size: .68rem; }
  .floating-card img { width: 72px; }
  .intro-band { padding: 48px 20px; }
  .intro-band p { font-size: clamp(2.05rem, 9.4vw, 3.2rem); line-height: 1.08; letter-spacing: 0; }
  .split, .offer, .facilitator, .dark-panel, .discernment-card { gap: 30px; }
  .split .copy-block, .dark-copy, .facilitator .copy-block { text-align: center; }
  .split .copy-block p, .dark-copy p, .facilitator .copy-block p { margin-left: auto; margin-right: auto; }
  .image-stack { min-height: 470px; }
  .main-img { height: 390px; border-radius: 26px; }
  .small-img { height: 205px; width: 68%; border-width: 7px; border-radius: 24px; }
  .section-heading { margin-bottom: 32px; }
  .cards-grid, .who-grid { grid-template-columns: 1fr; gap: 14px; }
  .card { min-height: auto; padding: 24px; border-radius: 24px; }
  .card-number { margin-bottom: 28px; }
  .dark-panel { width: calc(100% - 28px); padding: 34px 22px; border-radius: 32px; }
  .dark-panel .dark-copy h2 { font-size: clamp(2.35rem, 10vw, 3.35rem); }
  .timeline-item { padding: 22px 20px; border-radius: 22px; }
  .timeline-item h3 { font-size: 1.72rem; }
  .offer-card, .quote-card, .discernment-card { border-radius: 30px; }
  .offer-card { padding: 28px 22px; }
  .check-list { gap: 12px; }
  .check-list li { font-size: 1.01rem; line-height: 1.55; padding-left: 30px; }
  .quote-card { padding: 34px 22px; }
  .quote-card p { font-size: clamp(2.02rem, 9.5vw, 3.15rem); line-height: 1.08; letter-spacing: 0; }
  .who-card { min-height: 170px; padding: 26px 24px; border-radius: 24px; gap: 18px; }
  .who-card::before { width: 42px; height: 42px; }
  .who-card p { max-width: 17rem; font-size: 1.02rem; line-height: 1.58; }
  .facilitator-gallery { grid-template-columns: 1fr; gap: 12px; }
  .facilitator-gallery img, .facilitator-gallery img:nth-child(2), .facilitator-gallery img:nth-child(3) { height: 300px; margin-top: 0; border-radius: 24px; }
  details { padding: 22px 20px; border-radius: 22px; }
  summary { font-size: 1.05rem; line-height: 1.35; }
  .final-cta { padding-bottom: 52px; }
  .final-cta img { width: 112px; }

  .discernment {
    padding-top: 24px;
    padding-bottom: 42px;
  }

  .discernment-card {
    padding: 32px 22px;
    border-radius: 30px;
  }

  .discernment-head {
    margin-bottom: 22px;
  }

  .discernment-card h2 {
    font-size: clamp(2.3rem, 10vw, 3.35rem);
  }

  .discernment-copy {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .discernment-copy p {
    padding: 20px 18px;
    text-align: center;
  }

  .footer { width: calc(100% - 36px); gap: 8px; margin-bottom: 24px; text-align: center; }
}
