@import url("https://fonts.googleapis.com/css2?family=Alegreya:wght@400;500;600;700&family=Cinzel:wght@500;600;700;800&family=Eagle+Lake&family=Pirata+One&display=swap");

:root {
  --black: #020303;
  --black-soft: #050606;
  --charcoal: #090b0a;
  --charcoal-2: #0d100e;
  --deep-blue: #020b17;
  --deep-blue-2: #031020;
  --moss: #101910;
  --moss-dark: #060906;
  --gold: #80745d;
  --gold-bright: #b2a786;
  --old-gold: #4d4531;
  --rust: #283126;
  --blood: #6f776d;
  --blood-bright: #a89f8a;
  --wine: #071016;
  --aged-gold: #9b7a38;
  --aged-gold-dark: #6b5126;
  --silver-dark: #5b6470;
  --silver: #8e97a3;
  --silver-bright: #c3c9cf;
  --bone: #c9c6bd;
  --muted: #8d9298;
  --line: rgba(142, 151, 163, 0.28);
  --shadow: 0 28px 82px rgba(0, 0, 0, 0.62);
  --container: min(1120px, calc(100vw - 36px));
  --font-title: "Pirata One", "Old English Text MT", "Cloister Black", Georgia, serif;
  --font-header: "Cinzel", "Trajan Pro", "Times New Roman", Georgia, serif;
  --font-gothic: "Eagle Lake", "Almendra Display", "Old English Text MT", Georgia, serif;
  --font-body: "Alegreya", "Cormorant Garamond", "Book Antiqua", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--bone);
  background:
    linear-gradient(180deg, rgba(2, 6, 5, 0.56) 0%, rgba(0, 3, 8, 0.5) 44%, rgba(0, 0, 0, 0.66) 100%),
    url("assets/oceano-noturno-realista.png") center bottom / cover fixed no-repeat,
    var(--black);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.68;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.32;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, transparent, rgba(0, 0, 0, 0.46) 72%),
    linear-gradient(180deg, rgba(5, 9, 6, 0.22), rgba(0, 0, 0, 0.52));
}

main {
  background:
    radial-gradient(circle at 18% 4%, rgba(10, 16, 10, 0.28), transparent 34rem),
    radial-gradient(circle at 90% 46%, rgba(91, 100, 112, 0.06), transparent 30rem),
    linear-gradient(
      180deg,
      rgba(7, 12, 7, 0.66) 0%,
      rgba(3, 5, 4, 0.56) 18%,
      rgba(2, 4, 4, 0.44) 42%,
      rgba(1, 4, 8, 0.34) 68%,
      rgba(0, 2, 7, 0.3) 88%,
      rgba(0, 0, 0, 0.42) 100%
    );
}

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

