:root {
  --navy-950: #020912;
  --navy-900: #061423;
  --navy-800: #0a2235;
  --wine-900: #230807;
  --wine-800: #4b1612;
  --gold-500: #c98a38;
  --gold-400: #e0b569;
  --gold-300: #f1d79c;
  --cream: #f7ead0;
  --white: #fffaf0;
  --line: rgba(224, 181, 105, .38);
  --shadow: rgba(0, 0, 0, .68);
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--navy-950);
  color: var(--cream);
  font-family: var(--font-body);
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.shell {
  width: min(var(--shell), calc(100% - 56px));
  margin: 0 auto;
}

.ornament {
  display: block;
  width: 100%;
  height: auto;
  color: var(--gold-400);
  opacity: .78;
}

.ornament--sm {
  max-width: 128px;
}

.ornament--md {
  max-width: 190px;
}

.ornament--lg {
  max-width: 270px;
}

.module {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(224, 181, 105, .24);
  background-color: var(--navy-900);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.module::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand {
  font-family: var(--font-display);
  font-weight: 500;
}

h1,
h2,
h3 {
  color: var(--gold-300);
  text-shadow: 0 2px 20px rgba(0, 0, 0, .55);
}

.kicker {
  margin-bottom: 14px;
  color: var(--gold-400);
  font: 700 12px/1.4 var(--font-body);
  letter-spacing: .18em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 26px;
  border: 1px solid rgba(241, 215, 156, .58);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(124, 38, 27, .94), rgba(64, 17, 14, .96)),
    var(--wine-800);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06), 0 12px 34px rgba(0, 0, 0, .32);
  color: var(--cream);
  font: 700 13px/1 var(--font-body);
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.btn:hover,
.btn:focus-visible {
  border-color: var(--gold-300);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1), 0 16px 40px rgba(201, 138, 56, .18);
  transform: translateY(-1px);
}

.btn-small {
  min-height: 36px;
  padding: 10px 20px;
  font-size: 12px;
}

.mpn-button {
  --mpn-button-height: 43px;
  --mpn-button-pad-x: 34px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--mpn-button-height);
  padding: 0 var(--mpn-button-pad-x);
  border: 0;
  color: #ead7ae;
  isolation: isolate;
  text-decoration: none;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, .42));
  transition: filter .24s ease, transform .24s ease;
}

.mpn-button::before,
.mpn-button::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.mpn-button::before {
  inset: -9px -22px;
  z-index: -2;
  background: url("../images/home/bg-botao.png") center / 100% 100% no-repeat;
}

.mpn-button::after {
  inset: 7px 17px;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 235, 171, .18), transparent 15%),
    radial-gradient(circle at 82% 78%, rgba(255, 235, 171, .12), transparent 17%),
    linear-gradient(180deg, rgba(121, 23, 27, .36), rgba(46, 8, 12, .32));
  border-radius: 999px;
  box-shadow: inset 0 0 14px rgba(0, 0, 0, .26);
}

.mpn-button__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: calc(var(--mpn-button-height) - 8px);
  color: #ead7ae;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  text-shadow:
    0 1px 0 rgba(70, 31, 6, .9),
    0 0 8px rgba(238, 197, 100, .2);
}

.mpn-button:hover,
.mpn-button:focus-visible {
  color: #f3dfb6;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .5)) drop-shadow(0 0 8px rgba(193, 154, 85, .18));
  transform: translateY(-1px);
}

.mpn-button:focus-visible {
  outline: 1px solid rgba(241, 215, 156, .88);
  outline-offset: 4px;
}

.mpn-button:active {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .42));
  transform: translateY(0);
}

.mpn-button--sm {
  --mpn-button-height: 38px;
  --mpn-button-pad-x: 30px;
}

.mpn-button--sm .mpn-button__label {
  font-size: 12px;
}

.mpn-button--lg {
  --mpn-button-height: 46px;
  --mpn-button-pad-x: 38px;
}

