﻿:root {
  --ivory: #f6f1e8;
  --ink: #141414;
  --forest: #2e3a34;
  --gold: #bfa767;
  --gold-soft: #f2d998;
  --bg: #f6f1eb;
  --ink-soft: #2a3b4a;
  --green: #1f3d36;
  --terracotta: var(--gold);
  --line: #cfc7bd;
  --card: #fbf7f2;
  --shadow: rgba(15, 30, 45, 0.12);
  --utility-height: 38px;
  --header-height: 96px;
  --nav-gap: 30px;
  --nav-font-size: 11px;
  --nav-letter-spacing: 0.18em;
  --utility-letter-spacing: 0.18em;
  --header-text: rgba(255, 255, 255, 0.8);
  --utility-text: rgba(255, 255, 255, 0.8);
  --header-glass: rgba(20, 40, 34, 0.62);
  --header-border: rgba(255, 255, 255, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, #f1ece6 0%, transparent 45%),
    radial-gradient(circle at 90% 0%, #eef3f1 0%, transparent 40%),
    linear-gradient(180deg, #f7f1eb 0%, #f3eee7 50%, #f7f2ec 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
      0deg,
      rgba(15, 30, 45, 0.03) 0px,
      rgba(15, 30, 45, 0.03) 1px,
      transparent 1px,
      transparent 2px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(15, 30, 45, 0.02) 0px,
      rgba(15, 30, 45, 0.02) 1px,
      transparent 1px,
      transparent 2px
    );
  opacity: 0.35;
  z-index: 0;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.rule {
  height: 1px;
  background: rgba(20, 20, 20, 0.12);
}

.rule--light {
  background: rgba(255, 255, 255, 0.18);
}

.header-wrap {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background-color 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
}

.header-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 16, 18, 0.52) 0%,
    rgba(10, 16, 18, 0.24) 55%,
    rgba(10, 16, 18, 0) 100%
  );
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.25s ease;
}

.header-wrap > * {
  position: relative;
  z-index: 1;
}

.header-wrap.is-scrolled {
  background-color: var(--header-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--header-border);
}

.header-wrap.is-scrolled::before {
  opacity: 0;
}

.lux-utility {
  height: var(--utility-height);
  background: transparent;
  border-bottom: 1px solid transparent;
  color: var(--utility-text);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--utility-letter-spacing);
  display: flex;
  align-items: center;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.lux-utility__inner {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lux-utility__group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lux-utility__group a,
.lux-utility__group button {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  background: transparent;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.lux-utility__group a:hover,
.lux-utility__group button:hover {
  color: rgba(255, 255, 255, 1);
}

.lux-utility__search svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.lux-main {
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background-color 0.25s ease;
}

.lux-main__inner {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 24px;
}

.lux-nav {
  display: flex;
  gap: var(--nav-gap);
  align-items: center;
  font-size: var(--nav-font-size);
  text-transform: uppercase;
  letter-spacing: var(--nav-letter-spacing);
  color: var(--header-text);
  font-weight: 400;
}

.lux-nav a {
  transition: color 0.2s ease;
}

.lux-nav a:hover {
  color: #fff;
}

.lux-nav--left {
  justify-content: flex-start;
  grid-column: 1;
}

.lux-nav--right {
  justify-content: flex-end;
  grid-column: 3;
}

.lux-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  grid-column: 2;
  position: relative;
}

.lux-brand::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 240px;
  height: 140px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.08) 45%,
    transparent 70%
  );
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.25s ease;
}

.lux-brand > * {
  position: relative;
  z-index: 1;
}

