:root {
  --black: #030303;
  --soft-black: #080808;
  --card: rgba(255, 255, 255, 0.055);
  --glass: rgba(255, 255, 255, 0.105);
  --glass-light: rgba(255, 255, 255, 0.18);
  --orange: #ff5200;
  --orange-2: #ff7a18;
  --orange-dark: #a53200;
  --white: #fff;
  --muted: rgba(255,255,255,.68);
  --line: rgba(255,255,255,.13);
  --line-orange: rgba(255,82,0,.58);
  --shadow: 0 30px 120px rgba(0,0,0,.55);
  --orange-shadow: 0 0 80px rgba(255,82,0,.35);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -10;
  background:
    radial-gradient(circle at 16% 10%, rgba(255,82,0,.28), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(255,122,24,.18), transparent 32%),
    radial-gradient(circle at 50% 86%, rgba(255,82,0,.14), transparent 36%),
    linear-gradient(180deg, #050505, #090909 44%, #020202);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -9;
  pointer-events: none;
  opacity: .20;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, #000 0 48%, transparent 78%);
}

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

/* Fundo de vídeo (topo da página de serviços) */
.services-hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3,3,3,.55), rgba(3,3,3,.18), rgba(3,3,3,.55)),
    linear-gradient(180deg, rgba(3,3,3,.35), rgba(3,3,3,.55) 55%, #030303);
}

/* Cards dos serviços (página de serviços) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.service-block {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 46px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease;
}

.service-block:hover {
  border-color: var(--line-orange);
}

.service-num {
  display: block;
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.05em;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

.service-block h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.1;
  letter-spacing: -.045em;
  margin-bottom: 14px;
}

.service-block p {
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  line-height: 1.65;
}

.service-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 22px;
  color: var(--orange-2);
  font-weight: 800;
  font-size: 14px;
  transition: transform .25s ease, color .25s ease;
}

.service-link:hover {
  transform: translateX(4px);
  color: #fff;
}

/* Bloco CTA compacto (página de serviços) */
.services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 44px);
  flex-wrap: wrap;
  padding: clamp(26px, 4vw, 48px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-orange);
  background:
    linear-gradient(135deg, rgba(255, 82, 0, .20), rgba(255, 122, 24, .04)),
    rgba(8, 8, 8, .55);
  box-shadow: var(--shadow), 0 0 60px rgba(255, 82, 0, .14);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.services-cta-text {
  flex: 1 1 400px;
  min-width: 0;
}

.services-cta-text h2 {
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -.05em;
}

.services-cta-text p {
  margin-top: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  line-height: 1.6;
}

.services-cta-btn {
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .hero.services-hero {
    min-height: 100svh;
    padding-top: 96px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .services-cta {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    text-align: center;
  }

  .services-cta-text {
    flex: 0 0 auto;
  }

  .services-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Proteção contra cópia de conteúdo (deterrente para o visitante comum) */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

.liquid {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.34);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.01em;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(255,255,255,.26), rgba(255,255,255,.035)),
    linear-gradient(135deg, rgba(255,82,0,.98), rgba(255,122,24,.72));
  box-shadow:
    0 20px 70px rgba(255,82,0,.34),
    inset 0 1px 0 rgba(255,255,255,.62),
    inset 0 -22px 34px rgba(95,20,0,.28);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.liquid::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  z-index: -1;
  background: linear-gradient(120deg, rgba(255,255,255,.38), transparent 26%, transparent 60%, rgba(255,255,255,.16));
}

.liquid::after {
  content: "";
  position: absolute;
  top: -42%;
  left: -120px;
  width: 95px;
  height: 190%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.62), transparent);
  transition: left .75s ease;
}

.liquid:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow:
    0 26px 90px rgba(255,82,0,.55),
    inset 0 1px 0 rgba(255,255,255,.7);
}

.liquid:hover::after {
  left: 135%;
}

.liquid.ghost {
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.035)),
    rgba(255,255,255,.055);
  box-shadow:
    0 18px 70px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.34);
}

.liquid.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  width: 66px;
  height: 66px;
  padding: 0;
  border-radius: 24px;
  font-size: 28px;
  animation: whatsPulse 2.6s ease-in-out infinite;
}

.liquid.whatsapp svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.28));
}

.mobile-cta-bar {
  display: none;
}

