:root {
  --ink: #17251f;
  --ink-soft: #42544b;
  --forest: #10251d;
  --forest-2: #183a2b;
  --moss: #4f684f;
  --gold: #d8b36a;
  --gold-pale: #f0d79e;
  --ivory: #f6f0e5;
  --paper: #fffdf8;
  --clay: #8b4f3d;
  --white: #fff;
  --line: rgba(23, 37, 31, .15);
  --shadow: 0 24px 70px rgba(16, 37, 29, .15);
  --font-display: "Cinzel", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  background-image: radial-gradient(rgba(16, 37, 29, .09) .55px, transparent .55px);
  background-size: 6px 6px;
  content: "";
  inset: 0;
  opacity: .2;
  pointer-events: none;
  position: fixed;
  z-index: 30;
}

::selection {
  background: var(--gold);
  color: var(--forest);
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.12;
  margin: 0;
}

h2 {
  font-size: clamp(2.15rem, 5vw, 4.7rem);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.container {
  margin: 0 auto;
  max-width: var(--max);
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  width: 100%;
}

.section-pad {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  background: var(--gold);
  color: var(--forest);
  font-weight: 800;
  left: 1rem;
  padding: .75rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 9999;
}

.skip-link:focus {
  top: 1rem;
}

.eyebrow {
  color: var(--clay);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold-pale);
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: .78rem;
  font-weight: 800;
  gap: .75rem;
  justify-content: center;
  letter-spacing: .08em;
  min-height: 52px;
  padding: .85rem 1.45rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-gold {
  background: var(--gold);
  color: var(--forest);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold-pale);
}

.button-ghost {
  border-color: rgba(255, 255, 255, .6);
  color: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: var(--white);
  color: var(--forest);
}

.site-header {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(255, 253, 248, .92);
  border-bottom: 1px solid rgba(216, 179, 106, .45);
  display: flex;
  height: 82px;
  justify-content: space-between;
  left: 0;
  padding: .55rem max(1.1rem, calc((100vw - var(--max)) / 2));
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow .3s ease, height .3s ease;
  z-index: 1000;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 35px rgba(16, 37, 29, .12);
  height: 72px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: .7rem;
  text-decoration: none;
}

.brand img {
  height: 54px;
  object-fit: contain;
  width: 54px;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: .08em;
}

.brand small {
  color: var(--clay);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .12em;
  margin-top: .25rem;
  text-transform: uppercase;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(.45rem, 1.4vw, 1.25rem);
}

.main-nav a {
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .09em;
  padding: .65rem .25rem;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a:not(.nav-cta)::after {
  background: var(--gold);
  bottom: .35rem;
  content: "";
  height: 2px;
  left: .25rem;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  width: calc(100% - .5rem);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.main-nav .nav-cta {
  background: var(--forest);
  border-radius: 999px;
  color: var(--white);
  padding: .68rem 1rem;
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  display: none;
  font-size: 1.35rem;
  height: 44px;
  width: 44px;
}

.hero {
  align-items: flex-end;
  color: var(--white);
  display: flex;
  isolation: isolate;
  min-height: max(720px, 100svh);
  overflow: hidden;
  padding: 9rem 0 6.5rem;
  position: relative;
}

.hero-photo,
.hero-shade {
  position: absolute;
}

.hero-photo {
  background-image: url("assets/conga.webp");
  background-position: center;
  background-size: cover;
  bottom: 0;
  clip-path: ellipse(78% 88% at 82% 50%);
  height: 100%;
  right: 0;
  width: 64%;
  z-index: -4;
}

.hero-shade {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 27, 20, .99) 0%, rgba(9, 27, 20, .96) 34%, rgba(9, 27, 20, .72) 57%, rgba(9, 27, 20, .23) 86%),
    linear-gradient(0deg, rgba(9, 27, 20, .9) 0%, transparent 55%);
  z-index: -3;
}

.hero::before {
  border: 1px solid rgba(216, 179, 106, .35);
  border-radius: 49% 51% 36% 64% / 53% 33% 67% 47%;
  content: "";
  height: min(65vw, 780px);
  position: absolute;
  right: -18vw;
  top: 8%;
  transform: rotate(-12deg);
  width: min(65vw, 780px);
  z-index: -1;
}