.lux-brand__logo img {
  height: 62px;
  width: auto;
  display: block;
  filter: brightness(1.05) saturate(0.95) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.lux-brand__tagline {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.header-wrap.is-scrolled .lux-utility {
  background: rgba(255, 255, 255, 0.04);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.header-wrap.is-scrolled .lux-main {
  background: transparent;
}

.header-wrap.is-scrolled .lux-brand::before {
  opacity: 0;
}

.lux-actions {
  grid-column: 3;
  justify-self: end;
  display: none;
  align-items: center;
  gap: 10px;
}

.lux-quick {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lux-quick svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.lux-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  cursor: pointer;
}

.lux-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

@media (max-width: 920px) {
  .lux-nav {
    display: none;
  }

  .lux-actions {
    display: inline-flex;
    gap: 12px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 8px;
  }

  .lux-main__inner,
  .lux-utility__inner {
    width: min(1200px, calc(100% - 32px));
  }

  .lux-main__inner {
    position: relative;
    grid-template-columns: 1fr;
  }

  .lux-brand {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .lux-brand__logo img {
    height: 48px;
  }

  .lux-brand__tagline {
    font-size: 9px;
    letter-spacing: 0.12em;
    line-height: 1.4;
    max-width: 26ch;
    margin-left: auto;
    margin-right: auto;
  }

  .lux-quick {
    width: 36px;
    height: 36px;
    padding: 0;
    justify-content: center;
  }

  .lux-quick span {
    display: none;
  }

  .lux-quick svg {
    width: 16px;
    height: 16px;
  }

  .lux-burger {
    width: 36px;
    height: 36px;
    padding: 0;
  }

  .lux-burger span {
    width: 16px;
  }

  .lux-utility__group {
    gap: 14px;
  }
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 40px;
  border-radius: 999px;
  background: var(--gold);
  border: none;
  color: #1b1b1b;
  font-size: 16px;
  letter-spacing: 0.04em;
  font-weight: 600;
  text-transform: none;
  box-shadow: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cta:hover {
  transform: translateY(-1px);
  background: var(--gold-soft);
  color: #1b1b1b;
}

.cta--solid {
  background: var(--gold);
  color: #1b1b1b;
  border: none;
}

.cta--solid:hover {
  background: var(--gold-soft);
}

/* IGTA HERO */
.hero-cta .cta {
  height: 42px;
  padding: 0 26px;
  background: rgba(191, 167, 103, 0.95);
  color: #1b1b1b;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
  text-transform: none;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.hero-cta .cta:hover {
  background: rgba(210, 186, 124, 0.95);
  border-color: rgba(255, 255, 255, 0.35);
  transform: none;
}

.hero-cta .cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 3px;
}

.cta--small {
  height: 42px;
  padding: 0 22px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(110px, 12vh, 160px) 0 clamp(70px, 10vh, 120px);
  color: #f7f2ec;
  background: #162533;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 50% 45%, rgba(16, 21, 20, 0.2), rgba(16, 21, 20, 0) 60%),
    linear-gradient(180deg, rgba(16, 21, 20, 0.35) 0%, rgba(16, 21, 20, 0.18) 35%, rgba(16, 21, 20, 0.35) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 36px;
}

.hero-content > * {
  position: relative;
  z-index: 1;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 18px;
}

h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.2;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 24px;
}

.hero h1 {
  color: #ffffff;
  font-size: clamp(3.6rem, 7vw, 5.4rem);
  letter-spacing: -0.01em;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero .cta-group {
  align-items: center;
}

.hero-title {
  margin: 0 0 24px;
}

.hero-subtitle {
  margin: 0 0 30px;
}

.hero-cta {
  margin-bottom: 0;
}

.hero-micro {
  margin: 12px 0 0;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.68);
}

.hero-footnote {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: rgba(196, 149, 122, 0.9);
}

.cta-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
}

.hero .cta-note {
  color: rgba(255, 255, 255, 0.7);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(237, 229, 216, 0.3);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.hero-chips span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-chips span + span::before {
  content: "●";
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.55);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  z-index: 0;
}

/* IGTA TESE */
.tese {
  --bg-ivory: var(--ivory);
  --ink-2: rgba(20, 20, 20, 0.88);
  --muted: rgba(20, 20, 20, 0.62);
  --hairline: rgba(20, 20, 20, 0.1);
  --serif: "Cormorant Garamond", serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  position: relative;
  color: var(--ink);
}

.tese--light {
  background: var(--bg-ivory);
}

.tese__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.tese__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin: 0;
}

.tese__title {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  font-size: clamp(2.8rem, 4.6vw, 4rem);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.tese__text {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-2);
  font-weight: 400;
  margin: 0;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

.panda-vsl {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
}

.panda-vsl iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 480px) {
  .panda-vsl {
    border-radius: 14px;
  }
}

.tese__link {
  align-self: center;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 6px;
  position: relative;
  text-transform: uppercase;
}

.tese__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transition: background 0.2s ease;
}

.tese__link:hover,
.tese__link:focus-visible {
  color: var(--gold-soft);
}

.tese__link:hover::after,
.tese__link:focus-visible::after {
  background: var(--gold-soft);
}

.tese__link:focus-visible {
  outline: 2px solid rgba(191, 167, 103, 0.35);
  outline-offset: 4px;
}

.tese__note {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0;
}

/* IGTA SEPARATOR */
.igtaSeparator {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  display: flex;
  align-items: center;
  padding: 0;
}

.igtaSeparator__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  z-index: 0;
}

.igtaSeparator::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 520px at 50% 45%, rgba(14, 23, 20, 0.12), rgba(14, 23, 20, 0.62)),
    radial-gradient(120% 120% at 50% 20%, rgba(14, 23, 20, 0.08), rgba(14, 23, 20, 0.78)),
    linear-gradient(180deg, rgba(14, 23, 20, 0.74), rgba(14, 23, 20, 0.52));
  opacity: 0.92;
  mix-blend-mode: normal;
  z-index: 1;
}

.igtaSeparator::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image: url("assets/ui/noise.png");
  mix-blend-mode: overlay;
  z-index: 2;
}

.igtaSeparator__content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 44px) 24px;
  text-align: center;
}

.igtaSeparator--left .igtaSeparator__content {
  text-align: left;
}