.mpn-button--lg .mpn-button__label {
  font-size: 15px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 86px;
  border-bottom: 1px solid rgba(224, 181, 105, .22);
  background: linear-gradient(180deg, rgba(3, 11, 22, .88), rgba(3, 11, 22, .58));
  backdrop-filter: blur(10px);
  transition: background .25s ease, height .25s ease;
}

.site-header.is-scrolled {
  height: 76px;
  background: rgba(2, 9, 18, .94);
}

.header-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 205px;
  color: var(--gold-300);
  text-decoration: none;
  line-height: .9;
}

.brand-image {
  display: block;
  width: 205px;
  max-width: 205px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .42));
}

.brand-image[src$=".png"] {
  font-size: 0;
}

.brand-fallback {
  display: none;
  gap: 3px;
}

.brand-fallback span {
  font-size: 17px;
  letter-spacing: .08em;
}

.brand-fallback strong {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 46px);
  flex: 1;
}

.main-nav a {
  color: rgba(247, 234, 208, .92);
  font: 700 13px/1 var(--font-body);
  text-decoration: none;
  transition: color .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold-300);
}

.main-nav .nav-cta {
  position: relative;
  min-height: 40px;
  padding: 12px 26px;
  border: 1px solid rgba(224, 181, 105, .65);
  border-radius: 999px;
  color: var(--cream);
}

.main-nav .nav-cta::after {
  content: "";
  width: 13px;
  height: 13px;
  margin-left: 10px;
  background: currentColor;
  clip-path: polygon(50% 0, 62% 35%, 100% 50%, 62% 65%, 50% 100%, 38% 65%, 0 50%, 38% 35%);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(2, 9, 18, .3);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--gold-300);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  height: 750px;
  min-height: 680px;
  background: var(--navy-950);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  background:
    linear-gradient(90deg, rgba(2, 9, 18, .92) 0%, rgba(2, 9, 18, .46) 43%, rgba(2, 9, 18, .22) 70%),
    radial-gradient(circle at 76% 42%, rgba(224, 181, 105, .23), transparent 22%),
    var(--bg),
    radial-gradient(circle at 20% 38%, #173149, #071422 58%, #020912);
  background-size: cover;
  background-position: center;
  transition: opacity .9s ease, visibility .9s ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 9, 18, .22), transparent 42%, rgba(2, 9, 18, .8)),
    radial-gradient(circle at 20% 60%, rgba(0, 0, 0, .3), transparent 28%);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(500px, 44vw);
  margin-left: auto;
  margin-right: 7vw;
  padding-top: 52px;
  text-align: center;
}

.hero-copy-primary {
  margin-right: 8vw;
}

.hero-copy-left {
  justify-items: start;
  margin-right: auto;
  margin-left: 7vw;
  text-align: left;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: clamp(70px, 8vw, 118px);
  line-height: .78;
  letter-spacing: 0;
}

.hero h2 {
  margin-bottom: 18px;
  font-size: clamp(52px, 6vw, 88px);
  line-height: .92;
}

.hero p:not(.kicker) {
  margin-bottom: 24px;
  color: var(--cream);
  font: 400 20px/1.45 var(--font-body);
}

.slider-arrow {
  position: absolute;
  top: 52%;
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(224, 181, 105, .54);
  border-radius: 50%;
  background: rgba(2, 9, 18, .48);
  color: var(--gold-300);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.slider-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}

.slider-prev {
  left: 30px;
}

.slider-prev::before {
  transform: translate(-35%, -50%) rotate(-45deg);
}

.slider-next {
  right: 30px;
}

.slider-next::before {
  transform: translate(-65%, -50%) rotate(135deg);
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  background: rgba(75, 22, 18, .72);
  transform: translateY(-1px);
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 4;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(241, 215, 156, .72);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--gold-400);
  box-shadow: 0 0 18px rgba(224, 181, 105, .55);
}

