:root {
  --ink: #090706;
  --charcoal: #141414;
  --steel: #6f7672;
  --bone: #f3eee6;
  --muted: #beb3a7;
  --red: #8d2226;
  --red-bright: #c92f35;
  --gold: #b09a66;
  --line: rgba(243, 238, 230, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--bone);
  background: var(--ink);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 58px);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 7, 6, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

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

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

.brand strong {
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  color: rgba(243, 238, 230, 0.78);
  font-size: 0.8rem;
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--bone);
}

.site-nav .nav-cta {
  background: var(--bone);
  color: var(--ink);
  border-radius: 6px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--bone);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 160ms ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  background-image: url("assets/images/hero.png?v=202606191200");
  background-size: cover;
  background-position: center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 7, 6, 0.96) 0%, rgba(9, 7, 6, 0.76) 36%, rgba(9, 7, 6, 0.22) 66%, rgba(9, 7, 6, 0.18) 100%),
    linear-gradient(0deg, rgba(9, 7, 6, 0.72) 0%, rgba(9, 7, 6, 0) 34%);
}

.hero-content {
  width: min(560px, calc(100% - 40px));
  margin-left: clamp(20px, 6vw, 84px);
  padding-top: 96px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Bebas Neue", "Inter", sans-serif;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  margin-bottom: 20px;
  font-size: clamp(3.35rem, 6.4vw, 6rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 4.6vw, 4.35rem);
}

h3 {
  margin-bottom: 14px;
  font-size: 1.4rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 560px;
  color: rgba(243, 238, 230, 0.82);
  font-size: clamp(1.04rem, 1.6vw, 1.28rem);
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 22px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: #a72a2f;
  color: white;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--bone);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.hero-tags span {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(243, 238, 230, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(9, 7, 6, 0.46);
}

.manifest {
  padding: clamp(58px, 8vw, 92px) 0;
  background: var(--bone);
  color: var(--ink);
}

.manifest-inner {
  display: flex;
  justify-content: center;
  text-align: center;
}

.manifest blockquote {
  margin: 0;
  max-width: 760px;
  padding: 0;
}

.manifest blockquote p {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  white-space: nowrap;
}

.manifest blockquote p span {
  display: block;
}

.manifest cite {
  color: #5a514b;
  font-style: normal;
  font-weight: 800;
}

.section {
  padding: clamp(78px, 10vw, 130px) 0;
  scroll-margin-top: 82px;
}

.section-head {
  max-width: 800px;
  margin-bottom: 42px;
}

.section-head.compact {
  max-width: 680px;
}

.section-head p,
.content-panel p,
.proof-copy p,
.cta-inner p {
  color: rgba(243, 238, 230, 0.72);
}

.method {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #111 0%, #090706 100%);
}

.section-mark {
  position: absolute;
  z-index: 0;
  width: clamp(140px, 18vw, 260px);
  opacity: 0.045;
  pointer-events: none;
}

.method-mark {
  top: 62px;
  right: clamp(24px, 6vw, 90px);
}

.method .container,
.plans .container {
  position: relative;
  z-index: 1;
}

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

.method-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(243, 238, 230, 0.1);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 40px);
  background:
    linear-gradient(145deg, rgba(201, 47, 53, 0.11), rgba(255, 255, 255, 0.025) 44%, rgba(9, 7, 6, 0.18)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 10px),
    #141414;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.method-card::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 0;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, rgba(201, 47, 53, 0.95), rgba(122, 29, 33, 0.3));
}

.method-card::after {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 46px;
  height: 1px;
  background: rgba(243, 238, 230, 0.18);
}

.method-card:hover {
  border-color: rgba(201, 47, 53, 0.34);
}

.method-icon {
  position: relative;
  margin-bottom: 26px;
  font-size: 2.4rem;
}

.method-card p {
  position: relative;
  color: rgba(243, 238, 230, 0.72);
}

.method-card ul {
  position: relative;
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.method-card li {
  color: rgba(243, 238, 230, 0.86);
  font-size: 0.94rem;
  font-weight: 800;
}

.method-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--red-bright);
}

.consultoria {
  background: #181715;
}

.principles {
  background: #0b0a09;
}

.principles-layout {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: clamp(14px, 2.4vw, 24px);
  align-items: center;
}

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

.principle-card {
  position: relative;
  min-height: 162px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(18px, 2.2vw, 24px);
  border: 1px solid rgba(243, 238, 230, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(201, 47, 53, 0.1), rgba(255, 255, 255, 0.025) 42%, rgba(9, 7, 6, 0.16)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 9px),
    #11100f;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.principle-card::before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 0;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, rgba(201, 47, 53, 0.95), rgba(122, 29, 33, 0.32));
}