.igtaSeparator__eyebrow {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  letter-spacing: 0.22em;
  font-size: 12px;
  opacity: 0.85;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.igtaSeparator__line1 {
  font-family: "Cormorant Garamond", serif;
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--gold-soft);
  font-weight: 500;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.igtaSeparator__line2 {
  margin: 14px 0 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(14px, 1.5vw, 18px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

@media (min-width: 980px) {
  .igtaSeparator {
    min-height: 240px;
  }
}

/* IGTA BLOCO 3 */
.section-programa {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.92);
  border-top-color: rgba(255, 255, 255, 0.14);
}

.programa__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.programa-kicker {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.programa-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.05;
  font-size: clamp(2.8rem, 4.6vw, 3.8rem);
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.programa-text {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 62ch;
  margin: 0 0 28px;
}

.programa-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.programa-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease,
    color 0.25s ease;
}

/* IGTA PROGRAMA IMAGENS */
.programa-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  height: clamp(160px, 22vw, 220px);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(16, 21, 20, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.programa-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(16, 21, 20, 0.06) 0%,
    rgba(16, 21, 20, 0) 45%,
    rgba(16, 21, 20, 0.12) 100%
  );
  pointer-events: none;
}

.programa-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.programa-card:hover {
  border-color: rgba(242, 217, 152, 0.6);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.programa-card__number {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.programa-card:hover .programa-card__number {
  color: var(--gold-soft);
}

.programa-card__title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.programa-card__text {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.programa-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.programa-card__chips span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.programa-card__link {
  align-self: flex-start;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.programa-card__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.programa-card__link:hover,
.programa-card__link:focus-visible {
  color: var(--gold-soft);
}

.programa-card__link:hover::after,
.programa-card__link:focus-visible::after {
  transform: scaleX(1);
}

.programa-card__link:focus-visible {
  outline: 2px solid rgba(191, 167, 103, 0.35);
  outline-offset: 4px;
}

/* IGTA PROGRAMA CTA */
.programa-cta {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.programa-cta__link {
  text-transform: none;
  letter-spacing: 0.06em;
}

.programa-cta__micro {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.7);
}

/* IGTA BLOCO 5 */
.science {
  background: var(--ivory);
  padding: clamp(80px, 9vw, 120px) 0;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
}

.science__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.science__media {
  grid-column: span 6;
  position: relative;
  height: clamp(360px, 48vw, 560px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(16, 21, 20, 0.08);
  background: rgba(235, 228, 219, 0.6);
}

.science__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(16, 21, 20, 0.08) 0%,
    rgba(16, 21, 20, 0.02) 50%,
    rgba(16, 21, 20, 0.18) 100%
  );
  pointer-events: none;
}

.science__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.science__panel {
  grid-column: span 6;
  padding: clamp(28px, 3.2vw, 40px);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 22px;
  box-shadow: 0 22px 50px rgba(20, 20, 20, 0.08);
}

.science__eyebrow {
  margin: 0 0 12px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.science__title {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(36px, 4.2vw, 52px);
  line-height: 1.08;
  color: var(--ink);
}

.science__text {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(20, 20, 20, 0.82);
  margin: 0 0 16px;
  max-width: 52ch;
}

.science__text p {
  margin: 0 0 14px;
}

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

.science__tagline {
  margin: 18px 0 10px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20, 20, 20, 0.5);
}

.science__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.science__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.science__link:hover::after,
.science__link:focus-visible::after {
  transform: scaleX(1);
}

.science__link:focus-visible {
  outline: 2px solid rgba(191, 167, 103, 0.35);
  outline-offset: 4px;
}

.science__note {
  margin: 10px 0 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 12px;
  color: rgba(20, 20, 20, 0.6);
}

/* IGTA BLOCO 4 */
.section-kusnacht {
  --kus-bg: var(--ivory);
  --kus-ink: var(--ink);
  --kus-text: rgba(20, 20, 20, 0.72);
  --kus-muted: rgba(20, 20, 20, 0.6);
  --kus-hairline: rgba(20, 20, 20, 0.12);
  --kus-gold: var(--gold);
  --kus-gold-soft: var(--gold-soft);
  background: var(--kus-bg);
  color: var(--kus-ink);
}

.kusnacht__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: stretch;
}

.kusnacht__media {
  border-radius: 18px;
  min-height: 420px;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #d8d2c8;
  border: 1px solid var(--kus-hairline);
}

.kusnacht__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(30, 43, 39, 0.35), rgba(30, 43, 39, 0.08)),
    radial-gradient(circle at 20% 20%, rgba(191, 167, 103, 0.18), transparent 60%);
  z-index: 1;
}

.kusnacht__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.kusnacht__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.kusnacht__kicker {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kus-muted);
  margin: 0;
}

.kusnacht__title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.05;
  font-size: clamp(2.6rem, 4.2vw, 3.5rem);
  color: var(--kus-ink);
  margin: 0;
}

.kusnacht__text {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--kus-text);
  margin: 0;
}

.kusnacht__accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--kus-hairline);
}

.kusnacht__item {
  border: none;
  border-bottom: 1px solid var(--kus-hairline);
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.kusnacht__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--kus-ink);
}

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

.kusnacht__item summary::marker {
  content: "";
}

.kusnacht__item summary::after {
  content: "+";
  font-size: 18px;
  color: var(--kus-gold);
}