a {
  color: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.menu-only-section,
.menu-only-block {
  display: none !important;
}

.menu-only-section:target,
.menu-only-block:target,
.menu-only-section.is-menu-visible,
.menu-only-block.is-menu-visible {
  display: block !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 16px max(18px, calc((100vw - 1120px) / 2));
  color: #a9adb1;
  background: rgba(5, 6, 7, 0.74);
  border-bottom: 1px solid rgba(155, 160, 166, 0.18);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(4, 5, 5, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  object-fit: cover;
  background: #020303;
  border: 1px solid rgba(195, 201, 207, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(195, 201, 207, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: #b8bcc1;
  font-family: var(--font-header);
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand small {
  color: #7d8389;
  font-family: var(--font-header);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 2vw, 22px);
}

.main-nav a {
  color: #8f9499;
  font-family: var(--font-header);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #c3c7cb;
}

.header-menu {
  position: relative;
  justify-self: end;
}

.header-menu summary {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  cursor: pointer;
  list-style: none;
  border: 1px solid rgba(155, 160, 166, 0.28);
  border-radius: 50%;
  background: rgba(6, 7, 8, 0.86);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

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

.header-menu summary span {
  display: block;
  width: 19px;
  height: 1px;
  background: #aeb3b8;
  box-shadow: 0 0 8px rgba(174, 179, 184, 0.28);
}

.header-menu summary span + span {
  margin-top: 5px;
}

.menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  display: grid;
  width: min(320px, calc(100vw - 36px));
  padding: 14px;
  border: 1px solid rgba(155, 160, 166, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(8, 9, 10, 0.98), rgba(3, 4, 5, 0.96)),
    #050606;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7);
}

.menu-panel a {
  padding: 10px 12px;
  color: #aeb3b8;
  font-family: var(--font-header);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(155, 160, 166, 0.1);
}

.menu-panel a:last-child {
  border-bottom: 0;
}

.menu-panel a:hover,
.menu-panel a:focus-visible {
  color: #d0d3d6;
  background: rgba(255, 255, 255, 0.035);
}

.header-cta,
.button,
.floating-whatsapp,
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #aeb3b8;
  background: rgba(3, 4, 4, 0.82);
  font-family: var(--font-gothic);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.header-cta:hover,
.button:hover,
.floating-whatsapp:hover,
.footer-social:hover {
  transform: translateY(-2px);
  border-color: rgba(155, 122, 56, 0.72);
}

.button.primary {
  color: #080a08;
  background: linear-gradient(135deg, #b2a786, #80745d 50%, #3d453b);
  border-color: rgba(155, 122, 56, 0.64);
}

.button.ghost {
  color: var(--bone);
}

.icon-button {
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 50%;
}

.whatsapp-symbol,
.youtube-symbol,
.instagram-symbol {
  width: 24px;
  height: 24px;
  color: var(--silver-bright);
  fill: currentColor;
  filter: drop-shadow(0 0 12px rgba(195, 201, 207, 0.42));
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 128px 0 82px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 5, 5, 0.93) 0%, rgba(4, 5, 5, 0.72) 36%, rgba(4, 5, 5, 0.16) 58%, rgba(4, 5, 5, 0.08) 100%),
    linear-gradient(180deg, rgba(4, 5, 5, 0.08), rgba(15, 28, 19, 0.28) 62%, rgba(15, 28, 19, 0.96)),
    url("assets/hero-eremita-realista.png") 70% top / cover no-repeat;
  filter: saturate(0.84) contrast(1.08);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 348px) minmax(240px, 300px) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 128px);
  align-items: center;
  min-height: calc(100svh - 210px);
}

.hero-video {
  justify-self: start;
  width: min(300px, 25vw, 43vh);
  aspect-ratio: 9 / 16;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(155, 160, 166, 0.24);
  border-radius: 8px;
  background: transparent;
  box-shadow:
    0 0 0 1px rgba(155, 122, 56, 0.12),
    0 22px 70px rgba(0, 0, 0, 0.38);
}

.hero-video video {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  object-fit: cover;
}

.hero-copy {
  max-width: 348px;
  padding-left: 18px;
  border-left: 1px solid rgba(155, 122, 56, 0.52);
}

.hero-caption {
  width: min(1120px, 94vw);
  margin-top: 16px;
  padding: 12px 16px;
  color: #aeb3b8;
  border-left: 1px solid rgba(155, 122, 56, 0.34);
  border-radius: 0 8px 8px 0;
  background:
    linear-gradient(90deg, rgba(3, 4, 4, 0.42), rgba(3, 8, 10, 0.18)),
    rgba(2, 3, 3, 0.1);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(2px);
  font-size: clamp(0.74rem, 0.9vw, 0.86rem);
  line-height: 1.3;
}

.hero-caption p {
  max-width: none;
}

.hero-caption p + p {
  margin-top: 5px;
}

.hero-caption strong {
  color: var(--aged-gold);
  font-family: var(--font-header);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow,
.panel-label {
  color: var(--gold);
  font-family: var(--font-header);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tradition-title {
  color: var(--gold-bright);
  font-family: var(--font-gothic);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
  font-size: clamp(0.76rem, 1.3vw, 0.96rem);
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--gold-bright);
  font-family: var(--font-gothic);
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 12.5em;
  margin-top: 10px;
  color: transparent;
  background: linear-gradient(180deg, #c3c9cf 0%, #a89f8a 48%, #5b6470 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--font-header);
  font-size: clamp(1.34rem, 2.25vw, 2.05rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.14;
  text-wrap: balance;
  text-shadow:
    0 5px 0 rgba(0, 0, 0, 0.24),
    0 16px 34px rgba(0, 0, 0, 0.88);
}

h2 {
  font-size: clamp(2.1rem, 4.1vw, 3.8rem);
  letter-spacing: 0.01em;
}

h3 {
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}

p {
  margin: 0;
}

p + p {
  margin-top: 18px;
}

.lead {
  color: var(--bone);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.hero-copy p:not(.eyebrow) {
  max-width: 100%;
  color: var(--muted);
}

.hero-copy .lead {
  margin-top: 16px;
  color: var(--bone);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.38;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-actions .button {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.hero-actions .button.primary {
  width: auto;
}

.hero-proof {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.hero-proof span {
  display: flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 0 5px 12px;
  color: #b8bcc1;
  border-left: 1px solid rgba(142, 151, 163, 0.28);
  font-family: var(--font-header);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-note {
  margin-top: 14px;
  color: #969b9f;
  font-size: 0.86rem;
  line-height: 1.38;
}

.service-card {
  border: 1px solid rgba(142, 151, 163, 0.34);
  background:
    linear-gradient(145deg, rgba(3, 5, 5, 0.5), rgba(1, 8, 14, 0.2)),
    rgba(2, 3, 3, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(4px);
}

.hero-panel {
  padding: 28px;
  border-radius: 8px;
}

.hero-panel h2 {
  margin-top: 10px;
  font-size: 1.75rem;
}

.hero-panel p {
  margin-top: 16px;
  color: var(--muted);
}

.hero-panel a {
  display: inline-block;
  margin-top: 20px;
  color: var(--gold-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(142, 151, 163, 0.42);
}

.split {
  display: block;
}

.split.reverse {
  display: block;
}

.split > * + * {
  margin-top: 26px;
}

.consultation-guide {
  background:
    linear-gradient(180deg, rgba(2, 3, 3, 0.18), rgba(1, 8, 14, 0.14)),
    radial-gradient(circle at 6% 30%, rgba(155, 122, 56, 0.08), transparent 28rem),
    radial-gradient(circle at 92% 52%, rgba(91, 100, 112, 0.08), transparent 32rem);
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

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

.guide-steps article {
  min-height: 178px;
  padding: 20px;
  border: 1px solid rgba(142, 151, 163, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(4, 5, 5, 0.48), rgba(1, 9, 15, 0.18)),
    rgba(2, 3, 3, 0.14);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(4px);
}

.guide-steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  color: #070908;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-bright), var(--aged-gold-dark));
  font-family: var(--font-header);
  font-size: 0.78rem;
  font-weight: 800;
}

.guide-steps h3 {
  color: #aeb3b8;
  font-family: var(--font-header);
  font-size: 0.84rem;
  letter-spacing: 0.07em;
  line-height: 1.25;
  text-transform: uppercase;
}

.guide-steps p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.section-copy {
  max-width: 940px;
}

.manifesto {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.72) 54%, rgba(0, 0, 0, 0.46) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.92)),
    url("assets/caldeirao-fogo-moedas.png") center center / cover no-repeat;
}

.manifesto .section-copy,
.manifesto .text-card {
  max-width: 1080px;
}

.manifesto p:not(.eyebrow) {
  max-width: 980px;
}

#manifesto-title {
  color: var(--gold);
}

.standard-section-title {
  color: var(--gold);
  font-family: var(--font-header);
  font-size: clamp(1.25rem, 2.05vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.linear-text h3.tradition-title {
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
}

.section-copy h2,
.section-heading h2 {
  margin-top: 10px;
}

.section-copy p:not(.eyebrow),
.section-heading p {
  color: var(--muted);
}

.section-copy h2 + p,
.section-heading h2 + p {
  margin-top: 22px;
}

.text-card {
  position: relative;
  overflow: visible;
  padding: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.text-card::before,
.image-card::after,
.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.text-card::before {
  display: none;
}

.text-card > * {
  position: relative;
  z-index: 1;
}

.text-card p,
.service-card p {
  color: var(--muted);
}

.image-card {
  background-image: none;
}

.image-card::after {
  display: none;
}

.card-forest {
  background-image: none;
}

.card-candle {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-skull {
  background-image: none;
}

.card-ancestors {
  background-image: none;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.cards {
  display: grid;
  gap: 18px;
}

.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards.two {
  grid-template-columns: 1fr;
}

.tradition {
  background:
    linear-gradient(180deg, rgba(2, 3, 3, 0.28), rgba(1, 5, 13, 0.18)),
    radial-gradient(circle at 12% 16%, rgba(16, 25, 16, 0.22), transparent 28rem);
}

.linear-text {
  max-width: 960px;
}

.linear-text h3 {
  margin-top: 42px;
  color: var(--gold-bright);
}

.linear-text h3:first-child {
  margin-top: 0;
}

.linear-text p {
  max-width: 900px;
  color: var(--muted);
}

.linear-text h3 + p {
  margin-top: 16px;
}

.card-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: #0a0503;
  background: linear-gradient(145deg, var(--silver-bright), var(--silver-dark));
  border-radius: 50%;
  font-family: var(--font-gothic);
  font-size: 1rem;
  font-weight: 700;
}

.text-card h3 + p,
.linear-text h3 + p {
  margin-top: 16px;
}

.testimonials {
  padding: 72px 0 42px;
  background:
    linear-gradient(180deg, rgba(2, 3, 3, 0.04), rgba(2, 8, 15, 0.08)),
    radial-gradient(circle at 50% 40%, rgba(155, 122, 56, 0.08), transparent 34rem);
}

.testimonial-heading {
  margin-bottom: 26px;
}

.testimonial-frame {
  position: relative;
  display: block;
  max-width: none;
  min-height: 0;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.testimonial-frame::before {
  display: none;
}

.testimonial-stars {
  display: none;
}

.testimonial-track {
  display: flex;
  gap: 14px;
  will-change: transform;
  transition: transform 620ms ease;
}

.testimonial-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 0 calc((100% - 42px) / 4);
  flex-direction: column;
  min-height: 210px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(142, 151, 163, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(4, 5, 5, 0.48), rgba(1, 9, 15, 0.2)),
    rgba(2, 3, 3, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
}

.testimonial-card.is-active {
  animation: none;
}

.testimonial-card::before {
  content: "\2605\2605\2605\2605\2605";
  display: block;
  margin-bottom: 12px;
  color: var(--aged-gold);
  font-family: var(--font-header);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-shadow:
    0 0 14px rgba(155, 122, 56, 0.24),
    0 2px 0 rgba(0, 0, 0, 0.72);
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--bone);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  font-size: clamp(0.78rem, 0.95vw, 0.9rem);
  line-height: 1.42;
}

.testimonial-card cite {
  display: grid;
  gap: 2px;
  margin-top: auto;
  padding-top: 14px;
  color: #aeb3b8;
  font-family: var(--font-header);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-card cite span + span {
  color: #7d8389;
}

.image-band {
  background:
    linear-gradient(180deg, rgba(2, 3, 3, 0.08), rgba(2, 8, 15, 0.14)),
    radial-gradient(circle at 0% 50%, rgba(10, 16, 10, 0.12), transparent 36rem);
}

.service-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 0;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 8px;
}

.service-card h3 {
  min-height: 2.2rem;
  color: #aeb3b8;
  font-family: var(--font-header);
  font-size: clamp(0.78rem, 1.08vw, 0.96rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-card p {
  margin-top: 12px;
}

.service-button {
  margin-top: auto;
  align-self: flex-start;
  min-height: 36px;
  padding: 7px 13px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.ritual-list ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.ritual-list li {
  padding: 12px 0 12px 22px;
  color: var(--bone);
  border-bottom: 1px solid rgba(142, 151, 163, 0.2);
  position: relative;
}

.ritual-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 7px;
  height: 7px;
  background: var(--silver);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(142, 151, 163, 0.42);
}

.note {
  margin-top: 24px;
  color: var(--gold-bright);
}

.founder {
  background:
    linear-gradient(180deg, rgba(4, 5, 5, 0.08), rgba(7, 24, 39, 0.18)),
    radial-gradient(circle at 85% 50%, rgba(91, 100, 112, 0.08), transparent 28rem);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.founder-portrait {
  position: relative;
  justify-self: end;
  width: min(100%, 390px);
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(155, 122, 56, 0.4);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(3, 4, 4, 0.78), rgba(2, 11, 18, 0.42)),
    rgba(2, 3, 3, 0.2);
  box-shadow:
    inset 0 0 0 1px rgba(195, 201, 207, 0.1),
    inset 0 0 0 7px rgba(0, 0, 0, 0.24),
    0 24px 70px rgba(0, 0, 0, 0.46);
}

.founder-portrait::before,
.founder-portrait::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 6px;
}

.founder-portrait::before {
  inset: 7px;
  border: 1px solid rgba(142, 151, 163, 0.18);
}

.founder-portrait::after {
  inset: 18px;
  border: 1px solid rgba(155, 122, 56, 0.2);
  background:
    linear-gradient(135deg, rgba(155, 122, 56, 0.34) 0 12px, transparent 13px) top left / 34px 34px no-repeat,
    linear-gradient(225deg, rgba(155, 122, 56, 0.34) 0 12px, transparent 13px) top right / 34px 34px no-repeat,
    linear-gradient(45deg, rgba(155, 122, 56, 0.34) 0 12px, transparent 13px) bottom left / 34px 34px no-repeat,
    linear-gradient(315deg, rgba(155, 122, 56, 0.34) 0 12px, transparent 13px) bottom right / 34px 34px no-repeat;
}

.founder-portrait img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  filter: brightness(0.76) contrast(1.14) saturate(0.78);
}

.portrait-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.portrait-card img {
  width: 100%;
  height: min(620px, 72vh);
  object-fit: cover;
  object-position: center;
  filter: contrast(1.18) saturate(0.62) brightness(0.72);
}

.author-points {
  background:
    linear-gradient(180deg, rgba(1, 5, 13, 0.08), rgba(2, 3, 3, 0.2)),
    radial-gradient(circle at 18% 40%, rgba(155, 122, 56, 0.08), transparent 30rem);
}

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

.point-player {
  padding: 18px;
  border: 1px solid rgba(142, 151, 163, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(4, 5, 5, 0.5), rgba(1, 9, 15, 0.2)),
    rgba(2, 3, 3, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(4px);
}

.point-player h3 {
  margin-bottom: 14px;
  color: #aeb3b8;
  font-family: var(--font-header);
  font-size: clamp(0.78rem, 1.15vw, 0.96rem);
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.youtube-player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(155, 122, 56, 0.22);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.72);
}

.youtube-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  color: #aeb3b8;
  border: 0;
  background: #020303;
}

.youtube-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.54) contrast(1.12) saturate(0.78);
  transition: filter 180ms ease, transform 180ms ease;
}

.youtube-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.52)),
    radial-gradient(circle at 50% 48%, rgba(155, 122, 56, 0.16), transparent 15rem);
}

.youtube-cover:hover img,
.youtube-cover:focus-visible img {
  filter: brightness(0.68) contrast(1.14) saturate(0.86);
  transform: scale(1.03);
}

.youtube-play {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(155, 122, 56, 0.56);
  border-radius: 50%;
  background: rgba(2, 3, 3, 0.74);
  box-shadow:
    0 0 28px rgba(155, 122, 56, 0.24),
    0 18px 38px rgba(0, 0, 0, 0.46);
}

.youtube-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--aged-gold);
}

.youtube-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.library .text-card {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.faq {
  background: transparent;
}

.faq-list {
  display: grid;
  gap: 0;
  max-width: 920px;
}

.faq-list details {
  border-bottom: 1px solid rgba(142, 151, 163, 0.22);
}

.faq-list summary {
  margin: 0;
  padding: 16px 0;
  cursor: pointer;
  color: #aeb3b8;
  font-family: var(--font-header);
  font-size: clamp(0.84rem, 1.5vw, 1.02rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.faq-list summary::marker {
  color: var(--aged-gold-dark);
}

.faq-list details[open] summary {
  color: #c3c9cf;
}

.faq-list details p {
  max-width: 780px;
  margin: 0;
  padding: 0 0 18px 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}

.closing {
  overflow: hidden;
  min-height: 78vh;
  display: grid;
  align-items: center;
}

.closing::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(1, 5, 13, 0.54) 48%, rgba(0, 0, 0, 0.38)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.64)),
    url("assets/oceano-noturno-realista.png") center center / cover no-repeat;
  opacity: 1;
}

.closing-panel {
  position: relative;
  max-width: 840px;
  padding: clamp(18px, 3vw, 34px) 0 clamp(18px, 3vw, 34px) clamp(22px, 3vw, 36px);
  border-left: 1px solid var(--line);
  border-radius: 0;
}

.closing-panel h2 {
  margin-top: 10px;
}

.closing-panel p {
  max-width: 720px;
  color: var(--muted);
}

.closing-panel .button {
  margin-top: 30px;
}

.site-footer {
  position: relative;
  padding: 28px 0;
  color: var(--muted);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(1, 5, 13, 0.58)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.62)),
    url("assets/oceano-noturno-realista.png") center bottom / cover no-repeat;
  border-top: 1px solid rgba(142, 151, 163, 0.24);
  font-family: var(--font-header);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer-title {
  margin: 0;
  color: var(--gold-bright);
  font-size: clamp(1.22rem, 2.2vw, 1.7rem);
  line-height: 1;
}

.footer-subtitle {
  margin-top: 4px;
  color: var(--silver);
  font-size: clamp(0.82rem, 1.35vw, 1rem);
  line-height: 1.1;
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: right;
}

.footer-info p {
  color: var(--silver);
  font-size: 0.9rem;
}

.footer-inner a {
  color: var(--gold-bright);
  text-decoration: none;
}

.footer-contact {
  min-height: 36px;
  padding: 8px 14px;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.footer-social {
  width: 38px;
  min-width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  background: rgba(3, 4, 4, 0.84);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
}

.footer-social .youtube-symbol,
.footer-social .instagram-symbol {
  width: 21px;
  height: 21px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .split,
  .split.reverse,
  .founder-layout,
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: minmax(260px, 348px) minmax(220px, 290px);
    gap: clamp(24px, 5vw, 56px);
    justify-content: start;
    min-height: auto;
  }

  .hero-panel {
    max-width: 560px;
  }

  .founder-portrait {
    justify-self: start;
    width: min(100%, 420px);
  }

  .cards.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-row,
  .point-player-grid,
  .guide-steps,
  .cards.two {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex-basis: calc((100% - 14px) / 2);
  }

  .library .text-card {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 17px;
  }

  .site-header {
    gap: 12px;
    padding-inline: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    padding: 0;
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    min-height: 92svh;
    padding-top: 150px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-copy {
    max-width: 420px;
  }

  .hero-video {
    width: min(290px, 72vw, 44vh);
  }

  .hero-caption {
    padding: 10px 12px;
    font-size: 0.72rem;
    line-height: 1.28;
  }

  .hero-caption p + p {
    margin-top: 5px;
  }

  h1 {
    max-width: 15em;
    font-size: clamp(1.34rem, 7.2vw, 2rem);
    line-height: 1.16;
  }

  .standard-section-title {
    font-size: clamp(1.02rem, 5vw, 1.36rem);
    letter-spacing: 0.025em;
    white-space: normal;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(4, 5, 5, 0.64), rgba(4, 5, 5, 0.94)),
      linear-gradient(90deg, rgba(4, 5, 5, 0.9), rgba(4, 5, 5, 0.22)),
      url("assets/hero-eremita-realista.png") 68% top / cover no-repeat;
  }

  .service-card h3 {
    min-height: auto;
    font-size: 0.78rem;
  }

  .founder-portrait {
    width: 100%;
    padding: 10px;
  }

  .founder-portrait::after {
    inset: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .guide-steps article {
    min-height: auto;
  }

  .cards.four {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex-basis: 100%;
    min-height: 250px;
  }

  .closing-panel {
    padding-left: 18px;
  }

  .service-card,
  .hero-panel {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .card-candle {
    min-height: auto;
  }

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

  .footer-info {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }

  .floating-whatsapp {
    left: auto;
    right: 18px;
  }
}