.principle-card::after {
  content: "";
  position: absolute;
  inset: auto 16px 14px auto;
  width: 34px;
  height: 1px;
  background: rgba(243, 238, 230, 0.18);
}

.principle-card:hover {
  border-color: rgba(201, 47, 53, 0.34);
  transform: translateY(-2px);
}

.principle-card strong {
  position: relative;
  max-width: 260px;
  color: var(--bone);
  font-size: 1.05rem;
  line-height: 1.15;
}

.principle-card span {
  position: relative;
  color: rgba(243, 238, 230, 0.68);
  font-size: 0.9rem;
  line-height: 1.5;
}

.principles-proof {
  display: flex;
  align-items: stretch;
  width: min(100%, 340px);
  justify-self: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.principles-proof img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: 430px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.evolutions {
  background: #0f0d0c;
}

.evolution-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.evolution-grid::-webkit-scrollbar {
  display: none;
}

.evolution-card {
  min-height: auto;
  flex: 0 0 calc((100% - 32px) / 3);
  display: flex;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 180ms ease;
  scroll-snap-align: center;
}

.evolution-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(56vh, 520px);
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #090706;
  cursor: zoom-in;
}

.testimonials {
  background: #151312;
}

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

.testimonial-card {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: #11100f;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.testimonial-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  cursor: zoom-in;
}

.testimonial-card--feedback-01,
.testimonial-card--feedback-03,
.testimonial-card--feedback-04 {
  justify-content: flex-start;
}

.testimonial-card--feedback-01 img {
  width: 130%;
  max-width: none;
}

.testimonial-card--feedback-03 img {
  width: 130%;
  max-width: none;
}

.testimonial-card--feedback-04 img {
  width: 128%;
  max-width: none;
}

.plans {
  position: relative;
  overflow: hidden;
  background: #181715;
}

.plans-mark {
  left: clamp(20px, 5vw, 76px);
  bottom: 58px;
  opacity: 0.05;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.plan-includes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: -12px 0 34px;
}

.plan-includes span {
  border: 1px solid rgba(243, 238, 230, 0.1);
  border-radius: 8px;
  padding: 12px 14px;
  background:
    linear-gradient(145deg, rgba(201, 47, 53, 0.08), rgba(255, 255, 255, 0.025)),
    #11100f;
  color: rgba(243, 238, 230, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(243, 238, 230, 0.1);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 32px);
  background:
    linear-gradient(145deg, rgba(201, 47, 53, 0.09), rgba(255, 255, 255, 0.026) 44%, rgba(9, 7, 6, 0.18)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 10px),
    #121110;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 0;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, rgba(201, 47, 53, 0.95), rgba(122, 29, 33, 0.3));
}

.plan-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 16px auto;
  width: 42px;
  height: 1px;
  background: rgba(243, 238, 230, 0.16);
}

.plan-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 1px solid rgba(243, 238, 230, 0.24);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(167, 42, 47, 0.85);
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.method-card:hover,
.evolution-card:hover,
.plan-card:hover {
  transform: translateY(-3px);
}

.plan-card.featured {
  border-color: rgba(201, 47, 53, 0.46);
  background:
    linear-gradient(145deg, rgba(201, 47, 53, 0.16), rgba(255, 255, 255, 0.04) 44%, rgba(9, 7, 6, 0.15)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 10px),
    #141414;
}

.plan-card > p {
  position: relative;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-card h3 {
  position: relative;
  margin-bottom: 8px;
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
}

.plan-price {
  position: relative;
  margin: 12px 0 16px;
  color: var(--bone);
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: clamp(2.25rem, 3.8vw, 3.5rem);
  line-height: 0.9;
}

.plan-price small {
  font-size: 0.52em;
  vertical-align: 0.55em;
}

.featured .plan-price {
  color: white;
}

.plan-card > span {
  position: relative;
  min-height: 46px;
  color: rgba(243, 238, 230, 0.72);
}

.plan-card ul {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  color: rgba(243, 238, 230, 0.84);
  font-size: 0.94rem;
}

.plan-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--red-bright);
}

.plan-card .button {
  position: relative;
  margin-top: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(38px, 7vw, 88px);
  align-items: center;
}

.media-stack {
  position: relative;
  min-height: 610px;
}