.kusnacht__item[open] summary::after {
  content: "-";
  color: var(--kus-gold-soft);
}

.kusnacht__item summary:focus-visible {
  outline: 2px solid rgba(191, 167, 103, 0.35);
  outline-offset: 4px;
}

.kusnacht__item p {
  margin: 0 0 18px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--kus-text);
}

.kusnacht__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  background: transparent;
  color: var(--kus-ink);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--kus-gold);
  transition: background 0.2s ease, transform 0.2s ease;
}

.kusnacht__cta:hover,
.kusnacht__cta:focus-visible {
  background: var(--kus-gold-soft);
}

.kusnacht__cta:focus-visible {
  outline: 2px solid rgba(191, 167, 103, 0.35);
  outline-offset: 4px;
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 120px) 0;
}

.section:not(.igtaSeparator)::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("/assets/textures/noise.png");
  background-repeat: repeat;
  mix-blend-mode: multiply;
  z-index: 0;
}

.section > *:not(.igtaSeparator__bg):not(.igtaSeparator__content) {
  position: relative;
  z-index: 1;
}

.section--flush {
  border-top: none;
}

.section--offwhite {
  background: var(--ivory);
}

.section--navy {
  background: #1a2332;
  color: #f7f2ec;
}

.section--navy h2 {
  color: #f7f2ec;
}

.section--navy .body {
  color: rgba(247, 242, 236, 0.82);
}

.section-media {
  border-radius: 24px;
  min-height: 320px;
  background: linear-gradient(145deg, rgba(15, 30, 45, 0.45), rgba(15, 30, 45, 0.15)),
    radial-gradient(circle at 30% 20%, rgba(179, 106, 77, 0.15), transparent 60%),
    #d8d2c8;
  border: 1px solid rgba(247, 242, 236, 0.18);
}

.body--light {
  color: rgba(247, 242, 236, 0.82);
}

.body--strong {
  color: rgba(247, 242, 236, 0.95);
  font-weight: 500;
}

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

.section-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
  padding-top: 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
  opacity: 0.7;
}

.timeline-step {
  position: relative;
  padding-top: 18px;
}

.step-icon {
  position: absolute;
  top: -14px;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

.muted {
  color: #6c7b87;
}

.statements,
.limits {
  display: grid;
  gap: 14px;
  font-size: 18px;
  font-weight: 500;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 32px 0 40px;
}

.step {
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.45);
}

.step-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin: 0 0 10px;
}

.quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.pillars span {
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.6);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.photo {
  border-radius: 20px;
  min-height: 220px;
  background: linear-gradient(140deg, rgba(31, 61, 54, 0.22), transparent),
    radial-gradient(circle at 30% 20%, rgba(179, 106, 77, 0.2), transparent 60%),
    #ded5cb;
  border: 1px solid rgba(15, 30, 45, 0.08);
}

.faqs {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.55);
}

summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}

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

details p {
  margin-top: 12px;
}

.contact {
  background: rgba(255, 255, 255, 0.4);
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: var(--card);
  box-shadow: 0 18px 40px var(--shadow);
}

.card-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin: 0 0 12px;
}

.note {
  color: #6c7b87;
  font-size: 14px;
}

.site-footer {
  padding: 36px 0 56px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: clamp(100px, 14vh, 140px) 0 clamp(60px, 10vh, 90px);
  }

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

  .steps,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .timeline::before {
    display: none;
  }

  .timeline-step {
    padding-top: 0;
  }

  .step-icon {
    position: static;
    margin-bottom: 12px;
  }

  .section-media {
    min-height: 220px;
  }

  .hero-content {
    max-width: 100%;
  }

  .tese__inner {
    gap: 20px;
  }

  .tese__title {
    font-size: clamp(2.1rem, 8.5vw, 2.8rem);
    line-height: 1.1;
  }

  .tese__text {
    font-size: 16px;
    line-height: 1.65;
  }

  .section-cta {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .programa__inner {
    gap: 16px;
  }

  .programa-title {
    font-size: clamp(2.2rem, 7.5vw, 2.9rem);
  }

  .programa-text {
    font-size: 16px;
    margin-bottom: 18px;
  }

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

  .programa-card {
    padding: 26px;
  }

  .kusnacht__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .kusnacht__media {
    min-height: 300px;
  }
}

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

  .science__media,
  .science__panel {
    grid-column: 1 / -1;
  }

  .science__panel {
    order: 2;
  }

  .science__media {
    height: clamp(260px, 62vw, 420px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .tese__link::after {
    transition: none;
  }

  .programa-card__link::after {
    transition: none;
  }

  .cta {
    transition: none;
  }

  .kusnacht__cta {
    transition: none;
  }

  .science__link::after {
    transition: none;
  }

  .science__media::after {
    transition: none;
  }
}

.section-indicacoes{
  background: var(--ivory);
  padding:clamp(84px, 9vw, 140px) 0;
  background-image:
    radial-gradient(1200px 800px at 12% 8%, rgba(255, 255, 255, 0.78), transparent 60%),
    radial-gradient(900px 700px at 88% 18%, rgba(232, 224, 214, 0.55), transparent 65%),
    radial-gradient(700px 520px at 40% 82%, rgba(255, 255, 255, 0.6), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(244, 238, 231, 0.35));
}

.indicacoes__head{
  max-width: 980px;
  margin: 0 auto 54px;
}

.indicacoes__eyebrow{
  margin:0 0 14px;
  font-family:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold);
}

