.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding-top: var(--header-h);
  overflow: hidden;
  z-index: 2;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.75) contrast(1.05) brightness(.45);
  transform: scale(1.06);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 8, .20) 0%, rgba(7, 8, 8, .56) 50%, rgba(7, 8, 8, .96) 100%),
    radial-gradient(circle at center, transparent 20%, rgba(7, 8, 8, .45) 72%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 110px;
  max-width: 900px;
}

.hero h1 {
  margin: 18px 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 8vw, 7rem);
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.03em;
  max-width: 860px;
}

.hero-text {
  max-width: 680px;
  font-size: 1.06rem;
  line-height: 1.8;
  color: #ddd5c8;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 62px;
  background: linear-gradient(180deg, rgba(215, 193, 139, .1), rgba(215, 193, 139, .9));
  animation: floatLine 1.8s ease-in-out infinite alternate;
}

@keyframes floatLine {
  from {
    transform: translateY(-2px)
  }

  to {
    transform: translateY(6px)
  }
}

.section-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.floating-cards {
  position: relative;
  min-height: 560px
}

.floating-card {
  position: absolute;
  width: min(48%, 280px);
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: var(--shadow);
}

.floating-card:first-child {
  top: 0;
  left: 2%
}

.floating-card.offset {
  right: 4%;
  top: 100px;
  z-index: 9999;
}

.floating-card.offset-2 {
  top: 0;
  left: 94%
}

.floating-card img {
  height: 520px;
  width: 100%;
  object-fit: cover
}

.floating-card-caption {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.floating-card-caption strong {
  font-size: 1.05rem
}

.floating-card-caption span {
  color: var(--muted);
  font-size: .88rem
}

.split-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}

.split-media {
  min-height: 900px;
  position: relative;
  overflow: hidden
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.5) saturate(.8)
}

.split-copy {
  background: linear-gradient(180deg, rgba(18, 21, 21, .95), rgba(11, 13, 13, .98));
  border-left: 1px solid var(--line);
}

.sticky-copy {
  position: sticky;
  top: 110px;
  padding: 120px 60px;
  max-width: 620px
}

.bullet-panels {
  display: grid;
  gap: 16px;
  margin-top: 34px
}

.info-panel {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .02);
}

.info-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--gold);
}

.info-panel h3 {
  margin: 8px 0 10px;
  font-size: 1.08rem
}

.info-panel p {
  margin: 0;
  color: var(--muted)
}

.influencer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.influencer-card {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .02);
}

.influencer-card img {
  height: 360px;
  width: 100%;
  object-fit: cover
}

.influencer-card div {
  padding: 18px
}

.influencer-card strong {
  display: block;
  margin-bottom: 6px
}

.influencer-card span {
  color: var(--muted);
  font-size: .92rem
}

@media (max-width: 1100px) {

  .section-grid,
  .split-showcase {
    grid-template-columns: 1fr
  }

  .influencer-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .split-media {
    min-height: 520px
  }

  .sticky-copy {
    position: relative;
    top: auto;
    padding: 80px 20px
  }
}

@media (max-width: 760px) {
  .hero-copy {
    padding-bottom: 96px
  }

  .hero h1 {
    font-size: clamp(2.6rem, 15vw, 4.4rem)
  }

  .hero-text {
    font-size: .98rem
  }

  .floating-cards {
    min-height: 660px
  }

  .floating-card {
    width: 68%
  }

  .floating-card:first-child {
    left: 0
  }

  .floating-card.offset {
    right: 0
  }

  .influencer-grid {
    grid-template-columns: 1fr
  }
}

.hero-card-stack--mixed {
  position: relative;
  width: min(720px, 52vw);
  height: 520px;
}

.hero-card-stack--mixed .hero-feature-card--front {
  position: absolute;
  width: 240px;
  left: 50%;
  top: 20px;
  z-index: 5;

  transform:
    translateX(-50%) rotate(2deg);

  filter:
    drop-shadow(0 24px 48px rgba(0, 0, 0, .42));
}

/* Horizontal esquerda */
.hero-card-stack--mixed .hero-feature-card--back {
  position: absolute;
  width: 340px;

  left: 0;
  top: 170px;

  z-index: 2;

  transform:
    rotate(-8deg);

  filter:
    brightness(.92) drop-shadow(0 18px 34px rgba(0, 0, 0, .28));
}

/* Horizontal direita */
.hero-card-stack--mixed .hero-feature-card--mid {
  position: absolute;
  width: 340px;

  right: 0;
  top: 170px;

  z-index: 1;

  transform:
    rotate(8deg);

  filter:
    brightness(.92) drop-shadow(0 18px 34px rgba(0, 0, 0, .28));
}