.universe {
  min-height: 505px;
  background-image:
    linear-gradient(90deg, rgba(2, 9, 18, .95), rgba(2, 9, 18, .68) 45%, rgba(2, 9, 18, .2)),
    url("../images/home/universo-bg.jpg"),
    radial-gradient(circle at 70% 50%, #1f4057, #061423 62%);
  background-position: center;
}

.universe-layout {
  min-height: 505px;
  display: flex;
  align-items: center;
}

.universe-copy {
  width: min(575px, 52vw);
  padding: 58px 0 46px;
}

.universe h2 {
  margin-bottom: 28px;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1.02;
}

.value-row {
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  margin-bottom: 28px;
}

.value-item {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 70px;
  color: var(--cream);
  font: 700 12px/1.2 var(--font-body);
}

.value-item svg,
.story-item svg,
.social-list svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-item svg {
  width: 32px;
  height: 32px;
  color: var(--gold-400);
  stroke-width: 1.6;
}

.universe p,
.grand-book p,
.novelinha p,
.right-panel p,
.left-panel p,
.experience-copy p {
  color: rgba(247, 234, 208, .94);
  font: 400 16px/1.62 var(--font-body);
}

.experiences {
  min-height: 455px;
  padding: 42px 0 58px;
  background-image:
    linear-gradient(180deg, rgba(2, 9, 18, .86), rgba(2, 9, 18, .72)),
    url("../images/home/experiencias-bg.jpg"),
    linear-gradient(135deg, #120b0a, #092033 60%, #020912);
}

.section-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
  text-align: center;
  font-size: clamp(34px, 4vw, 48px);
}

.section-title::before,
.section-title::after {
  content: "";
  width: min(112px, 18vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.section-title span {
  position: relative;
}

.section-title span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 12px;
  height: 12px;
  background: var(--gold-400);
  clip-path: polygon(50% 0, 61% 37%, 100% 50%, 61% 63%, 50% 100%, 39% 63%, 0 50%, 39% 37%);
  transform: translateX(-50%);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.experience-card {
  position: relative;
  min-height: 305px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, .52);
  transition: transform .25s ease;
}

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 9, 18, .82), rgba(2, 9, 18, .2) 64%),
    linear-gradient(180deg, transparent, rgba(2, 9, 18, .68));
}

.experience-card:hover {
  transform: translateY(-3px);
}

.card-letter {
  background-image: url("../images/home/carta-bg.png"), radial-gradient(circle at 20% 40%, #58301a, #071423);
}

.card-video {
  background-image: url("../images/home/video-carta-bg.png"), radial-gradient(circle at 80% 40%, #58301a, #071423);
}

.card-video .experience-copy {
  width: min(340px, calc(100% - 60px));
}

.card-video .experience-copy h3 {
  font-size: clamp(25px, 2.55vw, 34px);
  line-height: 1.02;
}

.experience-copy {
  position: absolute;
  left: 34px;
  bottom: 32px;
  z-index: 1;
  width: min(260px, calc(100% - 60px));
}

.experience-copy h3 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 39px);
  line-height: 1.02;
}

.experience-copy p {
  margin-bottom: 20px;
}

.grand-book {
  min-height: 490px;
  padding: 42px 0;
  background-image:
    linear-gradient(90deg, rgba(2, 9, 18, .58), rgba(2, 9, 18, .88)),
    url("../images/home/grande-livro-bg.jpg"),
    radial-gradient(circle at 36% 50%, #4d2c19, #061423 62%);
}

.grand-book-layout {
  min-height: 405px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 54px;
}

.book-object-wrap {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: center;
}

.book-object-wrap::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 13%;
  bottom: 20px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .55);
  filter: blur(14px);
}

.book-object {
  position: relative;
  z-index: 1;
  width: min(480px, 90%);
  height: auto;
  margin: 8px auto 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: rotate(-7deg) translateY(10px);
  animation: book-float 4.8s ease-in-out infinite;
}

@keyframes book-float {
  0%,
  100% {
    transform: rotate(-7deg) translateY(10px);
  }

  50% {
    transform: rotate(-7deg) translateY(-8px);
  }
}