.photo {
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.photo-main {
  width: min(390px, 76%);
  aspect-ratio: 4 / 5;
}

.photo-overlap {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(320px, 64%);
  aspect-ratio: 4 / 5;
  border: 8px solid #181715;
}

.content-panel {
  max-width: 620px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.feature-list strong {
  color: var(--bone);
  line-height: 1.2;
}

.feature-list span {
  color: rgba(243, 238, 230, 0.7);
}

.process {
  background:
    linear-gradient(180deg, #100f0e 0%, #0b0a09 100%);
}

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

.process-card,
.objection-card {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(243, 238, 230, 0.1);
  border-radius: 8px;
  padding: clamp(18px, 2.3vw, 24px);
  background:
    linear-gradient(145deg, rgba(201, 47, 53, 0.1), rgba(255, 255, 255, 0.025) 44%, rgba(9, 7, 6, 0.18)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 10px),
    #11100f;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.process-card::before,
.objection-card::before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 0;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, rgba(201, 47, 53, 0.95), rgba(122, 29, 33, 0.32));
}

.process-card::after,
.objection-card::after {
  content: "";
  position: absolute;
  inset: auto 16px 14px auto;
  width: 34px;
  height: 1px;
  background: rgba(243, 238, 230, 0.18);
}

.process-card:hover,
.objection-card:hover {
  border-color: rgba(201, 47, 53, 0.34);
  transform: translateY(-2px);
}

.process-card span {
  position: relative;
  color: rgba(176, 154, 102, 0.76);
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.process-card strong,
.objection-card strong {
  position: relative;
  color: var(--bone);
  font-size: 1.08rem;
  line-height: 1.18;
}

.process-card p,
.objection-card span {
  position: relative;
  margin: 0;
  color: rgba(243, 238, 230, 0.68);
  font-size: 0.9rem;
  line-height: 1.5;
}

.decision {
  background: #0b0a09;
}

.decision-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
}

.decision-copy {
  max-width: 520px;
}

.decision-copy .button {
  margin-top: 16px;
}

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

.objection-card {
  min-height: 158px;
}

.proof {
  background: var(--bone);
  color: var(--ink);
}

.proof .section-kicker {
  color: var(--red);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.proof-copy p {
  color: #554d47;
  text-align: justify;
  text-justify: inter-word;
}

.proof-gallery {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 16px;
  align-items: end;
}

.proof-gallery img,
.proof-photo {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(30, 23, 19, 0.22);
}

.proof-photo {
  aspect-ratio: 9 / 16;
  background: #d9d1c6;
  overflow: hidden;
}

.proof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  transform: scale(1.16);
}

.proof-gallery > img:last-child {
  aspect-ratio: 4 / 5.35;
  object-fit: cover;
}

.cta-section {
  padding: clamp(80px, 11vw, 140px) 0;
  background:
    linear-gradient(rgba(9, 7, 6, 0.72), rgba(9, 7, 6, 0.86)),
    url("assets/images/amauri-premiacao.jpg?v=202606191200") center 38% / cover;
}

.cta-inner {
  max-width: 800px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #090706;
  color: rgba(243, 238, 230, 0.64);
}

.footer-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.9rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bone);
  font-weight: 800;
}

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

.floating-action {
  position: fixed;
  z-index: 30;
  bottom: 20px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: var(--bone);
  font-weight: 900;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 160ms ease, background 160ms ease;
}

.floating-action:hover {
  transform: translateY(-3px);
}

.floating-action img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-top {
  left: 20px;
  background: #090706;
  backdrop-filter: blur(14px);
}

.floating-top img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.floating-whatsapp {
  right: 20px;
  background: #25d366;
}