.indicacoes__title{
  margin:0 0 18px;
  font-family:"Cormorant Garamond", serif;
  font-style:italic;
  font-weight:600;
  font-size:clamp(40px, 4.6vw, 58px);
  line-height:1.03;
  color:var(--ink);
}

.indicacoes__lead{
  margin:0;
  font-family:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:clamp(18px, 1.55vw, 22px);
  line-height:1.75;
  color:rgba(58,58,58,.92);
  max-width: 68ch;
}

.indicacoes__content{
  margin-top: 34px;
}

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

.indicacoes__card{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(45, 74, 62, .14);
  border-radius: 20px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.indicacoes__card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(0,0,0,.10);
  border-color: rgba(45, 74, 62, .22);
}

.indicacoes__cardKicker{
  margin:0 0 10px;
  font-family:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color: rgba(45, 74, 62, .55);
}

.indicacoes__cardTitle{
  margin:0 0 8px;
  font-family:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:13px;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:#1f2f2a;
}

.indicacoes__cardText{
  margin:0;
  font-family:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:14px;
  line-height:1.6;
  color: rgba(58,58,58,.88);
}

.indicacoes__footer{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(45, 74, 62, .12);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.indicacoes__note{
  margin:0;
  font-family:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:14px;
  font-style:italic;
  line-height:1.6;
  color: rgba(58,58,58,.72);
  max-width: 60ch;
}

.indicacoes__cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border:1px solid var(--gold);
  color:var(--gold);
  background:transparent;
  border-radius:999px;
  padding:12px 16px;
  text-decoration:none;
  font-family:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}

.indicacoes__cta:hover{
  background:var(--gold);
  color:#fff;
  border-color:var(--gold);
  transform: translateY(-1px);
}