.nav-wrap {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.nav {
  pointer-events: auto;
  width: fit-content;
  max-width: calc(100% - 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 14px 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(8,8,8,.58);
  box-shadow:
    0 22px 80px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.14);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  opacity: 0;
  transform: translateY(-22px);
  animation: navEnter .8s cubic-bezier(.2,.8,.2,1) forwards .15s;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  letter-spacing: -.04em;
  min-width: 136px;
}

.logo img {
  width: 112px;
  height: auto;
  object-fit: contain;
}

.nav-cta-short {
  display: none;
}

/* Hambúrguer + painel mobile — escondidos no desktop */
.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
  -webkit-tap-highlight-color: transparent;
}

.nav-burger-box {
  position: relative;
  width: 22px;
  height: 15px;
}

.nav-burger-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition:
    transform .3s cubic-bezier(.2,.8,.2,1),
    top .3s cubic-bezier(.2,.8,.2,1),
    opacity .2s ease;
}

.nav-burger-line:nth-child(1) { top: 0; }
.nav-burger-line:nth-child(2) { top: 6.5px; }
.nav-burger-line:nth-child(3) { top: 13px; }

.nav.aberto .nav-burger-line:nth-child(1) {
  top: 6.5px;
  transform: rotate(45deg);
}

.nav.aberto .nav-burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(.4);
}

.nav.aberto .nav-burger-line:nth-child(3) {
  top: 6.5px;
  transform: rotate(-45deg);
}

.nav-panel {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: rgba(255,255,255,.78);
}

.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  transition: .25s ease;
}

.nav-links a:hover {
  color: white;
  background: rgba(255,255,255,.08);
}

.menu-dinamico {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-toggle,
.menu-servicos {
  appearance: none;
  border: none;
  background: transparent;
  color: rgba(255,255,255,.78);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 13px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    color .25s ease,
    background .25s ease,
    transform .25s ease;
}

.menu-toggle:hover,
.menu-servicos:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.submenu-cursos {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow: visible;
  max-width: none;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.submenu-cursos a {
  white-space: nowrap;
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  transition:
    color .25s ease,
    background .25s ease,
    transform .25s ease;
}

.submenu-cursos a:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}

.menu-separador {
  width: 1px;
  height: 17px;
  margin: 0 5px;
  background: rgba(255,255,255,.20);
  border-radius: 999px;
  opacity: .65;
}

.nav-links a::after,
.nav-links button::after,
.dropdown-toggle::after,
.menu-item::after {
  content: none !important;
  display: none !important;
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 124px 0 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.44), rgba(0,0,0,.94)),
    linear-gradient(180deg, rgba(0,0,0,.18), #030303 92%),
    url('/front/images/gmpro-landing/action-maneuvers.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: heroDrift 12s ease-in-out infinite alternate;
}

.hero-title-bg {
  position: absolute;
  left: 50%;
  top: 62%;
  transform: translate(-50%, -50%);
  z-index: -2;
  font-size: clamp(88px, 19vw, 280px);
  font-weight: 950;
  letter-spacing: -.1em;
  color: rgba(255,255,255,.032);
  white-space: nowrap;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--orange-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .44em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--orange);
  opacity: .9;
}

h1,
.headline {
  font-weight: 950;
  letter-spacing: -.075em;
  line-height: .94;
}

h1 {
  font-size: clamp(44px, 6.4vw, 88px);
  max-width: 800px;
}

.headline {
  font-size: clamp(34px, 5.1vw, 64px);
}

.headline em,
h1 em {
  font-style: italic;
  text-shadow: 0 0 54px rgba(255,82,0,.34);
}

.copy {
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  margin-top: 24px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.proof span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(28px);
  animation: softEnter .8s cubic-bezier(.2,.8,.2,1) forwards;
}

.hero-copy > *:nth-child(1) { animation-delay: .25s; }
.hero-copy > *:nth-child(2) { animation-delay: .34s; }
.hero-copy > *:nth-child(3) { animation-delay: .43s; }
.hero-copy > *:nth-child(4) { animation-delay: .52s; }
.hero-copy > *:nth-child(5) { animation-delay: .61s; }

.hero-image-wrap {
  position: relative;
  min-height: 560px;
  perspective: 1200px;
  opacity: 0;
  transform: translateY(32px) scale(.98);
  animation: imageEnter .9s cubic-bezier(.2,.8,.2,1) forwards .45s;
}

.hero-orbit {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  animation: float3d 7s ease-in-out infinite;
}