.grand-book h2 {
  margin-bottom: 18px;
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: .96;
}

.grand-book p {
  margin-bottom: 26px;
}

.novelinha {
  min-height: 525px;
  background-image:
    linear-gradient(90deg, rgba(2, 9, 18, .88), rgba(2, 9, 18, .32) 54%, rgba(2, 9, 18, .72)),
    url("../images/home/novelinha-bg.jpg"),
    radial-gradient(circle at 70% 45%, #274a69, #061423 62%);
  background-position: center;
}

.novelinha-copy {
  min-height: 525px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: min(var(--shell), calc(100% - 56px));
}

.novelinha h2 {
  margin-bottom: 18px;
  max-width: 620px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: .98;
}

.novelinha p:not(.kicker) {
  max-width: 390px;
  margin-bottom: 24px;
}

.stories {
  min-height: 365px;
  padding: 72px 0 68px;
  background:
    radial-gradient(circle at 50% 0%, rgba(224, 181, 105, .08), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(18, 49, 74, .28), transparent 34%),
    linear-gradient(180deg, rgba(4, 19, 32, .99), rgba(2, 10, 18, .99)),
    var(--navy-900);
}

.stories::before {
  background:
    linear-gradient(90deg, transparent, rgba(224, 181, 105, .08), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 74px);
  opacity: .45;
}

.stories .section-title {
  margin-bottom: 22px;
}

.stories-subtitle {
  max-width: 620px;
  margin: 0 auto 48px;
  color: rgba(247, 234, 208, .86);
  font: 400 17px/1.6 var(--font-body);
  text-align: center;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.story-item {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 172px;
  padding: 4px 30px 0;
  color: var(--gold-400);
  text-align: center;
  text-decoration: none;
  outline-offset: 8px;
}

.story-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 0;
  width: 1px;
  height: 112px;
  background: linear-gradient(180deg, transparent, rgba(224, 181, 105, .3), transparent);
}

.story-item svg {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  stroke-width: 1.55;
  transition: color .3s ease, filter .3s ease, transform .3s ease;
}

.story-item h3 {
  margin-bottom: 12px;
  color: var(--gold-300);
  font-size: 24px;
  line-height: 1.1;
  transition: color .3s ease;
}

.story-item p {
  max-width: 220px;
  margin-bottom: 0;
  color: rgba(247, 234, 208, .82);
  font: 400 14px/1.55 var(--font-body);
}

.story-item:hover svg,
.story-item:focus-visible svg {
  color: var(--gold-300);
  filter: drop-shadow(0 0 12px rgba(224, 181, 105, .16));
  transform: translateY(-3px);
}

.story-item:hover h3,
.story-item:focus-visible h3 {
  color: var(--white);
}

.guardian {
  min-height: 686px;
  background-image:
    linear-gradient(90deg, rgba(2, 9, 18, .1), rgba(2, 9, 18, .5) 45%, rgba(2, 9, 18, .94)),
    url("../images/home/guardiao-bg.jpg"),
    radial-gradient(circle at 25% 55%, #4c2a18, #061423 62%);
  background-position: center top;
}

.purpose {
  min-height: 390px;
  background-image:
    linear-gradient(90deg, rgba(2, 9, 18, .9), rgba(2, 9, 18, .42) 45%, rgba(2, 9, 18, .18)),
    url("../images/home/proposito-bg.jpg"),
    radial-gradient(circle at 70% 48%, #4c2a18, #061423 62%);
  background-position: center;
}

.magic-continues {
  min-height: 485px;
  background-image:
    linear-gradient(90deg, rgba(2, 9, 18, .9), rgba(2, 9, 18, .34) 43%, rgba(2, 9, 18, .32)),
    url("../images/home/magia-continua-bg.jpg"),
    radial-gradient(circle at 72% 50%, #143b62, #061423 62%);
  background-position: center;
}

.magic-continues-panel {
  justify-content: flex-end;
}

.right-panel,
.left-panel {
  min-height: inherit;
  display: flex;
  align-items: center;
}

.right-panel {
  justify-content: flex-end;
}

.left-panel {
  justify-content: flex-start;
}

.right-panel > div,
.left-panel > div {
  width: min(470px, 44vw);
  padding: 36px 0;
}

.right-panel h2,
.left-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.02;
}

.right-panel p,
.left-panel p {
  margin-bottom: 24px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(224, 181, 105, .08), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(114, 31, 26, .34), transparent 30%),
    linear-gradient(180deg, #3b1119 0%, #2a0c12 48%, #190607 100%);
  border-top: 1px solid rgba(224, 181, 105, .36);
  color: rgba(247, 234, 208, .78);
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 215, 156, .34), transparent);
  pointer-events: none;
}

.site-footer::before {
  top: 9px;
}

.site-footer::after {
  bottom: 64px;
  opacity: .72;
}

.footer-ornament {
  display: flex;
  justify-content: center;
  padding-top: 24px;
  color: var(--gold-400);
  opacity: .62;
}

.footer-ornament img {
  width: min(220px, 42vw);
  height: auto;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(190px, 1.5fr) repeat(4, minmax(118px, .85fr)) minmax(145px, .95fr);
  gap: clamp(24px, 3vw, 46px);
  padding: 48px 0 58px;
}

.footer-logo-block {
  max-width: 255px;
}

.footer-logo {
  display: inline-flex;
  max-width: 224px;
}

.footer-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .42));
}