.ogum-presence {
  border-radius: 58% 42% 62% 38% / 36% 55% 45% 64%;
  filter: saturate(.7) sepia(.15);
  height: 70%;
  mix-blend-mode: screen;
  object-fit: cover;
  object-position: center;
  opacity: .16;
  position: absolute;
  right: 1%;
  top: 15%;
  width: 38%;
  z-index: -2;
}

.hero-content {
  margin-inline: auto;
}

.hero h1 {
  font-size: clamp(3.05rem, 8.2vw, 7.2rem);
  max-width: 920px;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-lead {
  color: rgba(255, 255, 255, .89);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  margin: 1.7rem 0 2rem;
  max-width: 690px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.hero-signature {
  bottom: 3rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .24em;
  opacity: .7;
  position: absolute;
  right: clamp(1.25rem, 5vw, 5rem);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.status-note {
  background: var(--gold);
  color: var(--forest);
}

.status-inner {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  min-height: 88px;
  padding-block: 1.15rem;
}

.status-inner p {
  font-size: clamp(.95rem, 1.5vw, 1.08rem);
  font-weight: 600;
  line-height: 1.65;
  margin: 0;
  max-width: 1020px;
  text-align: justify;
  text-justify: inter-word;
}

.status-inner strong {
  font-weight: 800;
}

.status-mark {
  background: var(--forest);
  border-radius: 50%;
  flex: 0 0 auto;
  height: 9px;
  position: relative;
  width: 9px;
}

.status-mark::after {
  border: 1px solid var(--forest);
  border-radius: inherit;
  content: "";
  inset: -5px;
  opacity: .45;
  position: absolute;
}

.house-section {
  background:
    radial-gradient(circle at 90% 22%, rgba(216, 179, 106, .17), transparent 22rem),
    var(--paper);
}

.house-grid {
  align-items: center;
  display: grid;
  gap: clamp(3rem, 8vw, 7rem);
  grid-template-columns: .9fr 1.1fr;
}

.section-copy h2 {
  margin-bottom: 1.5rem;
}

.section-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  hyphens: auto;
  max-width: 620px;
  text-align: justify;
  text-justify: inter-word;
}

.section-copy .lead-copy {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.organic-stage {
  min-height: 630px;
  position: relative;
}

.organic-stage::before {
  border: 1px solid var(--gold);
  border-radius: 55% 45% 61% 39% / 42% 63% 37% 58%;
  content: "";
  inset: 5% 4% 12% 12%;
  position: absolute;
  transform: rotate(6deg);
}

.organic-main {
  border-radius: 56% 44% 61% 39% / 40% 61% 39% 60%;
  box-shadow: var(--shadow);
  height: 540px;
  margin: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(2deg);
  width: 87%;
}

.organic-main img,
.organic-detail img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.organic-main img {
  object-position: center;
  transform: scale(1.05);
}

.organic-detail {
  border: 7px solid var(--paper);
  border-radius: 48% 52% 39% 61% / 58% 43% 57% 42%;
  bottom: 0;
  box-shadow: 0 20px 45px rgba(16, 37, 29, .24);
  height: 220px;
  left: 0;
  margin: 0;
  overflow: hidden;
  position: absolute;
  transform: rotate(-7deg);
  width: 48%;
}

.orbit-copy {
  background: var(--paper);
  border: 4px solid var(--paper);
  border-radius: 50%;
  bottom: 4%;
  display: grid;
  height: 110px;
  overflow: hidden;
  place-items: center;
  position: absolute;
  right: 3%;
  width: 110px;
}

.orbit-copy img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.principles {
  counter-reset: principles;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(4rem, 8vw, 7rem);
}

.principles article {
  align-items: flex-start;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 1.2rem;
  padding: 2rem clamp(1rem, 3vw, 2rem) 0;
  position: relative;
}

.principles article:not(:last-child) {
  border-right: 1px solid var(--line);
}

.principles article::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: -2px;
  width: 28%;
}

.principles article > span {
  color: var(--clay);
  font-family: var(--font-display);
  font-size: .78rem;
  padding-top: .25rem;
}

.principles h3 {
  font-size: 1.08rem;
  margin-bottom: .55rem;
}

.principles p {
  color: var(--ink-soft);
  font-size: .85rem;
  hyphens: auto;
  line-height: 1.65;
  text-align: justify;
  text-justify: inter-word;
}

.quote-parallax {
  align-items: center;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white);
  display: flex;
  isolation: isolate;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
  padding: 6rem 1.25rem;
  position: relative;
  text-align: center;
}

.compass-section {
  background-image: url("assets/bussola.webp");
}

.parallax-overlay {
  background: linear-gradient(135deg, rgba(10, 30, 22, .93), rgba(10, 30, 22, .55));
  inset: 0;
  position: absolute;
  z-index: -1;
}

.quote-content {
  max-width: 900px;
}

.quote-content h2 {
  color: var(--gold-pale);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.quote-content > p:last-child {
  color: rgba(255, 255, 255, .9);
  font-family: Georgia, serif;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-style: italic;
  margin: 0 auto;
  max-width: 760px;
}

.small-symbol {
  color: var(--gold);
  display: block;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.foundations {
  background: var(--ivory);
  overflow: hidden;
}

.section-heading {
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}

.section-heading p:not(.eyebrow) {
  color: var(--ink-soft);
}

.split-heading {
  align-items: end;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1.2fr .8fr;
}

.split-heading > p {
  border-left: 1px solid var(--gold);
  hyphens: auto;
  margin: 0 0 .5rem;
  padding-left: 1.5rem;
  text-align: justify;
  text-justify: inter-word;
}

.centered {
  margin-inline: auto;
  max-width: 850px;
  text-align: center;
}

.centered > p:not(.eyebrow) {
  margin: 1.3rem auto 0;
  max-width: 740px;
}

.foundation-collage {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 360px 250px;
}

.foundation-collage figure {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.foundation-collage figure::after {
  background: linear-gradient(transparent 50%, rgba(9, 29, 21, .85));
  content: "";
  inset: 0;
  position: absolute;
}

.foundation-collage img {
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
  width: 100%;
}

.foundation-collage figure:hover img {
  transform: scale(1.045);
}

.foundation-collage figcaption {
  bottom: 1.5rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  left: 1.5rem;
  position: absolute;
  z-index: 2;
}

.collage-wide {
  border-radius: 3rem 12rem 3rem 3rem;
  grid-row: 1 / 2;
}

.collage-tall {
  border-radius: 11rem 2.5rem 11rem 2.5rem;
  grid-row: 1 / 3;
}

.collage-small {
  border-radius: 3rem 3rem 3rem 10rem;
  grid-row: 2 / 3;
}

.leaders {
  background:
    radial-gradient(circle at 0 50%, rgba(139, 79, 61, .08), transparent 22rem),
    var(--paper);
}

.leaders-layout {
  display: grid;
  gap: clamp(2.5rem, 6vw, 6rem);
  grid-template-columns: 1.1fr .75fr;
}

.leader-primary,
.leader-secondary {
  align-items: center;
  display: grid;
  gap: 2rem;
}

.leader-primary {
  grid-template-columns: 1.08fr .92fr;
}

.leader-secondary {
  align-self: end;
  grid-template-columns: 1fr;
  padding-bottom: 2rem;
}

.leader-photo {
  box-shadow: var(--shadow);
  overflow: hidden;
}

.leader-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.noely-photo {
  border-radius: 48% 52% 38% 62% / 62% 37% 63% 38%;
  height: 610px;
}

.noely-photo img {
  object-position: center top;
}

.duo-photo {
  border-radius: 11rem 3rem 11rem 3rem;
  height: 350px;
}

.duo-photo img {
  object-position: center;
}

.leader-copy .role {
  color: var(--clay);
  display: block;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: .8rem;
  text-transform: uppercase;
}

.leader-copy h3 {
  margin-bottom: 1rem;
}

.leader-copy p {
  color: var(--ink-soft);
  font-size: .9rem;
  hyphens: auto;
  text-align: justify;
  text-justify: inter-word;
}

.ogum-section {
  align-items: center;
  background: var(--forest);
  color: var(--white);
  display: flex;
  min-height: 580px;
  overflow: hidden;
  position: relative;
}

.ogum-section::before {
  background: linear-gradient(90deg, rgba(9, 27, 20, .98), rgba(9, 27, 20, .75) 47%, rgba(9, 27, 20, .18));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.ogum-image {
  background: url("assets/ogum.webp") center / cover no-repeat;
  border-radius: 51% 0 0 45% / 44% 0 0 56%;
  bottom: -8%;
  filter: saturate(.75) sepia(.12);
  height: 116%;
  mix-blend-mode: screen;
  opacity: .32;
  position: absolute;
  right: -3%;
  top: -8%;
  width: 63%;
}

.ogum-content {
  position: relative;
  z-index: 2;
}

.ogum-content h2 {
  color: var(--gold-pale);
  max-width: 700px;
}

.ogum-content > p:last-child {
  color: rgba(255, 255, 255, .9);
  font-family: Georgia, serif;
  font-size: clamp(1.03rem, 2vw, 1.32rem);
  hyphens: auto;
  line-height: 1.7;
  margin-top: 1.5rem;
  max-width: 660px;
  text-align: justify;
  text-justify: inter-word;
}

.lines-section {
  background-image: url("assets/sete-linhas.webp");
  min-height: 980px;
}

.lines-overlay {
  background: linear-gradient(135deg, rgba(8, 25, 18, .88), rgba(8, 25, 18, .65));
}

.lines-section .quote-content {
  max-width: 1060px;
}

.line-names {
  font-family: var(--font-body) !important;
  font-size: clamp(.9rem, 2vw, 1.15rem) !important;
  font-style: normal !important;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.line-names span {
  color: var(--gold);
  padding-inline: .35rem;
}

.lines-teaching {
  backdrop-filter: blur(9px);
  background: rgba(8, 25, 18, .72);
  border: 1px solid rgba(216, 179, 106, .5);
  border-radius: 3rem 9rem 3rem 3rem;
  box-shadow: 0 24px 65px rgba(0, 0, 0, .25);
  margin-top: 2.4rem;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.lines-explanation {
  color: rgba(255, 255, 255, .94);
  font-family: var(--font-body);
  font-size: clamp(.93rem, 1.55vw, 1.08rem);
  font-style: normal;
  hyphens: auto;
  line-height: 1.85;
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
}

.lines-highlight {
  border-top: 1px solid rgba(216, 179, 106, .45);
  color: var(--gold-pale);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.65;
  margin: 2rem auto 0;
  max-width: 890px;
  padding-top: 1.8rem;
  text-align: center;
}

.gallery {
  background: var(--forest);
  color: var(--white);
}

.gallery .eyebrow {
  color: var(--gold-pale);
}

.gallery .section-heading > p,
.gallery .split-heading > p {
  color: rgba(255, 255, 255, .74);
}

.gallery-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 360px 310px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.gallery-item::after {
  background: linear-gradient(transparent 47%, rgba(7, 21, 15, .9));
  content: "";
  inset: 0;
  position: absolute;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
  width: 100%;
}

.gallery-item:hover img {
  transform: scale(1.055);
}

.gallery-item figcaption {
  align-items: center;
  bottom: 1.45rem;
  display: flex;
  font-family: var(--font-display);
  font-size: .92rem;
  gap: .75rem;
  left: 1.45rem;
  position: absolute;
  right: 1.45rem;
  line-height: 1.45;
  z-index: 2;
}

.gallery-item figcaption span {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: .68rem;
}

.gallery-conga {
  border-radius: 2.5rem 12rem 2.5rem 2.5rem;
  grid-column: 1 / 8;
}

.gallery-conga img {
  object-position: center 38%;
}

.gallery-foundation {
  border-radius: 12rem 2.5rem 2.5rem 12rem;
  grid-column: 8 / 13;
}

.gallery-foundation img {
  object-position: center;
}

.gallery-headquarters {
  border-radius: 2.5rem 2.5rem 12rem 2.5rem;
  grid-column: 1 / 6;
}

.gallery-headquarters img {
  object-position: center;
  transform: scale(1.62);
}

.gallery-headquarters:hover img {
  transform: scale(1.72);
}

.gallery-leaders {
  background: #d8d8d8;
  border-radius: 12rem 2.5rem 2.5rem 2.5rem;
  grid-column: 6 / 13;
}

.gallery-leaders img {
  object-fit: contain;
  object-position: center;
}

.formation {
  background: var(--forest-2);
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.formation::before {
  border: 1px solid rgba(216, 179, 106, .24);
  border-radius: 50%;
  content: "";
  height: 760px;
  left: -300px;
  position: absolute;
  top: -270px;
  width: 760px;
}

.formation-texture {
  background: url("assets/altar-atmosfera.webp") center / cover no-repeat;
  inset: 0;
  opacity: .06;
  position: absolute;
  z-index: -1;
}

.formation-grid {
  align-items: center;
  display: grid;
  gap: clamp(3.5rem, 9vw, 8rem);
  grid-template-columns: .78fr 1.22fr;
}

.formation-portrait {
  position: relative;
}

.portrait-shape {
  background: var(--ivory);
  border-radius: 52% 48% 38% 62% / 62% 38% 62% 38%;
  height: 660px;
  overflow: hidden;
  position: relative;
}

.portrait-shape::after {
  background: linear-gradient(transparent 65%, rgba(9, 27, 20, .45));
  content: "";
  inset: 0;
  position: absolute;
}

.portrait-shape img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.formation-portrait > p {
  background: var(--gold);
  border-radius: 0 3rem 3rem 3rem;
  bottom: 2rem;
  color: var(--forest);
  display: flex;
  flex-direction: column;
  left: -1.5rem;
  margin: 0;
  padding: 1.2rem 1.5rem;
  position: absolute;
  width: min(340px, 90%);
  z-index: 2;
}

.formation-portrait strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.formation-portrait span {
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin-top: .25rem;
  text-transform: uppercase;
}

.formation-copy h2 {
  color: var(--gold-pale);
}

.formation-intro {
  color: var(--white) !important;
  font-family: Georgia, serif;
  font-size: clamp(1.15rem, 2.3vw, 1.5rem);
  line-height: 1.55;
  margin-top: 1.5rem;
}

.formation-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .76);
  hyphens: auto;
  text-align: justify;
  text-justify: inter-word;
}

.course-facts {
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  border-top: 1px solid rgba(255, 255, 255, .18);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 2.2rem 0;
}

.course-facts div {
  padding: 1.25rem .85rem 1.25rem 0;
}

.course-facts div:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.course-facts div:not(:first-child) {
  padding-left: .85rem;
}

.course-facts dt {
  color: rgba(255, 255, 255, .6);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.course-facts dd {
  color: var(--gold-pale);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  margin: .25rem 0 0;
}

.course-facts small {
  color: rgba(255, 255, 255, .7);
  font-size: .7rem;
}

.formation-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.formation-actions > span {
  color: rgba(255, 255, 255, .65);
  font-size: .75rem;
}

.ascent-section {
  background-image: url("assets/subir-descer.webp");
  min-height: 680px;
}

.ascent-overlay {
  background: linear-gradient(90deg, rgba(10, 28, 21, .92), rgba(10, 28, 21, .48));
}

.questions {
  background: var(--ivory);
}

.questions-grid {
  display: grid;
  gap: clamp(3rem, 8vw, 7rem);
  grid-template-columns: .8fr 1.2fr;
}

.questions-heading {
  position: sticky;
  top: 120px;
}

.questions-heading > p:last-child {
  color: var(--ink-soft);
  margin-top: 1.4rem;
}

.accordion details {
  border-bottom: 1px solid var(--line);
  padding: 1.7rem 0;
}

.accordion details:first-child {
  border-top: 1px solid var(--line);
}

.accordion summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  gap: 1rem;
  justify-content: space-between;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--clay);
  content: "+";
  display: grid;
  flex: 0 0 auto;
  font-family: var(--font-body);
  height: 34px;
  place-items: center;
  width: 34px;
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion details p {
  color: var(--ink-soft);
  font-size: .9rem;
  hyphens: auto;
  margin: 1rem 3.3rem 0 0;
  text-align: justify;
  text-justify: inter-word;
}

.headquarters {
  background: var(--paper);
}

.headquarters-grid {
  align-items: center;
  display: grid;
  gap: clamp(3.5rem, 8vw, 7rem);
  grid-template-columns: .75fr 1.25fr;
}

.headquarters-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  margin-top: 1.3rem;
}

.plaque-zoom {
  border-radius: 50% 50% 12% 12% / 28% 28% 72% 72%;
  height: 170px;
  margin: 1.8rem 0;
  overflow: hidden;
  position: relative;
}

.plaque-zoom img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.5);
  width: 100%;
}

.text-link {
  border-bottom: 1px solid var(--gold);
  color: var(--forest);
  display: inline-flex;
  font-size: .78rem;
  font-weight: 800;
  gap: .6rem;
  letter-spacing: .06em;
  padding-bottom: .35rem;
  text-decoration: none;
  text-transform: uppercase;
}

.map-shape {
  border: 1px solid var(--gold);
  border-radius: 5rem 18rem 5rem 5rem;
  box-shadow: var(--shadow);
  height: 560px;
  overflow: hidden;
  padding: .55rem;
}

.map-shape iframe {
  border: 0;
  border-radius: 4.5rem 17.5rem 4.5rem 4.5rem;
  height: 100%;
  width: 100%;
}

.channels {
  background:
    linear-gradient(rgba(246, 240, 229, .93), rgba(246, 240, 229, .93)),
    url("assets/caminho-casa.webp") center / cover no-repeat;
}

.channel-list {
  display: grid;
  gap: .85rem;
  grid-template-columns: repeat(2, 1fr);
}

.channel-list > a {
  align-items: center;
  background: rgba(255, 253, 248, .82);
  border: 1px solid rgba(16, 37, 29, .12);
  border-radius: 999px;
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr auto;
  padding: .85rem 1.15rem .85rem .85rem;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.channel-list > a:hover,
.channel-list > a:focus-visible {
  background: var(--white);
  border-color: var(--gold);
  transform: translateX(4px);
}

.channel-mark {
  background: var(--forest);
  border-radius: 50%;
  color: var(--gold-pale);
  display: grid;
  font-size: 1.2rem;
  font-weight: 800;
  height: 48px;
  letter-spacing: .08em;
  place-items: center;
  width: 48px;
}

.channel-mark .fa-whatsapp {
  font-size: 1.35rem;
}

.channel-list a > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.channel-list strong {
  font-family: var(--font-display);
  font-size: .9rem;
}

.channel-list small {
  color: var(--ink-soft);
  font-size: .72rem;
}

.channel-list b {
  color: var(--clay);
  font-size: 1rem;
}

.affiliation {
  background: var(--gold);
  padding-block: clamp(3rem, 7vw, 5rem);
}

.affiliation-inner {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: 130px 1fr;
}

.affiliation img {
  border-radius: 50%;
  filter: drop-shadow(0 16px 25px rgba(16, 37, 29, .2));
  height: auto;
  max-height: 115px;
  object-fit: contain;
  width: 115px;
}

.affiliation-logo-link {
  border-radius: 50%;
  display: block;
  justify-self: center;
  transition: filter .25s ease, transform .25s ease;
  width: fit-content;
}

.affiliation-logo-link:hover,
.affiliation-logo-link:focus-visible {
  filter: brightness(1.06);
  outline: 2px solid var(--forest);
  outline-offset: 6px;
  transform: translateY(-3px) scale(1.03);
}

.affiliation .eyebrow {
  color: var(--forest);
  margin-bottom: .7rem;
}

.affiliation h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.affiliation p:last-child {
  margin: 1rem 0 0;
  max-width: 760px;
}

.site-footer {
  background: #091b14;
  color: var(--white);
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0 1.7rem;
  position: relative;
}

.footer-glow {
  background: radial-gradient(circle, rgba(216, 179, 106, .18), transparent 65%);
  height: 600px;
  left: 50%;
  position: absolute;
  top: -320px;
  transform: translateX(-50%);
  width: 600px;
}

.footer-grid {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 170px 1fr;
  position: relative;
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.footer-logo {
  background: var(--white);
  border-radius: 50%;
  height: 74px;
  object-fit: contain;
  padding: .25rem;
  width: 74px;
}

.footer-brand strong {
  color: var(--gold-pale);
  font-family: var(--font-display);
  font-size: 1rem;
}

.footer-brand p,
.footer-contact {
  color: rgba(255, 255, 255, .76);
  font-size: .75rem;
  margin: .55rem 0 0;
}

.footer-crest {
  border-radius: 50%;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, .35));
  height: auto;
  justify-self: center;
  max-height: 150px;
  object-fit: contain;
  width: min(150px, 100%);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  justify-self: end;
  margin: 0;
  text-align: right;
}

.footer-contact span {
  color: var(--gold);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: .55rem;
  text-transform: uppercase;
}

.footer-contact a {
  color: var(--white);
  font-size: .83rem;
  margin-bottom: .25rem;
  text-underline-offset: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  justify-content: space-between;
  margin-top: 3.5rem;
  padding-top: 1.3rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, .72);
  font-size: .7rem;
  margin: 0;
}

.footer-slogan {
  animation: footer-slogan-blink 1.75s ease-in-out infinite;
  color: var(--gold-pale) !important;
  font-weight: 800;
}

@keyframes footer-slogan-blink {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 0 rgba(216, 179, 106, 0);
  }
  50% {
    opacity: .38;
    text-shadow: 0 0 16px rgba(216, 179, 106, .75);
  }
}

.whatsapp-float {
  background: #1f9d5a;
  border: 3px solid rgba(255, 255, 255, .88);
  border-radius: 50%;
  bottom: 1.4rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
  color: var(--white);
  display: grid;
  font-size: 1.65rem;
  font-weight: 800;
  height: 58px;
  letter-spacing: .05em;
  place-items: center;
  position: fixed;
  right: 1.4rem;
  text-decoration: none;
  transition: transform .25s ease;
  width: 58px;
  z-index: 999;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: scale(1.08);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .menu-toggle {
    align-items: center;
    display: inline-flex;
    justify-content: center;
  }

  .main-nav {
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--gold);
    box-shadow: 0 24px 45px rgba(16, 37, 29, .15);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 1rem 1.25rem 1.5rem;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    border-bottom: 1px solid var(--line);
    padding: .9rem .25rem;
  }

  .main-nav .nav-cta {
    border: 0;
    margin-top: .7rem;
    text-align: center;
  }

  .house-grid,
  .formation-grid,
  .questions-grid,
  .headquarters-grid {
    grid-template-columns: 1fr;
  }

  .organic-stage {
    margin: 0 auto;
    max-width: 680px;
    width: 100%;
  }

  .leaders-layout {
    gap: 4rem;
    grid-template-columns: 1fr;
  }

  .leader-primary {
    grid-template-columns: 1fr 1fr;
  }

  .leader-secondary {
    grid-template-columns: .9fr 1.1fr;
    padding-bottom: 0;
  }

  .formation-portrait {
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
  }

  .questions-heading {
    position: static;
  }

  .headquarters-copy {
    max-width: 650px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 72px;
  }

  .brand img {
    height: 48px;
    width: 48px;
  }

  .hero {
    min-height: 780px;
    padding-bottom: 5rem;
  }

  .hero-photo {
    background-position: center;
    clip-path: none;
    opacity: .82;
    width: 100%;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(7, 24, 17, .97) 0%, rgba(7, 24, 17, .83) 60%, rgba(7, 24, 17, .38));
  }

  .ogum-presence {
    height: 52%;
    opacity: .12;
    right: -18%;
    top: 11%;
    width: 75%;
  }

  .hero-signature {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 360px;
  }

  .status-inner {
    align-items: flex-start;
  }

  .status-mark {
    margin-top: .55rem;
  }

  .organic-stage {
    min-height: 520px;
  }

  .organic-main {
    height: 430px;
    width: 92%;
  }

  .organic-detail {
    height: 180px;
    width: 55%;
  }

  .orbit-copy {
    height: 90px;
    width: 90px;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .principles article {
    border-right: 0 !important;
    padding: 1.7rem .25rem 1.4rem;
  }

  .quote-parallax {
    background-attachment: scroll;
    min-height: 560px;
  }

  .split-heading {
    align-items: start;
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .foundation-collage {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 320px);
  }

  .collage-wide,
  .collage-tall,
  .collage-small {
    grid-column: auto;
    grid-row: auto;
  }

  .collage-wide {
    border-radius: 2rem 9rem 2rem 2rem;
  }

  .collage-tall {
    border-radius: 9rem 2rem 9rem 2rem;
  }

  .collage-small {
    border-radius: 2rem 2rem 2rem 9rem;
  }

  .leader-primary,
  .leader-secondary {
    grid-template-columns: 1fr;
  }

  .noely-photo {
    height: 560px;
  }

  .duo-photo {
    height: 380px;
  }

  .ogum-section {
    min-height: 620px;
  }

  .ogum-section::before {
    background: linear-gradient(0deg, rgba(9, 27, 20, .96), rgba(9, 27, 20, .65));
  }

  .ogum-image {
    border-radius: 0;
    height: 75%;
    opacity: .28;
    top: 0;
    width: 100%;
  }

  .ogum-content {
    align-self: end;
    padding-bottom: 4rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 340px);
  }

  .lines-section {
    min-height: 0;
    padding-block: 5.5rem;
  }

  .line-names {
    line-height: 1.9;
  }

  .lines-teaching {
    border-radius: 2rem 5rem 2rem 2rem;
    margin-top: 1.8rem;
    padding: 1.4rem;
  }

  .lines-explanation {
    line-height: 1.75;
  }

  .lines-highlight {
    line-height: 1.6;
    margin-top: 1.5rem;
    padding-top: 1.4rem;
  }

  .gallery-item {
    grid-column: auto;
  }

  .gallery-conga,
  .gallery-foundation,
  .gallery-headquarters,
  .gallery-leaders {
    border-radius: 2rem 8rem 2rem 2rem;
  }

  .portrait-shape {
    height: 600px;
  }

  .course-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .course-facts div:nth-child(2) {
    border-right: 0;
  }

  .course-facts div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .course-facts div:nth-child(3) {
    padding-left: 0;
  }

  .map-shape {
    border-radius: 3rem 9rem 3rem 3rem;
    height: 500px;
  }

  .map-shape iframe {
    border-radius: 2.5rem 8.5rem 2.5rem 2.5rem;
  }

  .channel-list {
    grid-template-columns: 1fr;
  }

  .affiliation-inner {
    grid-template-columns: 110px 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-contact {
    justify-self: center;
    text-align: center;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: .4rem;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .brand strong {
    font-size: .96rem;
  }

  .brand small {
    font-size: .56rem;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11.8vw, 3.5rem);
    line-height: 1.08;
  }

  .organic-stage {
    min-height: 430px;
  }

  .organic-main {
    height: 360px;
  }

  .organic-detail {
    height: 145px;
  }

  .orbit-copy {
    bottom: -1%;
    font-size: .62rem;
    height: 76px;
    width: 76px;
  }

  .noely-photo {
    height: 490px;
  }

  .duo-photo {
    height: 300px;
  }

  .portrait-shape {
    height: 520px;
  }

  .formation-portrait > p {
    left: -.35rem;
  }

  .formation-actions .button {
    width: 100%;
  }

  .affiliation-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .affiliation img {
    margin: 0 auto;
    width: 110px;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .quote-parallax {
    background-attachment: scroll;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