.hero-photo {
  width: min(590px, 92vw);
  aspect-ratio: 1.28 / 1;
  border-radius: 38px;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
  clip-path: inset(0 round 38px);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    0 42px 130px rgba(0,0,0,.64),
    0 0 120px rgba(255,82,0,.18);
  transform: rotateX(5deg) rotateY(-8deg);
  background: #111;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.045);
  border-radius: inherit;
}

.floating-data {
  position: absolute;
  left: 2%;
  bottom: 15%;
  width: 252px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.42);
  backdrop-filter: blur(20px) saturate(170%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.13);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.45;
  animation: floatTag 4.6s ease-in-out infinite reverse;
}

.floating-data b {
  display: block;
  color: white;
  margin-bottom: 4px;
  font-size: 14px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  width: 34px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(14px);
  display: grid;
  place-items: center;
}

.scroll-cue span {
  width: 5px;
  height: 10px;
  border-radius: 99px;
  background: var(--orange);
  animation: cue 1.5s ease-in-out infinite;
}

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

.split.reverse {
  grid-template-columns: .95fr 1.05fr;
}

.photo-card {
  position: relative;
  min-height: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
  contain: paint;
  clip-path: inset(0 round var(--radius-xl));
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.045);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.12);
  transform-style: preserve-3d;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  border-radius: inherit;
  transition: transform .8s ease;
}

.photo-card:hover img {
  transform: scale(1.07);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.78));
  pointer-events: none;
}

.split .photo-card {
  animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { top: 0; }
  50% { top: -14px; }
}

.split .photo-caption {
  animation: floatTag 4.6s ease-in-out infinite reverse;
}

.photo-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.34);
  backdrop-filter: blur(18px);
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.45;
}

.photo-caption b {
  color: #fff;
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
  letter-spacing: -.04em;
}

.glass-panel {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.13);
  background:
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.025)),
    rgba(255,255,255,.035);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.12);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.pillar {
  min-height: 268px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.13);
  background:
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.025)),
    rgba(255,255,255,.04);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow:
    0 24px 80px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.13);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
  transform-style: preserve-3d;
}

.pillar:hover {
  transform: translateY(-10px);
  border-color: var(--line-orange);
  background: linear-gradient(135deg, rgba(255,82,0,.18), rgba(255,255,255,.03));
}

.num {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  color: #161616;
  font-weight: 950;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: var(--orange-shadow), inset 0 1px 0 rgba(255,255,255,.38);
}

.pillar h3 {
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -.045em;
  margin-bottom: 14px;
}

.pillar p {
  color: rgba(255,255,255,.65);
  font-size: 13.5px;
  line-height: 1.56;
}

.course-banner {
  position: relative;
  min-height: 420px;
  margin-top: 52px;
  border-radius: 38px;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
  clip-path: inset(0 round 38px);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow), 0 0 80px rgba(255,82,0,.16);
}

.course-banner img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  border-radius: inherit;
}

.course-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.08), rgba(0,0,0,.72));
}

.course-banner-content {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 5vw, 58px);
  bottom: clamp(22px, 5vw, 48px);
  max-width: 560px;
}

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

.step {
  position: relative;
  min-height: 248px;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 80px rgba(0,0,0,.34);
}

.step::before {
  content: attr(data-step);
  position: absolute;
  right: 14px;
  top: 4px;
  color: rgba(255,82,0,.16);
  font-size: 94px;
  font-weight: 950;
  letter-spacing: -.09em;
}

.step h3 {
  position: relative;
  font-size: 23px;
  line-height: 1.1;
  letter-spacing: -.048em;
  margin-bottom: 18px;
}

.step p {
  position: relative;
  color: rgba(255,255,255,.66);
  line-height: 1.62;
  font-size: 14px;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
  margin-top: 52px;
}

.media-tall,
.media-stack > article {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
  clip-path: inset(0 round var(--radius-xl));
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  background: #111;
}

.media-tall {
  min-height: 630px;
}

.media-stack {
  display: grid;
  gap: 20px;
}

.media-stack > article {
  min-height: 305px;
}

.media-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform .9s ease;
}

.media-grid article:hover img {
  transform: scale(1.065);
}

.media-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.78));
}

.media-text {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(0,0,0,.32);
  backdrop-filter: blur(14px);
}

.media-text h3 {
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1.02;
  letter-spacing: -.055em;
  margin-bottom: 10px;
}