.media-lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 0;
  background: rgba(9, 7, 6, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.media-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.media-lightbox img {
  max-width: min(100%, 980px);
  max-height: min(88svh, 860px);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.media-lightbox button {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(243, 238, 230, 0.22);
  border-radius: 50%;
  background: rgba(9, 7, 6, 0.86);
  color: var(--bone);
  font-size: 1.25rem;
  font-weight: 900;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .site-header {
    padding: 14px 20px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(9, 7, 6, 0.96);
    box-shadow: var(--shadow);
    max-height: calc(100svh - 92px);
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .site-nav .nav-secondary {
    display: none;
  }

  .hero {
    min-height: min(760px, 92svh);
    align-items: flex-end;
    scroll-margin-top: 0;
  }

  .hero-bg {
    background-image: url("assets/images/hero-mobile.png?v=202606191200");
    background-position: 32% top;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 7, 6, 0.84) 0%, rgba(9, 7, 6, 0.54) 48%, rgba(9, 7, 6, 0.08) 100%),
      linear-gradient(0deg, rgba(9, 7, 6, 0.96) 0%, rgba(9, 7, 6, 0.58) 42%, rgba(9, 7, 6, 0.02) 100%);
  }

  .hero-content {
    width: min(68vw, 265px);
    margin: 0 auto 0 14px;
    padding: 118px 0 26px;
  }

  .method-grid,
  .process-grid,
  .split,
  .proof-grid,
  .principles-layout,
  .principles-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .principles-proof img {
    max-height: 360px;
    object-fit: cover;
    object-position: center;
  }

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

  .evolution-grid {
    display: flex;
  }

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

  .decision-layout {
    grid-template-columns: 1fr;
  }

  .media-stack {
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .container,
  .hero-content {
    width: min(100% - 28px, 1120px);
  }

  .hero-content {
    width: min(68vw, 265px);
  }

  .brand span {
    display: none;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(2.55rem, 11vw, 3.35rem);
  }

  .hero-copy {
    max-width: 250px;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-height: 56px;
  }

  .hero-tags {
    margin-top: 20px;
    gap: 8px;
  }

  .hero-tags span {
    padding: 7px 10px;
    font-size: 0.72rem;
  }

  .evolution-grid {
    display: flex;
    gap: 12px;
    margin-inline: -14px;
    padding: 0 14px 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .evolution-grid::-webkit-scrollbar {
    display: none;
  }

  .evolution-card {
    flex: 0 0 min(80vw, 310px);
    scroll-snap-align: center;
  }

  .evolution-card:active,
  .plan-card:active {
    transform: scale(0.985);
  }

  .method-grid,
  .process-grid,
  .principles-grid,
  .objection-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-card,
  .objection-card {
    min-height: 138px;
    padding: 17px 18px;
  }

  .process-card span {
    font-size: 1.8rem;
  }

  .process-card strong,
  .objection-card strong {
    font-size: 1rem;
  }

  .process-card p,
  .objection-card span {
    font-size: 0.86rem;
  }

  .principle-card {
    min-height: 138px;
    padding: 17px 18px;
  }

  .principle-card::before {
    inset-block: 12px;
  }

  .principle-card strong {
    font-size: 1rem;
  }

  .principle-card span {
    font-size: 0.86rem;
  }

  .evolution-card {
    min-height: auto;
    padding: 0;
  }

  .evolution-card img {
    max-height: 58vh;
  }

  .method-card {
    min-height: 250px;
    padding: 20px;
    justify-content: flex-start;
  }

  .method-icon {
    margin-bottom: 14px;
    font-size: 1.8rem;
  }

  .method-card h3 {
    margin-bottom: 10px;
    font-size: 1.16rem;
  }

  .method-card p,
  .method-card li {
    font-size: 0.88rem;
  }

  .method-card ul {
    gap: 6px;
    margin-top: 14px;
  }

  .plan-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
    align-items: start;
    padding: 16px;
  }

  .plan-price {
    grid-row: span 2;
    margin: 0;
    font-size: clamp(1.9rem, 8vw, 2.5rem);
    text-align: right;
  }

  .plan-card > span {
    min-height: auto;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .plan-card ul {
    grid-column: 1 / -1;
    display: grid;
    gap: 7px;
    margin: 8px 0 10px;
  }

  .plan-card li {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .plan-includes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: -8px 0 20px;
    padding: 0;
    overflow: visible;
  }

  .plan-includes span {
    min-height: 74px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .plan-includes span:active,
  .process-card:active,
  .principle-card:active,
  .objection-card:active,
  .method-card:active {
    transform: scale(0.985);
  }

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

  .testimonial-card {
    min-height: 0;
    padding: 0;
    text-align: center;
  }

  .principles-proof {
    width: min(100%, 270px);
    max-height: 340px;
    justify-self: center;
  }

  .principles-proof img {
    width: 100%;
  }

  .plan-badge {
    position: static;
    width: fit-content;
    grid-column: 1 / -1;
    padding: 6px 10px;
    font-size: 0.68rem;
  }

  .plans .section-head {
    margin-bottom: 24px;
  }

  .plans {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .plan-card .button {
    grid-column: 1 / -1;
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .media-stack {
    min-height: 430px;
  }

  .photo-main {
    width: 82%;
  }

  .photo-overlap {
    width: 58%;
    bottom: -34px;
    border-width: 5px;
  }

  .feature-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .proof-gallery {
    grid-template-columns: 1fr;
  }

  .proof-gallery > img:last-child {
    display: none;
  }

  .footer-inner {
    min-height: 96px;
    padding-bottom: 72px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }

  .floating-action {
    bottom: 14px;
    width: 48px;
    height: 48px;
  }

  .floating-top {
    left: 14px;
  }

  .floating-whatsapp {
    right: 14px;
  }
}

@media (max-width: 360px) {
  .plan-includes {
    grid-template-columns: 1fr;
  }

  .plan-includes span {
    min-height: 54px;
  }
}