@media (max-width: 640px){
  .indicacoes__grid{
    grid-template-columns: 1fr;
  }
  .indicacoes__footer{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- Science: refinamento luxo + destaque IBOGAÍNA --- */
.science__eyebrow{
  letter-spacing:.18em;
  text-transform:uppercase;
}

.science__eyebrow-chip{
  display:inline-block;
  padding:.22rem .55rem;
  margin-left:.25rem;
  border-radius:999px;
  border:1px solid rgba(191,167,103,.45);
  background:rgba(191,167,103,.08);
  color:rgba(191,167,103,.95);
  letter-spacing:.22em;
}

.science__title{
  margin-top:12px;
  max-width:22ch;
  line-height:1.04;
  letter-spacing:-.02em;
}

.science__title-line{
  display:block;
}

.science__title-em{
  position:relative;
  display:inline-block;
}

.science__title-em::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:.06em;
  height:1px;
  background:rgba(191,167,103,.85);
}

.science__term{
  font-weight:600;
  color:rgba(191,167,103,.95);
}

.science__term:hover{
  text-decoration:underline;
  text-underline-offset:3px;
  text-decoration-thickness:1px;
}

/* Se o painel estiver largo demais, controlamos a leitura */
.science__panel, .tese__inner, .science__inner{
  max-width:560px;
}

/* Watermark opcional (sutil) — só se existir .science__card ou .science__panel */
.science__card, .science__panel{
  position:relative;
}

.science__card::after, .science__panel::after{
  content:"IBOGAÍNA";
  position:absolute;
  right:28px;
  bottom:22px;
  font-family:"Cormorant Garamond", serif;
  font-size:42px;
  letter-spacing:.08em;
  color:rgba(191,167,103,.10);
  pointer-events:none;
}

/* --- BLOCO 9 + 11: Comparativo e Investimento --- */
.section--dark{
  background: radial-gradient(1200px 600px at 70% 0%, rgba(191,167,103,.12), transparent 55%),
    linear-gradient(180deg, #0c2020, #102a2b);
}

.kicker{
  letter-spacing:.22em;
  text-transform:uppercase;
  font: 500 12px/1.2 "Inter", system-ui, sans-serif;
  color: rgba(20,20,20,.55);
  margin:0 0 14px;
}

.kicker--light{
  color: rgba(246,241,232,.70);
}

.display{
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  letter-spacing:-.02em;
  font-size: clamp(36px, 4.8vw, 56px);
  line-height:1.02;
  margin:0 0 14px;
  color: var(--ink);
}

.display--light{
  color: var(--ivory);
}

.lede{
  max-width: 62ch;
  margin:0;
  color: rgba(20,20,20,.68);
  font: 400 18px/1.6 "Inter", system-ui, sans-serif;
}

.lede--light{
  color: rgba(246,241,232,.75);
}

.note{
  margin:18px 0 0;
  color: rgba(20,20,20,.55);
  font: 400 13px/1.6 "Inter", system-ui, sans-serif;
}

.note--light{
  color: rgba(246,241,232,.60);
}

.link{
  display:inline-flex;
  gap:.55rem;
  margin-top:18px;
  color: var(--gold);
  text-decoration:none;
  font: 500 13px/1.2 "Inter", system-ui, sans-serif;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.link:hover{
  text-decoration:underline;
  text-underline-offset:4px;
}

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

/* --- BLOCO 9: Comparativo --- */
.compare__head{
  max-width: 900px;
}

.compare__wrap{
  margin-top: 34px;
  border-radius: 18px;
  overflow:auto;
  border: 1px solid rgba(246,241,232,.10);
  background: rgba(255,255,255,.02);
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
  position:relative;
  opacity: 0;
  transform: translateY(10px);
  animation: softLift 0.7s ease forwards;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.compare__wrap::before,
.compare__wrap::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width:42px;
  pointer-events:none;
  opacity:0;
  transition:opacity .25s ease;
}

.compare__wrap::before{
  left:0;
  background: linear-gradient(90deg, rgba(12,32,32,.95), transparent);
}

.compare__wrap::after{
  right:0;
  background: linear-gradient(-90deg, rgba(12,32,32,.95), transparent);
}

.compare__wrap:focus-within::before,
.compare__wrap:focus-within::after{
  opacity:1;
}

.compare__wrap:hover{
  transform: translateY(-2px);
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
}

.compare__table{
  width:100%;
  min-width: 820px;
  border-collapse:separate;
  border-spacing:0;
  color: rgba(246,241,232,.88);
  font-family: "Inter", system-ui, sans-serif;
}

.compare__table th,
.compare__table td{
  padding: 18px 18px;
  border-bottom: 1px solid rgba(246,241,232,.10);
  vertical-align:middle;
}

.compare__table thead th{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(246,241,232,.65);
  background: rgba(255,255,255,.03);
  position:sticky;
  top:0;
  backdrop-filter: blur(10px);
}

.compare__table tbody td:first-child{
  color: rgba(246,241,232,.70);
  font-weight:500;
}

.compare__table .is-igta{
  background: linear-gradient(180deg, rgba(191,167,103,.12), rgba(191,167,103,.05));
}

.compare__table .badge{
  display:inline-block;
  margin-left:10px;
  padding:.22rem .55rem;
  border-radius:999px;
  border:1px solid rgba(191,167,103,.35);
  background: rgba(191,167,103,.10);
  color: rgba(246,241,232,.78);
  font-size: 10px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.compare__foot{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:18px;
  flex-wrap:wrap;
  margin-top: 18px;
}

/* --- BLOCO 11: Investimento --- */
.pricing{
  background: var(--ivory);
}

.pricing__head{
  max-width: 900px;
}

.pricing__grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.plan{
  grid-column: span 4;
  border-radius: 18px;
  border: 1px solid rgba(15,27,29,.12);
  background: rgba(255,255,255,.55);
  box-shadow: 0 20px 60px rgba(15,27,29,.10);
  overflow:hidden;
  opacity: 0;
  transform: translateY(12px);
  animation: softLift 0.7s ease forwards;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.plan:nth-child(1){ animation-delay: 0.05s; }
.plan:nth-child(2){ animation-delay: 0.12s; }
.plan:nth-child(3){ animation-delay: 0.18s; }

.plan:hover{
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(15,27,29,.14);
}

.plan__top{
  padding: 22px 22px 14px;
  border-bottom: 1px solid rgba(15,27,29,.12);
}

.plan__name{
  margin:0 0 10px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font: 600 12px/1.2 "Inter", system-ui, sans-serif;
  color: rgba(20,20,20,.62);
}

.plan__price{
  margin:0;
  font-family:"Cormorant Garamond", serif;
  font-size: 34px;
  line-height:1.1;
  color: var(--ink);
}

.plan__from{
  font: 500 12px/1.2 "Inter", system-ui, sans-serif;
  color: rgba(20,20,20,.55);
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-left:8px;
}

.plan__sub{
  margin: 10px 0 0;
  color: rgba(20,20,20,.68);
  font: 400 14px/1.5 "Inter", system-ui, sans-serif;
}

.plan__sub--muted{
  color: rgba(20,20,20,.52);
}

.plan__list{
  list-style:none;
  padding: 18px 22px 8px;
  margin:0;
  display:grid;
  gap:10px;
  color: rgba(20,20,20,.72);
  font: 400 14px/1.55 "Inter", system-ui, sans-serif;
}

.plan__cta{
  margin: 14px 22px 22px;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.plan--featured{
  background: linear-gradient(180deg, rgba(191,167,103,.12), rgba(255,255,255,.55));
  border-color: rgba(191,167,103,.35);
}

.plan--featured .plan__name{
  color: rgba(20,20,20,.72);
}

.plan--dark{
  background: linear-gradient(180deg, rgba(15,27,29,.95), rgba(12,32,32,.95));
  border-color: rgba(246,241,232,.14);
}

.plan--dark .plan__name,
.plan--dark .plan__list,
.plan--dark .plan__sub,
.plan--dark .plan__from{
  color: rgba(246,241,232,.75);
}

.plan--dark .plan__price{
  color: rgba(246,241,232,.92);
}

.pricing__foot{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:18px;
  flex-wrap:wrap;
  margin-top: 18px;
}

.cta--ghost{
  background: transparent;
  border: 1px solid rgba(191,167,103,.55);
  color: rgba(191,167,103,.95);
}

.cta--ghost:hover{
  background: rgba(191,167,103,.10);
}

@keyframes softLift{
  to{
    opacity:1;
    transform: translateY(0);
  }
}

@media (max-width: 980px){
  .plan{
    grid-column: span 12;
  }

  .compare__table{
    min-width: 720px;
  }

  .compare__wrap::before,
  .compare__wrap::after{
    opacity:1;
  }
}

@media (prefers-reduced-motion: reduce){
  .compare__wrap,
  .plan{
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* IGTA FAQ */
.section-faq{
  background: var(--ivory);
}

.faq__inner{
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.faq__head{
  max-width: 900px;
}

.faq__list{
  display: grid;
  gap: 14px;
}

.faq-item{
  border: 1px solid rgba(16,21,20,0.10);
  border-radius: 18px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.45);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open]{
  border-color: rgba(191,167,103,0.45);
  background: rgba(255,255,255,0.7);
  box-shadow: 0 16px 40px rgba(15,27,29,0.08);
}

.faq-item summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: rgba(20,20,20,0.88);
}

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

.faq-item summary::marker{
  content: "";
}

.faq-item summary::after{
  content: "+";
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

.faq-item[open] summary{
  color: var(--gold);
}

.faq-item[open] summary::after{
  content: "-";
  color: var(--gold);
}

.faq-item p{
  margin: 12px 0 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(20,20,20,0.72);
}

.faq__foot{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.faq__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.faq__cta:hover,
.faq__cta:focus-visible{
  background: rgba(191,167,103,0.12);
  color: var(--gold);
  transform: translateY(-1px);
}

.faq__cta:focus-visible{
  outline: 2px solid rgba(191,167,103,0.35);
  outline-offset: 3px;
}

.faq__link{
  color: rgba(191,167,103,0.95);
  text-decoration: none;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq__link:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 640px){
  .faq-item{
    padding: 16px 16px;
  }

  .faq-item summary{
    font-size: 16px;
  }

  .faq-item p{
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce){
  .faq-item,
  .faq__cta{
    transition: none;
  }
}

/* IGTA PROVA SOCIAL */
.proof{
  background: #2d4a3e;
  color: rgba(247,242,236,0.92);
}

.proof__inner{
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.proof__head{
  max-width: 900px;
}

.proof__eyebrow{
  margin: 0 0 12px;
  font: 500 12px/1.2 "Inter", system-ui, sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,242,236,0.7);
}

.proof__title{
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(36px, 4.6vw, 54px);
  line-height: 1.05;
  color: #f7f2ec;
}

.proof__sub{
  margin: 0;
  font: 400 17px/1.6 "Inter", system-ui, sans-serif;
  color: rgba(247,242,236,0.72);
}

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

.proof__stat{
  border: 1px solid rgba(191,167,103,0.22);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255,255,255,0.03);
}

.proof__statValue{
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 4vw, 44px);
  color: var(--gold-soft);
}

.proof__statLabel{
  margin: 0;
  font: 500 12px/1.2 "Inter", system-ui, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,242,236,0.65);
}

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

.proof__card{
  border: 1px solid rgba(191,167,103,0.3);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.proof__card:hover{
  transform: translateY(-2px);
  border-color: rgba(191,167,103,0.5);
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
}

.proof__media{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(191,167,103,0.25);
  background: rgba(0,0,0,0.25);
  margin-bottom: 14px;
}

.proof__video{
  width: 100%;
  height: 100%;
  display: block;
}

.proof__cardTitle{
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: #f7f2ec;
}

.proof__cardText{
  margin: 0;
  font: 400 14px/1.6 "Inter", system-ui, sans-serif;
  color: rgba(247,242,236,0.7);
}

.proof__foot{
  margin-top: 6px;
}

.proof__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.proof__cta:hover,
.proof__cta:focus-visible{
  background: rgba(191,167,103,0.12);
  transform: translateY(-1px);
}

.proof__cta:focus-visible{
  outline: 2px solid rgba(191,167,103,0.35);
  outline-offset: 3px;
}

.proof__press{
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.proof__press-title{
  margin: 0 0 16px;
  font: 500 12px/1.2 "Inter", system-ui, sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,242,236,0.7);
}

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

.proof__press-card{
  border: 1px solid rgba(191,167,103,0.3);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
}

.proof__press-media{
  position: relative;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(191,167,103,0.25);
  background: rgba(0,0,0,0.25);
}

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

.proof__press-link{
  margin-top: 12px;
  display: inline-flex;
  color: var(--gold);
  font: 500 12px/1.2 "Inter", system-ui, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

.proof__press-link:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 980px){
  .proof__stats,
  .proof__grid,
  .proof__press-grid{
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce){
  .proof__card,
  .proof__cta{
    transition: none;
  }
}

/* IGTA ESTRUTURA TITULO */
.section-kusnacht .kusnacht__title{
  max-width:34ch;
  line-height:1.08;
  letter-spacing:-.02em;
  margin-bottom:22px;
  font-size:clamp(2.2rem, 3.6vw, 3rem);
}

.section-kusnacht .kusnacht__title span{
  display:block;
  white-space:nowrap;
}

.section-kusnacht .kusnacht__bullets{
  margin:0 0 22px;
  display:flex;
  flex-wrap:nowrap;
  gap:0 14px;
  font-size:15px;
  line-height:1.6;
  color:rgba(20,20,20,.68);
}

.section-kusnacht .kusnacht__bullets span{
  display:inline-flex;
  align-items:center;
  white-space:nowrap;
}

.section-kusnacht .kusnacht__bullets span:not(:last-child)::after{
  content:"●";
  margin-left:12px;
  color:rgba(20,20,20,.35);
}

@media (max-width: 640px){
  .section-kusnacht .kusnacht__title{
    font-size:clamp(1.95rem, 7.2vw, 2.4rem);
    max-width:28ch;
  }

  .section-kusnacht .kusnacht__bullets{
    font-size:14px;
    flex-wrap:wrap;
    gap:6px 12px;
  }
}

@media (max-width: 900px){
  .section-kusnacht .kusnacht__title span{
    white-space:normal;
  }
}



.hero-manifesto {
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  color: #ffffff;
  background-image: url("assets/imagem-final.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-manifesto::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 38, 30, 0.72), rgba(0, 0, 0, 0.68));
  z-index: 0;
}

.hero-manifesto__content {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(120px, 14vh, 180px) 0 clamp(80px, 12vh, 140px);
}

.hero-manifesto__inner {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-manifesto__eyebrow {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffffff;
}

.hero-manifesto__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.08;
  color: #ffffff;
}

.hero-manifesto__subtitle {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 52ch;
}

.hero-manifesto__brand {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.hero-manifesto__brand img {
  width: 64px;
  height: auto;
  filter: brightness(1.1);
}

.section-conducao {
  background: #ffffff;
  color: #000000;
}

.conducao__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
}

.conducao__content {
  display: flex;
  flex-direction: column;
}

.conducao__eyebrow {
  margin: 0 0 12px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
}

.conducao__eyebrow--muted {
  color: rgba(0, 0, 0, 0.45);
}

.conducao__title {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  font-style: normal;
  font-weight: 600;
  color: #000000;
}

.conducao__text {
  margin: 0 0 24px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.65);
}

.conducao__cards {
  display: grid;
  gap: 16px;
}

.conducao__card {
  background: #f8f5f2;
  border-left: 3px solid #c4957a;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.conducao__card h3 {
  margin: 0 0 6px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}

.conducao__card p {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}

.conducao__aside {
  position: relative;
}

.conducao__box {
  position: sticky;
  top: 120px;
  background: #f8f5f2;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 40px rgba(15, 27, 29, 0.08);
}

.conducao__box-title {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: #000000;
}

.conducao__box-text {
  margin: 0 0 18px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.65);
}

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

.conducao__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.conducao__btn--dark {
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
}

.conducao__btn--dark:hover,
.conducao__btn--dark:focus-visible {
  background: #1a1a1a;
  transform: translateY(-1px);
}

.conducao__btn--outline {
  background: transparent;
  color: #2b2b2b;
  border: 1px solid #d6d0c7;
}

.conducao__btn--outline:hover,
.conducao__btn--outline:focus-visible {
  border-color: #c4957a;
  color: #000000;
  transform: translateY(-1px);
}

.conducao__note {
  margin: 16px 0 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
}

.site-footer {
  background: #1a2e26;
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(56px, 8vw, 90px) 0 0;
  border-top: none;
  font-size: 14px;
  text-transform: none;
  letter-spacing: normal;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #c4957a;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  width: 88px;
  height: auto;
  filter: brightness(1.05) saturate(0.95);
}

.footer-tagline {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-rating {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.footer-stars {
  color: #c4957a;
}

.footer-title {
  margin: 0 0 14px;
  font-weight: 700;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer-socials-row {
  margin-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials {
  display: flex;
  gap: 12px;
  padding: 22px 0;
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-social:hover,
.footer-social:focus-visible {
  border-color: #c4957a;
  color: #c4957a;
  background: rgba(196, 149, 122, 0.12);
  transform: translateY(-1px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0 38px;
}

.footer-legal__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.footer-legal__inner p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero-manifesto {
    background-attachment: scroll;
  }

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

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

  .conducao__box {
    position: static;
  }
}

@media (max-width: 640px) {
  .hero-manifesto__title {
    font-size: 2.4rem;
  }

  .hero-manifesto__brand {
    flex-direction: column;
  }

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