.media-text p {
  color: rgba(255,255,255,.76);
  line-height: 1.5;
  font-size: 13.5px;
}

.profile {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
  clip-path: inset(0 round var(--radius-xl));
}

.profile-photo {
  min-height: 650px;
  position: relative;
  background: #111;
  overflow: hidden;
  isolation: isolate;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 42%, rgba(0,0,0,.55)),
    linear-gradient(180deg, transparent 58%, rgba(0,0,0,.66));
}

.profile-copy {
  padding: clamp(34px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-copy p {
  color: rgba(255,255,255,.7);
  line-height: 1.78;
  margin-top: 16px;
}

.offer {
  position: relative;
  max-width: min(100%, 960px);
  margin: 0 auto;
  padding: clamp(1.65rem, 5vw, 4.75rem);
  overflow: hidden;
  text-align: left;
  border-radius: clamp(1.35rem, 3vw, 2.5rem);
  border: 1px solid rgba(255,122,24,.32);
  background:
    linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.026)),
    radial-gradient(circle at 50% 0%, rgba(255,82,0,.22), transparent 44%),
    rgba(5,5,5,.72);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow:
    0 2rem 7rem rgba(0,0,0,.58),
    0 0 5rem rgba(255,82,0,.18),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.offer::before {
  content: "";
  position: absolute;
  inset: -30%;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 12%, rgba(255,122,24,.22), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(255,82,0,.18), transparent 30%);
  animation: offerGlow 5s ease-in-out infinite;
  pointer-events: none;
}

.offer::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,.14), transparent 26%, transparent 70%, rgba(255,82,0,.18));
}

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

.offer > :not(.offer-redesign) {
  display: none !important;
}

.offer-redesign {
  position: relative;
  z-index: 1;
}

.offer-header {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: clamp(.85rem, 2vw, 1.25rem);
  max-width: 780px;
  margin: 0 auto clamp(1.25rem, 3vw, 2rem);
}

.sale-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: fit-content;
  padding: .75em 1.15em;
  border-radius: 999px;
  border: 1px solid rgba(255,82,0,.42);
  background: rgba(255,82,0,.12);
  color: var(--orange-2);
  font-size: clamp(.72rem, 1.5vw, .86rem);
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 0 2.5rem rgba(255,82,0,.18);
}

.offer-title {
  max-width: 820px;
  color: #fff;
  font-size: clamp(2.25rem, 6.3vw, 5.25rem);
  font-weight: 950;
  line-height: .95;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.offer-subtitle {
  max-width: 760px;
  color: rgba(255,255,255,.74);
  font-size: clamp(1rem, 1.9vw, 1.18rem);
  line-height: 1.72;
}

.value-stack {
  display: grid;
  gap: clamp(.7rem, 1.5vw, .95rem);
  max-width: 760px;
  margin: clamp(1.35rem, 3vw, 2rem) auto 0;
  padding: 0;
  list-style: none;
}

.value-stack li,
.bonus-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .75rem;
  align-items: start;
  color: rgba(255,255,255,.78);
  font-size: clamp(.96rem, 1.7vw, 1.06rem);
  line-height: 1.5;
}

.value-stack .check,
.bonus-list .check {
  display: inline-grid;
  place-items: center;
  width: 1.45em;
  height: 1.45em;
  border-radius: 999px;
  color: #07170f;
  background: #5cff9b;
  font-weight: 950;
  box-shadow: 0 0 1.4rem rgba(92,255,155,.28);
}

.value-stack strong,
.bonus-list strong {
  color: #fff;
  font-weight: 950;
}

.offer-divider {
  height: 1px;
  width: 100%;
  max-width: 760px;
  margin: clamp(1.35rem, 3vw, 2rem) auto;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
}

.bonus-block {
  max-width: 760px;
  margin: 0 auto;
}