.footer-logo-block p {
  margin: 18px 0 0;
  color: rgba(247, 234, 208, .76);
  font: 400 13px/1.6 var(--font-body);
}

.footer-column h2,
.footer-social h2 {
  margin-bottom: 18px;
  color: var(--gold-400);
  font: 700 11px/1.2 var(--font-body);
  letter-spacing: .11em;
  text-shadow: none;
}

.footer-column a {
  display: table;
  margin-bottom: 11px;
  color: rgba(247, 234, 208, .7);
  font: 400 12px/1.45 var(--font-body);
  text-decoration: none;
  transition: color .24s ease, transform .24s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-300);
}

.footer-column a:hover,
.footer-column a:focus-visible {
  transform: translateX(1px);
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-list a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(224, 181, 105, .36);
  border-radius: 50%;
  color: var(--gold-400);
  text-decoration: none;
  transition: color .24s ease, border-color .24s ease, transform .24s ease, background .24s ease;
}

.social-list a:hover,
.social-list a:focus-visible {
  border-color: rgba(241, 215, 156, .64);
  background: rgba(241, 215, 156, .05);
  color: var(--gold-300);
  transform: translateY(-1px);
}

.social-list svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.55;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 21px 0 26px;
  color: rgba(247, 234, 208, .56);
  font: 400 11px/1.45 var(--font-body);
}