.content-carousel {
  position: relative;
  overflow: visible;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  gap: 22px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.influencer-carousel .carousel-track {
  grid-template-columns: none;
  grid-auto-columns: calc((100% - 66px) / 4);
}

.carousel-track > * {
  scroll-snap-align: start;
  min-width: 0;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(8,8,8,.82);
  color: #d5c18b;
  display: grid;
  place-items: center;
  font-size: 2rem;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.carousel-arrow--prev {
  left: -26px;
}

.carousel-arrow--next {
  right: -26px;
}

@media (max-width: 980px) {
  .influencer-carousel .carousel-track {
    grid-auto-columns: 82vw;
    overflow-x: auto;
  }

  .carousel-arrow {
    display: none;
  }
}
.review-card {
  color: inherit;
  text-decoration: none;
}

.review-card span {
  display: block;
  line-height: 1.55;
}

.virtue-orbit {
  --size: min(520px, 38vw);
  --orb: 72px;
  --radius: calc((var(--size) / 2) - (var(--orb) / 2));

  position: relative;
  width: var(--size);
  height: var(--size);
  margin-inline: auto;

  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(215,193,139,.12), transparent 34%),
    radial-gradient(circle at center, rgba(255,255,255,.045), transparent 58%);
}

.virtue-orbit::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  /* border: 1px solid rgba(215,193,139,.18);
  box-shadow:
    inset 0 0 40px rgba(215,193,139,.08),
    0 0 80px rgba(0,0,0,.35); */
}

.virtue-orb {
  position: absolute;
  top: 50%;
  left: 50%;

  width: var(--orb);
  /* height: var(--orb); */
  object-fit: contain;
  /* border-radius: 50%; */

  filter:
    drop-shadow(0 10px 22px rgba(0,0,0,.42))
    drop-shadow(0 0 18px rgba(49,111,255,.18));
}

/* 14 posições no círculo */
.virtue-orb:nth-child(1)  { transform: translate(-50%, -50%) rotate(0deg) translateY(calc(var(--radius) * -1)) rotate(0deg); }
.virtue-orb:nth-child(2)  { transform: translate(-50%, -50%) rotate(25.714deg) translateY(calc(var(--radius) * -1)) rotate(-25.714deg); }
.virtue-orb:nth-child(3)  { transform: translate(-50%, -50%) rotate(51.428deg) translateY(calc(var(--radius) * -1)) rotate(-51.428deg); }
.virtue-orb:nth-child(4)  { transform: translate(-50%, -50%) rotate(77.142deg) translateY(calc(var(--radius) * -1)) rotate(-77.142deg); }
.virtue-orb:nth-child(5)  { transform: translate(-50%, -50%) rotate(102.856deg) translateY(calc(var(--radius) * -1)) rotate(-102.856deg); }
.virtue-orb:nth-child(6)  { transform: translate(-50%, -50%) rotate(128.57deg) translateY(calc(var(--radius) * -1)) rotate(-128.57deg); }
.virtue-orb:nth-child(7)  { transform: translate(-50%, -50%) rotate(154.284deg) translateY(calc(var(--radius) * -1)) rotate(-154.284deg); }
.virtue-orb:nth-child(8)  { transform: translate(-50%, -50%) rotate(180deg) translateY(calc(var(--radius) * -1)) rotate(-180deg); }
.virtue-orb:nth-child(9)  { transform: translate(-50%, -50%) rotate(205.714deg) translateY(calc(var(--radius) * -1)) rotate(-205.714deg); }
.virtue-orb:nth-child(10) { transform: translate(-50%, -50%) rotate(231.428deg) translateY(calc(var(--radius) * -1)) rotate(-231.428deg); }
.virtue-orb:nth-child(11) { transform: translate(-50%, -50%) rotate(257.142deg) translateY(calc(var(--radius) * -1)) rotate(-257.142deg); }
.virtue-orb:nth-child(12) { transform: translate(-50%, -50%) rotate(282.856deg) translateY(calc(var(--radius) * -1)) rotate(-282.856deg); }
.virtue-orb:nth-child(13) { transform: translate(-50%, -50%) rotate(308.57deg) translateY(calc(var(--radius) * -1)) rotate(-308.57deg); }
.virtue-orb:nth-child(14) { transform: translate(-50%, -50%) rotate(334.284deg) translateY(calc(var(--radius) * -1)) rotate(-334.284deg); }

@media (max-width: 760px) {
  .virtue-orbit {
    --size: 320px;
    --orb: 48px;
  }
}