.bonus-title {
  margin-bottom: clamp(.8rem, 1.8vw, 1.05rem);
  color: var(--orange-2);
  font-size: clamp(.78rem, 1.6vw, .9rem);
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.bonus-list {
  display: grid;
  gap: .8rem;
  padding: 0;
  list-style: none;
}

.price {
  display: grid;
  justify-items: center;
  gap: .35rem;
  margin: clamp(1.45rem, 3.5vw, 2.35rem) auto clamp(1rem, 2vw, 1.35rem);
  text-align: center;
}

.price small {
  color: #ff4d4d;
  font-size: clamp(.92rem, 1.6vw, 1.05rem);
  font-weight: 800;
  text-decoration: line-through;
}

.price strong {
  color: #fff;
  font-size: clamp(3.4rem, 11vw, 7.9rem);
  line-height: .88;
  letter-spacing: -.07em;
  font-weight: 950;
  text-shadow: 0 0 4rem rgba(255,82,0,.3);
}

.installments {
  color: rgba(255,255,255,.72);
  font-size: clamp(.95rem, 1.7vw, 1.05rem);
  font-weight: 800;
  text-align: center;
}

.cta-sale {
  width: min(100%, 760px);
  min-height: clamp(3.45rem, 7vw, 4.2rem);
  margin: clamp(1.15rem, 2.8vw, 1.8rem) auto .7rem;
  padding-inline: clamp(1rem, 3vw, 2rem);
  border-radius: 999px;
  border-color: rgba(255,255,255,.36);
  background:
    linear-gradient(135deg, rgba(255,255,255,.24), rgba(255,255,255,.04)),
    linear-gradient(135deg, #ff5200, #ff8a21);
  box-shadow:
    0 1.15rem 4rem rgba(255,82,0,.45),
    inset 0 1px 0 rgba(255,255,255,.55);
  color: #fff;
  font-size: clamp(.82rem, 1.7vw, .98rem);
  font-weight: 950;
  letter-spacing: .03em;
  text-transform: uppercase;
  animation: salePulse 2.1s ease-in-out infinite;
}

.cta-sale:hover {
  transform: translateY(-.18rem) scale(1.012);
  box-shadow:
    0 1.35rem 5rem rgba(255,82,0,.62),
    inset 0 1px 0 rgba(255,255,255,.72);
}

.risk-note {
  color: rgba(255,255,255,.64);
  font-size: clamp(.82rem, 1.5vw, .95rem);
  font-weight: 700;
  text-align: center;
}

.faq-wrap {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 70px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 13px;
}

details {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(18px) saturate(160%);
  overflow: hidden;
  box-shadow:
    0 18px 60px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.11);
  transition: border-color .28s ease, background .28s ease, transform .28s ease;
}

details:hover {
  transform: translateY(-2px);
  border-color: rgba(255,82,0,.34);
}

details[open] {
  border-color: rgba(255,82,0,.55);
  background: rgba(255,82,0,.07);
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 21px 64px 21px 22px;
  position: relative;
  font-weight: 850;
  letter-spacing: -.025em;
}

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

summary::after {
  content: "+";
  position: absolute;
  right: 13px;
  top: 50%;
  width: 38px;
  height: 38px;
  transform: translateY(-50%) rotate(0deg);
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #151515;
  font-size: 22px;
  font-weight: 950;
  box-shadow:
    0 12px 36px rgba(255,82,0,.28),
    inset 0 1px 0 rgba(255,255,255,.35);
  transition: transform .34s cubic-bezier(.2,.8,.2,1);
}

details[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s cubic-bezier(.2,.8,.2,1);
}

details[open] .faq-content {
  grid-template-rows: 1fr;
}

.faq-content > div {
  overflow: hidden;
}

details p {
  padding: 0 22px 22px;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
  font-size: 14px;
}

.choice {
  text-align: center;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.choice-card {
  text-align: left;
  min-height: 242px;
  padding: 34px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.choice-card strong {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg,var(--orange),var(--orange-2));
  color: #111;
  font-size: 27px;
  font-weight: 950;
  margin-bottom: 32px;
  box-shadow: var(--orange-shadow);
}

.choice-card h3 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.06;
  letter-spacing: -.06em;
}

.choice-card.good {
  border-color: rgba(255,82,0,.55);
  box-shadow: var(--shadow), var(--orange-shadow);
}

footer {
  padding: 58px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.62);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 32px;
}

footer .footer-logo {
  width: 170px;
  margin-bottom: 18px;
}

footer h4 {
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: -.03em;
}

footer a,
footer p {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 10px;
}

.trust-footer {
  width: 100%;
  padding-block: clamp(2.75rem, 6vw, 5rem) clamp(1.4rem, 3vw, 2rem);
  border-top: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(255,82,0,.075), transparent 34%),
    linear-gradient(180deg, #080808, #020202);
  color: rgba(255,255,255,.68);
}

.footer-trust {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .95fr) minmax(0, 1.2fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: start;
}