.footer-bottom p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  transition: color .24s ease;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(224, 181, 105, .62);
  border-radius: 50%;
  background: rgba(42, 12, 18, .86);
  color: var(--gold-300);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease, background .22s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
  background: rgba(88, 27, 22, .92);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1199px) {
  .shell {
    width: min(100% - 44px, 920px);
  }

  .main-nav {
    gap: 20px;
  }

  .hero {
    height: 690px;
    min-height: 630px;
  }

  .hero-copy {
    width: min(470px, 52vw);
    margin-right: 3vw;
  }

  .hero-copy-left {
    margin-left: 3vw;
    margin-right: auto;
  }

  .grand-book-layout {
    grid-template-columns: .95fr 1fr;
    gap: 30px;
  }

  .footer-shell {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-logo-block,
  .footer-social {
    grid-column: span 1;
  }
}

@media (max-width: 767px) {
  .shell {
    width: calc(100% - 34px);
  }

  .site-header {
    height: 72px;
    background: rgba(2, 9, 18, .95);
  }

  .site-header.is-scrolled {
    height: 68px;
  }

  .brand {
    min-width: 142px;
  }

  .brand-image {
    width: 142px;
    max-width: 142px;
  }

  .brand-fallback span {
    font-size: 13px;
  }

  .brand-fallback strong {
    font-size: 24px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(224, 181, 105, .24);
    background: rgba(2, 9, 18, .98);
    transition: max-height .25s ease;
  }

  .main-nav.is-open {
    max-height: 420px;
  }

  .main-nav a {
    padding: 17px 24px;
    border-top: 1px solid rgba(224, 181, 105, .14);
  }

  .main-nav .nav-cta {
    margin: 12px 22px 18px;
    justify-content: center;
  }

  .hero {
    height: 650px;
    min-height: 650px;
  }

  .hero-slide {
    align-items: flex-end;
    background-position: 38% center;
  }

  .hero-copy,
  .hero-copy-primary {
    width: 100%;
    margin: 0 auto;
    padding: 0 0 82px;
  }

  .hero-copy-left {
    justify-items: center;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .hero h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero p:not(.kicker) {
    font-size: 17px;
  }

  .slider-arrow {
    top: auto;
    bottom: 23px;
    width: 38px;
    height: 38px;
  }

  .slider-prev {
    left: 20px;
  }

  .slider-next {
    right: 20px;
  }

  .universe,
  .universe-layout {
    min-height: 610px;
  }

  .universe {
    background-position: 58% center;
  }

  .universe-copy {
    width: 100%;
    align-self: flex-end;
    padding: 0 0 42px;
  }

  .universe h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .value-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }

  .value-item {
    min-width: 0;
    font-size: 10px;
  }

  .value-item svg {
    width: 28px;
    height: 28px;
  }

  .experiences {
    padding: 36px 0 44px;
  }

  .section-title {
    font-size: 34px;
    gap: 12px;
  }

  .experience-grid,
  .grand-book-layout,
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-card {
    min-height: 320px;
  }

  .experience-copy {
    left: 24px;
    bottom: 25px;
    width: calc(100% - 48px);
  }

  .grand-book {
    min-height: 660px;
    padding: 38px 0 48px;
  }

  .grand-book-layout {
    min-height: 570px;
  }

  .book-object-wrap {
    min-height: 265px;
  }

  .book-object {
    width: min(335px, 92%);
  }

  .grand-book-copy {
    padding-top: 4px;
  }

  .grand-book h2,
  .novelinha h2,
  .right-panel h2,
  .left-panel h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .novelinha,
  .novelinha-copy {
    min-height: 600px;
  }

  .novelinha {
    background-position: 52% center;
  }

  .novelinha-copy {
    justify-content: flex-end;
    padding-bottom: 48px;
  }

  .stories {
    padding: 50px 0 38px;
  }

  .stories-subtitle {
    margin-bottom: 34px;
    font-size: 15px;
  }

  .story-grid {
    gap: 0;
  }

  .story-item {
    min-height: 0;
    padding: 0 18px 28px;
  }

  .story-item:not(:last-child)::after {
    top: auto;
    right: 20%;
    bottom: 0;
    left: 20%;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224, 181, 105, .45), transparent);
  }

  .guardian,
  .purpose,
  .magic-continues {
    min-height: 560px;
  }

  .guardian {
    min-height: 620px;
  }

  .guardian {
    background-position: 32% center;
  }

  .purpose {
    background-position: 57% center;
  }

  .magic-continues {
    background-position: 57% center;
  }

  .right-panel,
  .left-panel {
    align-items: flex-end;
    justify-content: flex-start;
  }

  .magic-continues-panel {
    justify-content: flex-end;
  }

  .right-panel > div,
  .left-panel > div {
    width: 100%;
    padding: 0 0 44px;
  }

  .footer-shell {
    grid-template-columns: 1fr 1fr;
    gap: 26px 22px;
    padding-top: 42px;
  }

  .footer-logo-block,
  .footer-social {
    grid-column: 1 / -1;
  }

  .footer-logo-block {
    max-width: none;
    text-align: center;
  }

  .footer-logo {
    max-width: 230px;
  }

  .footer-logo-block p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 340px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
}