.footer-brand,
.trust-card {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.footer-brand .footer-logo {
  width: clamp(8rem, 16vw, 11rem);
  margin-bottom: clamp(.9rem, 2vw, 1.25rem);
}

.footer-brand p,
.trust-card p {
  color: rgba(255,255,255,.62);
  font-size: clamp(.9rem, 1.5vw, .98rem);
  line-height: 1.65;
  margin: 0;
}

.trust-label {
  display: block;
  margin-bottom: clamp(.8rem, 1.8vw, 1.1rem);
  color: var(--orange-2);
  font-size: clamp(.72rem, 1.3vw, .82rem);
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hotmart-logo-img {
  width: min(100%, 11rem);
  height: auto;
  max-height: 3rem;
  padding: .38rem .55rem;
  margin-bottom: clamp(.85rem, 1.8vw, 1.15rem);
  border-radius: .55rem;
  background: rgba(255,255,255,.94);
  object-fit: contain;
  object-position: left center;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(.7rem, 1.6vw, 1rem);
  align-items: center;
  margin-bottom: clamp(1rem, 2vw, 1.35rem);
}

.payment-icon {
  width: auto;
  max-width: min(7.8rem, 36vw);
  height: clamp(1.85rem, 4.6vw, 2.7rem);
  object-fit: contain;
  padding: .28rem .42rem;
  border-radius: .55rem;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.08);
}

.payment-icon.pix {
  max-width: min(9.8rem, 48vw);
  height: clamp(2rem, 4.9vw, 2.85rem);
}

.security-points {
  display: grid;
  gap: .65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.security-points li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  color: rgba(255,255,255,.68);
  font-size: clamp(.88rem, 1.45vw, .96rem);
  line-height: 1.45;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: .35rem;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(1rem, 2vw, 1.35rem);
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.42);
  font-size: clamp(.76rem, 1.2vw, .84rem);
  text-align: center;
}

.legacy-footer {
  display: none !important;
}

.reveal,
.stagger > * {
  opacity: 1;
  transform: none;
}

.js .reveal,
.js .stagger > * {
  opacity: 0;
  transform: translateY(34px) scale(.985);
  transition:
    opacity .72s ease,
    transform .72s cubic-bezier(.2,.8,.2,1);
}

.js .reveal.show,
.js .stagger.show > * {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.js .stagger.show > *:nth-child(2) { transition-delay: .06s; }
.js .stagger.show > *:nth-child(3) { transition-delay: .12s; }
.js .stagger.show > *:nth-child(4) { transition-delay: .18s; }
.js .stagger.show > *:nth-child(5) { transition-delay: .24s; }

[data-tilt] {
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

[data-tilt].tiltando {
  transition: transform .08s linear;
}

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

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

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

@keyframes heroDrift {
  from {
    transform: scale(1.04) translateY(0);
  }

  to {
    transform: scale(1.075) translateY(-12px);
  }
}

@keyframes float3d {
  0%,100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes floatTag {
  0%,100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes cue {
  0% {
    transform: translateY(-8px);
    opacity: 0;
  }

  45% {
    opacity: 1;
  }

  100% {
    transform: translateY(9px);
    opacity: 0;
  }
}

@keyframes offerGlow {
  0%,100% {
    transform: scale(.94);
    opacity: .65;
  }

  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes whatsPulse {
  0%,100% {
    box-shadow:
      0 20px 70px rgba(255,82,0,.34),
      inset 0 1px 0 rgba(255,255,255,.62);
  }

  50% {
    box-shadow:
      0 22px 90px rgba(255,82,0,.64),
      inset 0 1px 0 rgba(255,255,255,.72);
  }
}

@keyframes salePulse {
  0%,100% {
    transform: scale(1);
    box-shadow:
      0 20px 70px rgba(255,82,0,.38),
      inset 0 1px 0 rgba(255,255,255,.62);
  }

  50% {
    transform: scale(1.025);
    box-shadow:
      0 26px 95px rgba(255,82,0,.62),
      inset 0 1px 0 rgba(255,255,255,.76);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split,
  .split.reverse,
  .profile,
  .faq-wrap,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    min-height: 470px;
    order: -1;
  }

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

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

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

  .media-tall {
    min-height: 480px;
  }

  .nav {
    width: min(1120px, calc(100% - 32px));
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 0;
  }

  body::after {
    background-size: 44px 44px;
    opacity: .14;
  }

  .container {
    width: min(100% - 30px, var(--max));
  }

  .section {
    padding: 58px 0;
  }

  .liquid {
    min-height: 52px;
    width: auto;
    max-width: 100%;
    padding: 0 20px;
    text-align: center;
    white-space: normal;
    line-height: 1.15;
  }

  .nav-wrap {
    top: 10px;
  }

  .nav {
    width: calc(100% - 24px);
    max-width: none;
    min-height: 60px;
    padding: 0 14px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    align-content: center;
    column-gap: 8px;
    row-gap: 0;
    transition:
      min-height .3s cubic-bezier(.2,.8,.2,1),
      padding .3s cubic-bezier(.2,.8,.2,1),
      border-radius .3s ease;
  }

  .nav > .logo { justify-self: start; }
  .nav > .nav-cta { justify-self: center; }
  .nav > .nav-burger { justify-self: end; }
  .nav > .nav-panel { grid-column: 1 / -1; }

  /* Links inline somem no mobile — passam pro painel expansível */
  .menu-dinamico {
    display: none;
  }

  .logo {
    min-width: auto;
    order: 0;
  }

  .logo img {
    width: 98px;
    transition: width .3s cubic-bezier(.2,.8,.2,1);
  }

  /* Botão central da barra fechada ("Inscrever-se") */
  .nav-cta {
    order: 1;
    min-height: 40px;
    flex: 0 0 auto;
    max-width: none;
    padding: 0 20px;
    font-size: 12px;
    white-space: nowrap;
    transition:
      min-height .3s cubic-bezier(.2,.8,.2,1),
      font-size .3s ease;
  }

  .nav-cta-full {
    display: none;
  }

  .nav-cta-short {
    display: inline;
  }

  /* Hambúrguer à direita */
  .nav-burger {
    display: inline-flex;
    order: 2;
  }

  /* Painel expansível (Curso / Serviços / CTA) */
  .nav-panel {
    display: flex;
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: 8px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 2px;
    transform: translateY(-6px);
    transition:
      max-height .32s cubic-bezier(.2,.8,.2,1),
      opacity .26s ease,
      transform .32s cubic-bezier(.2,.8,.2,1),
      padding .3s ease;
  }

  .nav.aberto {
    border-radius: 22px;
  }

  .nav.aberto .nav-panel {
    max-height: 320px;
    opacity: 1;
    transform: translateY(0);
    padding: 12px 2px 14px;
  }

  .nav-panel-link {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,.9);
    padding: 12px 6px;
    border-radius: 10px;
    transition: background .2s ease;
  }

  .nav-panel-link:first-child {
    border-bottom: 1px solid rgba(255,255,255,.10);
    border-radius: 10px 10px 0 0;
  }

  .nav-panel-link:active {
    background: rgba(255,255,255,.06);
  }

  .nav-panel-cta {
    width: 100%;
    min-height: 50px;
    margin-top: 6px;
    font-size: 13px;
  }

  /* Encolher a barra ao rolar (não encolhe com o menu aberto) */
  .nav-wrap.scrolled .nav:not(.aberto) {
    min-height: 52px;
  }

  .nav-wrap.scrolled .nav:not(.aberto) .logo img {
    width: 86px;
  }

  .nav-wrap.scrolled .nav:not(.aberto) .nav-cta {
    min-height: 36px;
    font-size: 11.5px;
  }

  .nav-desktop-only {
    display: none !important;
  }

  .menu-separador {
    display: none;
  }

  .submenu-cursos {
    order: 3;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px) scale(.98);
    pointer-events: none;
    transition:
      max-height .55s cubic-bezier(.2,.8,.2,1),
      opacity .35s ease,
      transform .45s cubic-bezier(.2,.8,.2,1);
  }

  .submenu-cursos.aberto {
    max-height: 280px;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    margin-top: 6px;
  }

  .submenu-cursos a {
    text-align: center;
    background: rgba(255,255,255,.05);
  }

  .menu-toggle,
  .menu-servicos {
    flex: 0 0 auto;
    background: transparent;
    min-height: auto;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 106px 0 46px;
    place-items: start;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-copy {
    order: 1;
    text-align: center;
    margin: 0 auto;
  }

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

  h1 {
    font-size: clamp(38px, 12vw, 56px);
    letter-spacing: 0;
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .headline {
    font-size: clamp(28px, 9.1vw, 42px);
    letter-spacing: 0;
    line-height: 1.03;
    overflow-wrap: anywhere;
  }

  .eyebrow {
    justify-content: center;
    width: 100%;
    gap: 8px;
    letter-spacing: .22em;
    font-size: 10px;
  }

  .copy {
    font-size: 15px;
    line-height: 1.62;
    margin-top: 18px;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .liquid,
  .cta-sale {
    width: 100%;
    justify-content: center;
  }

  .hero-image-wrap {
    order: 2;
    min-height: 300px;
    width: 100%;
    margin-top: clamp(1.5rem, 5vw, 2.25rem);
    z-index: 1;
  }

  .proof {
    position: relative;
    z-index: 3;
  }

  .hero-photo {
    width: 100%;
    border-radius: 28px;
    clip-path: inset(0 round 28px);
    transform: none;
  }

  .floating-data {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 14px;
  }

  .proof {
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }

  .proof span,
  .benefits span {
    border-radius: 16px;
    padding: 9px 11px;
  }

  .hero-title-bg,
  .scroll-cue {
    display: none;
  }

  .split,
  .split.reverse,
  .profile,
  .faq-wrap,
  .media-grid {
    gap: 28px;
  }

  .photo-card,
  .course-banner,
  .profile-photo {
    min-height: 330px;
    border-radius: 26px;
    clip-path: inset(0 round 26px);
  }

  .photo-caption,
  .media-text {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
    border-radius: 18px;
  }

  .pillars-grid,
  .timeline,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .media-stack > article,
  .media-tall {
    min-height: 330px;
  }

  .pillars-grid,
  .timeline,
  .media-grid,
  .choice-grid {
    margin-top: 32px;
  }

  .pillar,
  .step,
  .choice-card {
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }

  .pillars-grid,
  .timeline {
    display: flex;
    gap: 12px;
    margin-left: 0;
    margin-right: 0;
    padding: 0 0 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .pillars-grid::-webkit-scrollbar,
  .timeline::-webkit-scrollbar {
    height: 6px;
  }

  .pillars-grid::-webkit-scrollbar-thumb,
  .timeline::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255,82,0,.5);
  }

  .pillar,
  .step {
    flex: 0 0 min(82vw, 320px);
    min-height: 218px;
    scroll-snap-align: start;
  }

  .num,
  .choice-card strong {
    margin-bottom: 20px;
  }

  .course-banner {
    min-height: 390px;
  }

  .course-banner::after {
    background: linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.88));
  }

  .course-banner-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .profile-copy {
    padding: 28px 22px 30px;
  }

  .sale-badge {
    max-width: 100%;
    line-height: 1.25;
  }

  summary {
    padding: 18px 58px 18px 18px;
    line-height: 1.28;
  }

  #jornada .container > .reveal,
  .course-banner-content {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .liquid.whatsapp {
    width: 54px;
    height: 54px;
    border-radius: 20px;
    right: 12px;
    bottom: 14px;
  }

  .mobile-cta-bar {
    display: none !important;
  }

  .trust-footer {
    padding-block: clamp(2.4rem, 8vw, 3.5rem) clamp(1.35rem, 5vw, 2rem);
  }

  .footer-trust {
    grid-template-columns: 1fr;
    width: min(100% - 30px, var(--max));
    gap: 1.8rem;
  }

  .footer-brand .footer-logo {
    width: 8.5rem;
  }

  .hotmart-logo-img {
    width: min(100%, 10.5rem);
  }

  .payment-icons {
    gap: .55rem;
  }

  .footer-bottom {
    margin-top: .25rem;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .nav {
    width: calc(100% - 24px);
    padding: 0 12px;
  }

  .logo {
    min-width: auto;
  }

  .logo img {
    width: 88px;
  }

  .nav-cta {
    font-size: 11.5px;
    padding: 0 16px;
  }

  .nav-burger {
    width: 40px;
  }

  .nav-panel-link {
    font-size: 14.5px;
  }

  .hero {
    padding-top: 100px;
  }

  h1 {
    font-size: clamp(34px, 11.4vw, 44px);
  }

  .headline {
    font-size: clamp(28px, 9vw, 38px);
  }

  .hero-image-wrap {
    min-height: 270px;
  }

  .photo-card,
  .course-banner,
  .profile-photo,
  .media-stack > article,
  .media-tall {
    min-height: 300px;
  }

  .pillar,
  .step {
    flex-basis: 84vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .stagger > *,
  .hero-copy > *,
  .hero-image-wrap,
  .nav {
    opacity: 1 !important;
    transform: none !important;
  }
}
