/* ═══════════════════════════════════════════════════
   ESTOICO SKILL — CSS SYSTEM
   Applied to: A Ordem do Guerreiro
   Source: menteestoica.com.br visual system
═══════════════════════════════════════════════════ */

/* ─── CSS Variables ──────────────────────────────── */
:root {
  --bg: #000000;
  --bg-deep: #000000;
  --surface: rgba(15, 24, 40, 0.88);
  --surface-strong: rgba(10, 18, 30, 0.96);
  --line: rgba(147, 197, 255, 0.18);
  --text: #f5f8ff;
  --muted: #a7b6cb;
  --cyan: #40d7ff;
  --blue: #2a67ff;
  --blue-strong: #114ad9;
  --orange: #ff9a32;
  --orange-strong: #ffb84f;
  --white-card: #f8fbff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

/* ─── Reset & Base ──────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background: #000000;
  -webkit-font-smoothing: antialiased;
}

body::before {
  display: none;
}

.page {
  overflow: hidden;
}

/* ─── HERO ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 5% 0;
}

.hero::before,
.hero::after {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

/* LEFT */
.hero-left {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 400px;
}

.hero-pre-title {
  margin: 0 0 4px;
  z-index: 2;
  color: #cbd5e1;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-main-title {
  margin: 0 0 .5rem;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(255, 255, 255, .3);
}

.hero-date-badge {
  position: relative;
  padding: .2rem .5rem;
  color: #a1a1aa;
  font-family: "Inter", sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-date-badge::before,
.hero-date-badge::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background-color: #a1a1aa;
  opacity: .5;
}

.hero-date-badge::before {
  right: 100%;
  margin-right: 10px;
}

.hero-date-badge::after {
  left: 100%;
  margin-left: 10px;
}

/* Ebook Cover */
.hero-ebook-cover {
  margin-top: 1.75rem;
  position: relative;
  top: -10px;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 20px 40px rgba(210, 172, 71, .18)) drop-shadow(0 8px 16px rgba(0, 0, 0, .42));
  animation: floating 8s ease-in-out infinite;
}

.hero-ebook-img {
  width: 300px;
  max-width: 100%;
  border-radius: 4px;
  transform: perspective(800px) rotateY(-6deg);
  transition: transform .4s ease;
}

.hero-ebook-cover:hover .hero-ebook-img {
  transform: perspective(800px) rotateY(0deg) scale(1.02);
}

/* Glass Card */
.hero-card-wrap {
  position: relative;
  max-width: 400px;
}

.hero-card-wrap::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(210, 172, 71, .35) 0%, rgba(0, 0, 0, 0) 50%, rgba(210, 172, 71, .14) 100%);
  filter: blur(20px);
  z-index: -1;
  opacity: .49;
}

.hero-glass-card {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding: 1.75rem 1.75rem;
  text-align: center;
  background: rgba(14, 20, 36, .4);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-top: -.75rem;
}

.hero-card-text {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: .95rem;
}

.hero-card-text--light {
  color: #a1a1aa;
}

.hero-card-text--strong {
  color: #e2e8f0;
  font-weight: 300;
  line-height: 1.6;
}

.hero-highlight {
  margin: .5rem 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(255, 255, 255, .1);
  background: linear-gradient(to right, #fff, #d1d5db);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-microcopy {
  margin: .5rem 0 0;
  color: #a1a1aa;
  font-family: "Inter", sans-serif;
  font-size: .8rem;
}

.hero-microcopy span {
  color: #D2AC47;
  font-weight: 700;
}

/* ── Hero CTA principal: usa o mesmo sistema .btn para consistência ── */
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 52px;
  padding: .85rem 2rem;
  border-radius: 6px;
  background: linear-gradient(135deg, #C9A84C 0%, #B08D57 55%, #9F7A3A 100%);
  color: #0A0A0A;
  font-family: "Montserrat", sans-serif;
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  box-shadow:
    0 8px 28px -4px rgba(176, 141, 87, .38),
    0 2px 6px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s ease, background .28s ease;
  cursor: pointer;
}

.hero-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.18) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform .55s cubic-bezier(.22,1,.36,1);
}

.hero-cta:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #D6B660 0%, #C09A5A 55%, #AB854A 100%);
  box-shadow:
    0 14px 36px -4px rgba(176, 141, 87, .50),
    0 4px 10px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255, 255, 255, .25);
}

.hero-cta:hover::before {
  transform: translateX(100%);
}

.hero-cta:active {
  transform: translateY(-1px);
  box-shadow:
    0 6px 18px -4px rgba(176, 141, 87, .32),
    0 2px 6px rgba(0,0,0,.3);
}

/* ── Hero CTA secundário ── */
.hero-cta-sec {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 52px;
  padding: .85rem 2rem;
  border-radius: 6px;
  background: #151515;
  border: 1px solid rgba(176, 141, 87, .35);
  color: #F2EDE3;
  font-family: "Montserrat", sans-serif;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s ease, border-color .28s ease, background .28s ease;
  cursor: pointer;
}

.hero-cta-sec:hover {
  transform: translateY(-2px);
  background: #1e1e1e;
  border-color: rgba(176, 141, 87, .65);
  color: #F2EDE3;
  box-shadow: 0 8px 24px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06);
}

.hero-cta-sec:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0,0,0,.3);
}

/* RIGHT */
.hero-right {
  position: relative;
  height: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap {
  position: absolute;
  right: -20%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140%;
  height: 140%;
  border-radius: 20px;
}

.hero-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  opacity: 1;
  animation: floating 8s ease-in-out infinite;
  mix-blend-mode: screen;
  /* faz o fundo preto da ilustração desaparecer */
  filter: contrast(1.05) brightness(1.0);
}

.hero-image-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 55% 50%, transparent 45%, #000000 85%);
}

/* Floating popups */
.hero-popup {
  position: absolute;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: .65rem;
  min-width: 200px;
  padding: .6rem .85rem;
  background: rgba(14, 18, 32, .88);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: popupFloat 6s ease-in-out infinite;
}

.hero-popup--one {
  bottom: 18%;
  left: 4%;
  animation-delay: 0s;
}

.hero-popup--two {
  top: 38%;
  right: 2%;
  animation-delay: 2s;
}

.hero-popup__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-popup__icon--green {
  background: #D2AC47;
}

.hero-popup__icon--purple {
  background: #D2AC47;
}

.hero-popup__content {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.hero-popup__title {
  display: flex;
  justify-content: space-between;
  gap: .4rem;
  width: 100%;
  color: #e2e8f0;
  font-family: "Inter", sans-serif;
  font-size: .72rem;
  font-weight: 600;
}

.hero-popup__title span {
  color: #a1a1aa;
  font-size: .65rem;
  font-weight: 400;
}

.hero-popup__value {
  color: #94a3b8;
  font-family: "Inter", sans-serif;
  font-size: .75rem;
}

.hero-popup__value strong {
  color: #fff;
}

.hero-symbol {
  position: absolute;
  z-index: 15;
  opacity: .7;
  font-size: 2rem;
  filter: drop-shadow(0 0 10px rgba(210, 172, 71, .5));
}

.hero-symbol--one {
  top: 30%;
  left: 20%;
  animation: floatMoney 10s linear infinite;
}

.hero-symbol--two {
  right: 25%;
  bottom: 40%;
  animation: floatMoney 8s linear infinite reverse;
}

/* ─── SCARCITY BAND ─────────────────────────────── */
.scarcity-band {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  max-width: 100%;
  margin-top: 0;
  padding: clamp(32px, 5vw, 56px) clamp(20px, 5vw, 60px);
  background: #0A0A0A;
  border-top: 1px solid rgba(176, 141, 87, .18);
  border-bottom: 1px solid rgba(176, 141, 87, .12);
  text-align: center;
  overflow: hidden;
}

/* linha dourada decorativa no topo */
.scarcity-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #B08D57, transparent);
}

/* vinheta lateral sutil */
.scarcity-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(176, 141, 87, .04) 0%, transparent 70%);
  pointer-events: none;
}

.scarcity-band__copy {
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.scarcity-band__copy h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  line-height: 1.55;
  font-weight: 600;
  color: #F2EDE3;
  letter-spacing: .01em;
}

.section-kicker {
  margin: 0 0 10px;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #F2EDE3;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.scarcity-band__copy .section-kicker {
  color: #D2AC47;
}

.section-heading .section-kicker,
.section-heading--centered .section-kicker {
  color: #D2AC47;
}

.countdown {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.countdown__item {
  min-width: 96px;
  padding: 14px 16px 12px;
  border-radius: 4px;
  background: #151515;
  border: 1px solid rgba(176, 141, 87, .25);
  color: #F2EDE3;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(176, 141, 87, .08);
  position: relative;
}

/* cantos dourados decorativos */
.countdown__item::before,
.countdown__item::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: #B08D57;
  border-style: solid;
}

.countdown__item::before {
  top: -1px;
  left: -1px;
  border-width: 1.5px 0 0 1.5px;
}

.countdown__item::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 1.5px 1.5px 0;
}

.countdown__item strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: .04em;
  color: #D2AC47;
  text-shadow: 0 0 30px rgba(210, 172, 71, .3);
}

.countdown__item span {
  display: block;
  margin-top: 6px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #F2EDE3;
  font-family: "Inter", sans-serif;
}

/* ─── SECTION: BENEFITS / GENERIC ───────────────── */
.benefits {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  padding: 72px clamp(20px, 4vw, 60px) 40px;
}

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

.section-heading--centered {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: .04em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.05rem;
  letter-spacing: .01em;
}

/* ─── IDENTITY GRID ─────────────────────────────── */
.identity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.identity-item {
  padding: 1.75rem;
  border-radius: 20px;
  background: #000000;
  border: 1px solid rgba(210, 172, 71, .12);
  transition: transform 260ms ease, border-color 260ms ease;
}

.identity-item:hover {
  transform: translateY(-4px);
}

.identity-item--in {
  background: #151515;
  border-color: rgba(176, 141, 87, .22);
}

.identity-item--out {
  background: #111111;
  border-color: rgba(176, 141, 87, .10);
}

.identity-item h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: .04em;
  margin-bottom: 1.25rem;
}

.identity-item--in h3 {
  color: #B08D57;
}

.identity-item--out h3 {
  color: #8A8A8A;
}

.identity-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.identity-item ul li {
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: .95rem;
}

.identity-item--out ul li {
  color: #B8B3AA;
  border-bottom-color: rgba(242, 237, 227, .08);
}

.identity-item--in ul li {
  color: #F2EDE3;
  border-bottom-color: rgba(176, 141, 87, .12);
}

/* ─── LEARNING GRID ─────────────────────────────── */
.learning-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 26px;
}

.learning-item {
  position: relative;
  padding: 12px 10px 0;
  text-align: center;
}

.learning-item:nth-child(n+4) {
  margin-top: 8px;
}

.learning-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 50%;
  isolation: isolate;
  background: radial-gradient(circle at 30% 30%, rgba(176, 141, 87, .14), rgba(9, 8, 5, .95)), linear-gradient(180deg, rgba(28, 20, 8, .94), rgba(10, 10, 8, .98));
  border: 1px solid rgba(176, 141, 87, .22);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3), inset 0 0 0 1px rgba(255, 255, 255, .02);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.learning-icon::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  inset: -15px;
  z-index: -2;
  background: radial-gradient(circle at 30% 30%, rgba(176, 141, 87, .32), rgba(176, 141, 87, 0) 54%), radial-gradient(circle at 72% 70%, rgba(210, 172, 71, .12), rgba(210, 172, 71, 0) 46%);
  filter: blur(14px);
  opacity: .7;
  animation: learning-icon-pulse 4.8s ease-in-out infinite;
}

.learning-icon::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  inset: -8px;
  z-index: -1;
  border: 1px solid rgba(176, 141, 87, .22);
  border-top-color: rgba(210, 172, 71, .7);
  border-right-color: rgba(176, 141, 87, .4);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .01);
  animation: learning-icon-orbit 10s linear infinite;
}

.learning-icon svg {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #e6c27b;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(210, 172, 71, .28));
  transition: transform 260ms ease, stroke 260ms ease;
}

.learning-item:hover .learning-icon {
  transform: translateY(-6px) scale(1.05);
  border-color: rgba(176, 141, 87, .45);
  box-shadow: 0 28px 56px rgba(0, 0, 0, .32), 0 0 34px rgba(176, 141, 87, .18), inset 0 0 0 1px rgba(255, 255, 255, .03);
}

.learning-item:hover .learning-icon svg {
  transform: scale(1.07);
  stroke: #f6dca0;
}

.learning-item h3 {
  margin: 0 0 12px;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: .03em;
}

.learning-item p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--muted);
}

/* CTA Strip */
.cta-strip {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 54px;
  padding: 26px 28px;
  border-radius: 24px;
  background: #111111;
  border: 1px solid rgba(176, 141, 87, .14);
}

.cta-strip .section-kicker {
  color: #B08D57;
}

.cta-strip h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.3;
  color: #F2EDE3;
}

/* ─── SYMPTOMS (Emotional Fold) ─────────────────── */
.symptoms {
  position: relative;
  padding: 0 clamp(20px, 4vw, 60px) 72px;
}

.symptoms__wrap {
  max-width: 1260px;
  margin: 0 auto;
}

.symptoms__panel {
  position: relative;
  overflow: hidden;
  padding: 36px clamp(24px, 4vw, 48px);
  border-radius: 28px;
  background: #111111;
  border: 1px solid rgba(176, 141, 87, .12);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .3);
}

.symptoms__panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 33px;
  border: 1px solid rgba(255, 255, 255, .03);
  pointer-events: none;
}

.symptoms__heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.symptoms__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 26px;
}

.symptom-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: #121212;
  border: 1px solid rgba(242, 237, 227, .06);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.symptom-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 106, .18);
}

.symptom-item--after:hover {
  border-color: rgba(245, 158, 11, .2);
}

.symptom-item__icon {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(76, 14, 18, .84), rgba(34, 8, 11, .92));
  border: 1px solid rgba(255, 106, 106, .16);
  box-shadow: 0 10px 24px rgba(34, 8, 11, .28), inset 0 0 0 1px rgba(255, 255, 255, .03);
  transition: transform 240ms ease;
}

.symptom-item__icon::before {
  content: "";
  position: absolute;
  z-index: -2;
  border-radius: 22px;
  inset: -10px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 107, 107, .42), rgba(255, 107, 107, 0) 54%), radial-gradient(circle at 70% 70%, rgba(255, 76, 128, .18), rgba(255, 76, 128, 0) 42%);
  filter: blur(12px);
  opacity: .7;
  animation: symptom-icon-pulse 4.4s ease-in-out infinite;
}

.symptom-item__icon::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 20px;
  inset: -5px;
  border: 1px solid rgba(255, 106, 106, .14);
  border-top-color: rgba(255, 132, 132, .8);
  animation: symptom-icon-orbit 8.8s linear infinite;
}

.symptom-item__icon svg {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #6A2A2A;
  stroke-width: 9;
  stroke-linecap: round;
}

.symptom-item__icon--gold {
  background: linear-gradient(180deg, rgba(18, 12, 2, .84), rgba(28, 16, 2, .92));
  border-color: rgba(245, 158, 11, .2);
}

.symptom-item__icon--gold::before {
  background: radial-gradient(circle at 30% 30%, rgba(255, 188, 100, .4), rgba(255, 188, 100, 0) 54%);
}

.symptom-item__icon--gold::after {
  border-color: rgba(245, 158, 11, .15);
  border-top-color: rgba(245, 158, 11, .7);
}

.symptom-item__icon--gold svg {
  stroke: #f59e0b;
}

.symptom-item__copy h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
  line-height: 1.35;
  color: #F2EDE3;
}

.symptom-item__copy p {
  margin: 0;
  color: #B8B3AA;
  font-size: .92rem;
  line-height: 1.65;
}

/* ─── EMOTIONAL FOLD (Dores + Bonus) ────────────── */
.emotional-fold {
  position: relative;
  padding: 0 clamp(20px, 4vw, 60px) 72px;
}

.emotional-fold__wrap {
  max-width: 1260px;
  margin: 0 auto;
}

.emotional-fold__heading {
  max-width: 860px;
  margin-bottom: 34px;
}

/* Bonus ebook cover */
.bonus-ebook-cover {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  filter: drop-shadow(0 20px 40px rgba(176, 141, 87, .22)) drop-shadow(0 8px 16px rgba(0, 0, 0, .5));
  animation: floating 8s ease-in-out infinite;
}

.bonus-ebook-img {
  max-width: 100%;
  border-radius: 6px;
  transform: perspective(900px) rotateY(-4deg);
  transition: transform .4s ease;
}

.bonus-ebook-cover:hover .bonus-ebook-img {
  transform: perspective(900px) rotateY(0deg) scale(1.02);
}


.emotion-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

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

.emotion-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  border-radius: 28px;
  background: #0c111a;
  border: 1px solid rgba(163, 210, 255, .1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.emotion-card--bonus {
  min-height: 220px;
}

.emotion-card:hover {
  transform: translateY(-6px);
  border-color: rgba(163, 210, 255, .16);
  box-shadow: 0 34px 82px rgba(0, 0, 0, .34);
}

.emotion-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 12, .06) 0%, rgba(4, 8, 12, .12) 34%, rgba(4, 8, 12, .84) 100%),
    linear-gradient(90deg, rgba(5, 10, 16, .32) 0%, rgba(5, 10, 16, .02) 34%, rgba(5, 10, 16, .18) 100%);
}

.emotion-card--bonus .emotion-card__overlay {
  background: linear-gradient(180deg, rgba(20, 40, 80, .3), rgba(4, 8, 12, .9));
}

.emotion-card__copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
}

.emotion-card__copy h3 {
  margin: 0 0 4px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: .95;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: .02em;
}

.emotion-card--bonus .emotion-card__copy h3 {
  font-size: 1.8rem;
  color: #f59e0b;
}

.emotion-card__copy p {
  margin: 0;
  color: rgba(238, 244, 255, .84);
  font-size: 1rem;
  line-height: 1.45;
}

/* Card background fills */
.emotion-card:nth-child(1) {
  background: linear-gradient(145deg, #181410, #0c111a);
}

.emotion-card:nth-child(2) {
  background: linear-gradient(145deg, #141418, #0c111a);
}

.emotion-card:nth-child(3) {
  background: linear-gradient(145deg, #181414, #0c111a);
}

.emotion-card:nth-child(4) {
  background: linear-gradient(145deg, #141a18, #0c111a);
}

.emotion-card:nth-child(5) {
  background: linear-gradient(145deg, #181817, #0c111a);
}

.emotion-card:nth-child(6) {
  background: linear-gradient(145deg, #141218, #0c111a);
}

.emotion-card--bonus:nth-child(1) {
  background: linear-gradient(145deg, #1a1610, #0c111a);
}

.emotion-card--bonus:nth-child(2) {
  background: linear-gradient(145deg, #181412, #0c111a);
}

.emotion-card--bonus:nth-child(3) {
  background: linear-gradient(145deg, #181614, #0c111a);
}

/* ─── PROTOCOLO 21 DIAS — SLIDER ────────────────── */
.protocol-slider {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  overflow: hidden;
}

.protocol-slider__track {
  display: flex;
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.protocol-slider__track .protocol-card {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* Controles: setas + pontos */
.protocol-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.protocol-slider__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(176, 141, 87, .28);
  background: #151515;
  color: #B08D57;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.28);
  transition: border-color .25s ease, background .25s ease, color .25s ease, transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease;
  flex-shrink: 0;
}

.protocol-slider__btn:hover {
  border-color: rgba(176, 141, 87, .7);
  background: rgba(176, 141, 87, .1);
  color: #D2AC47;
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(0,0,0,.38);
}

.protocol-slider__btn:active {
  transform: scale(.96);
}

.protocol-slider__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.protocol-slider__dot {
  width: 28px;
  height: 3px;
  border-radius: 3px;
  border: none;
  background: rgba(176, 141, 87, .18);
  cursor: pointer;
  transition: background .3s ease, width .3s ease;
  padding: 0;
}

.protocol-slider__dot--active {
  width: 52px;
  background: linear-gradient(90deg, #C9A84C, #9F7A3A);
  box-shadow: 0 0 8px rgba(176,141,87,.25);
}

/* ─── PROTOCOLO 21 DIAS — CARDS PREMIUM ─────────── */
.protocol-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.protocol-card {
  position: relative;
  overflow: hidden;
  background: #111111;
  border: 1px solid rgba(176, 141, 87, 0.16);
  border-radius: 4px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
  min-height: 300px;
  cursor: default;
}

.protocol-card:hover {
  transform: translateY(-6px);
  border-color: rgba(176, 141, 87, 0.34);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(176, 141, 87, 0.12);
}

/* ─ Barra lateral dourada (cresce por etapa) */
.protocol-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, #B08D57, #9F7A3A);
  border-radius: 4px 0 0 4px;
  transition: height 320ms ease;
}

.protocol-card[data-step="1"] .protocol-card__accent { height: 33%; }
.protocol-card[data-step="2"] .protocol-card__accent { height: 66%; }
.protocol-card[data-step="3"] .protocol-card__accent { height: 100%; }

.protocol-card[data-step="3"] .protocol-card__accent {
  background: linear-gradient(180deg, #D2AC47, #B08D57);
  box-shadow: 0 0 18px rgba(210, 172, 71, 0.25);
}

/* ─ Número fantasma no fundo */
.protocol-card__ghost-num {
  position: absolute;
  bottom: -14px;
  right: -4px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 7.5rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(176, 141, 87, 0.09);
  pointer-events: none;
  select: none;
  user-select: none;
}

/* ─ Inner container */
.protocol-card__inner {
  position: relative;
  z-index: 1;
  padding: 28px 24px 24px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ─ Badge de fase */
.protocol-card__badge {
  display: inline-block;
  margin-bottom: 18px;
  font-family: "Inter", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #9F7A3A;
}

.protocol-card[data-step="3"] .protocol-card__badge {
  color: #B08D57;
}

/* ─ Título principal */
.protocol-card__title {
  margin: 0 0 8px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.7rem, 2.2vw, 2.1rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.03em;
  color: #F2EDE3;
}

.protocol-card[data-step="3"] .protocol-card__title {
  background: linear-gradient(135deg, #F2EDE3, #D2AC47);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─ Subtítulo tático */
.protocol-card__sub {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #B08D57;
  line-height: 1.5;
}

/* ─ Divisor horizontal dourado */
.protocol-card__divider {
  margin: 18px 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(176, 141, 87, 0.35), transparent);
}

/* ─ Corpo descritivo */
.protocol-card__body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  line-height: 1.7;
  color: #B8B3AA;
  flex: 1;
}

/* ─ Progressão visual (pontos) */
.protocol-card__footer {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
}

.protocol-card__step-dot {
  display: block;
  height: 3px;
  border-radius: 2px;
  flex: 1;
  background: rgba(176, 141, 87, 0.15);
  transition: background 300ms ease;
}

.protocol-card__step-dot--1 {
  background: linear-gradient(90deg, #B08D57, #9F7A3A);
}

.protocol-card[data-step="3"] .protocol-card__step-dot--1 {
  background: linear-gradient(90deg, #D2AC47, #B08D57);
}

/* ─── MODULES STRIP ─────────────────────────────── */
.modules-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.module-block {
  position: relative;
  padding: 1.4rem 1.4rem 1.25rem;
  background: linear-gradient(180deg, rgba(11, 19, 33, .94), rgba(7, 12, 22, .98));
  border: 1px solid rgba(154, 208, 255, .1);
  border-radius: 16px;
}

.module-block::before {
  content: attr(data-n);
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  color: var(--cyan);
  letter-spacing: .08em;
  margin-bottom: .75rem;
  opacity: .7;
}

.module-block h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .03em;
  margin-bottom: .5rem;
  color: var(--cyan);
}

.module-block p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
}

/* ─── TESTIMONIALS ──────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  border-radius: 28px;
  background: rgba(17, 18, 21, .88);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .22);
  backdrop-filter: blur(12px);
}

.testimonial-card__head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px 14px;
}

.testimonial-card__head h3 {
  margin: 0 0 6px;
  font-size: 1.24rem;
  line-height: 1.3;
}

.testimonial-card__head p {
  margin: 0;
  color: #c8d4e5;
  font-size: .98rem;
}

.testimonial-card__icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.testimonial-card__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #eef6ff;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonial-card__body {
  padding: 14px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.testimonial-card__body p {
  margin: 0;
  color: #f4f8ff;
  font-size: 1.06rem;
  line-height: 1.55;
  font-style: italic;
}

/* ─── GUARANTEE (Premium) ────────────────────────── */
.guarantee-section {
  position: relative;
  padding: clamp(40px, 5vw, 64px) clamp(20px, 5vw, 60px);
  background: #0A0A0A;
  border-top: 1px solid rgba(176, 141, 87, .14);
  border-bottom: 1px solid rgba(176, 141, 87, .10);
  overflow: hidden;
  text-align: center;
}

/* Glow dourado radial ao centro */
.guarantee-section__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(176, 141, 87, .08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.guarantee-wrap {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* ─ Medalhão */
.guarantee-medal {
  position: relative;
  width: 360px;
  height: 360px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 30px rgba(176, 141, 87, .20)) drop-shadow(0 0 60px rgba(176, 141, 87, .07));
}

/* ─ Copy */
.guarantee-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guarantee-copy__title {
  margin: 4px 0 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1;
  letter-spacing: .04em;
  font-weight: 400;
  color: #F2EDE3;
}

.guarantee-copy__text {
  max-width: 520px;
  margin: 0 0 18px;
  color: #B8B3AA;
  font-size: clamp(.88rem, 1.4vw, 1rem);
  line-height: 1.6;
}

/* Trust bullets */
.guarantee-trust-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.guarantee-trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: .85rem;
  font-weight: 500;
  color: #F2EDE3;
}

/* CTA full-width */
.guarantee-cta {
  width: 100%;
  max-width: 440px;
}

/* ─ Keyframes */
@keyframes guaranteeRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes guaranteePulse {
  0%, 100% { opacity: .4; transform: scale(1); }
  50%       { opacity: .9; transform: scale(1.025); }
}



/* ─── PRICING CARD ──────────────────────────────── */
.pricing-card-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(18, 14, 6, .88) 0%, rgba(6, 5, 2, .94) 100%),
    url('assets/poly_bg.png') center / cover no-repeat;
  border: 1px solid rgba(176, 141, 87, .22);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, .55),
    0 0 0 1px rgba(176, 141, 87, .06),
    inset 0 1px 0 rgba(255, 255, 255, .03);
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 172, 71, .45), transparent);
  pointer-events: none;
}

.pricing-card__top-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .65rem 1rem;
  background: rgba(176, 141, 87, .08);
  border-bottom: 1px solid rgba(176, 141, 87, .16);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #B08D57;
  font-family: "Inter", sans-serif;
}

.pricing-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 2rem 1.5rem;
  text-align: center;
}

.pricing-card__benefits {
  display: grid;
  gap: 0;
  margin: 0 0 1.25rem;
  padding: .9rem 1.25rem;
  list-style: none;
  text-align: left;
  border-radius: 12px;
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(176, 141, 87, .1);
}

.pricing-card__benefits li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #F2EDE3;
  font-size: 1.1rem;
  font-weight: 400;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(176, 141, 87, .07);
  font-family: "Inter", sans-serif;
}

.pricing-card__benefits li:last-child {
  border-bottom: none;
}

.pricing-card__benefit-icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(176, 141, 87, .5);
  position: relative;
  flex-shrink: 0;
}

.pricing-card__benefit-icon::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 6px;
  width: 8px;
  height: 4.5px;
  border-left: 1.5px solid #B08D57;
  border-bottom: 1.5px solid #B08D57;
  transform: rotate(-45deg);
}

.pricing-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 1.25rem 0;
}

.pricing-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 141, 87, .2), transparent);
}

.pricing-divider i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9F7A3A;
  flex-shrink: 0;
  opacity: .7;
}

.pricing-card__header h3 {
  margin: 0 0 .25rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: .06em;
  color: #F2EDE3;
}

.pricing-card__header p {
  margin: 0;
  color: #B08D57;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .05em;
  font-family: "Inter", sans-serif;
}

.pricing-card__price strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 400;
  color: #F2EDE3;
  line-height: 1;
  text-shadow: 0 0 40px rgba(242, 237, 227, .08);
}

.pricing-card__price span {
  display: block;
  margin-top: .4rem;
  color: #5a5040;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}

.pricing-card__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .5rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.pricing-card__trust li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  padding: .65rem .25rem;
  color: #6a6055;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid rgba(176, 141, 87, .1);
  border-radius: 6px;
  background: rgba(176, 141, 87, .03);
  font-family: "Inter", sans-serif;
}

.pricing-card__trust li::before {
  content: '—';
  color: #9F7A3A;
  font-size: .65rem;
  letter-spacing: 0;
  line-height: 1;
}

.safe-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: #4a4035;
  font-size: .7rem;
  margin-top: 1rem;
  letter-spacing: .04em;
  font-family: "Inter", sans-serif;
}

.safe-bar svg {
  width: 12px;
  height: 12px;
  fill: #9F7A3A;
  opacity: .7;
}

/* ─── BUTTONS — SISTEMA UNIFICADO PREMIUM ─────────── */

/* Keyframe de brilho deslizante (shimmer) */
@keyframes btn-shimmer {
  0%   { transform: translateX(-120%) skewX(-20deg); }
  100% { transform: translateX(220%)  skewX(-20deg); }
}

/* ── Base ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  position: relative;
  overflow: hidden;
  padding: .9rem 2.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: .88rem;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  /* Transição elegante — sem vibrar */
  transition:
    transform .28s cubic-bezier(.22,1,.36,1),
    box-shadow .28s ease,
    background .28s ease,
    border-color .28s ease;
  -webkit-font-smoothing: antialiased;
  user-select: none;
}

/* ── Shimmer pseudo-element decorativo (todos os btn) ── */
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: rgba(255,255,255,.12);
  transform: translateX(-120%) skewX(-20deg);
  pointer-events: none;
}

.btn:hover::after {
  animation: btn-shimmer .55s cubic-bezier(.22,1,.36,1) forwards;
}

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

.btn:active {
  transform: translateY(-1px);
}

/* ── BOTÃO PRINCIPAL: dourado premium ── */
.btn-gold {
  background: linear-gradient(135deg, #C9A84C 0%, #B08D57 55%, #9F7A3A 100%);
  color: #0A0A0A;
  box-shadow:
    0 8px 28px -4px rgba(176, 141, 87, .40),
    0 2px 6px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.18);
  border: 1px solid rgba(210,172,71,.12);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #D6B660 0%, #C09A5A 55%, #AB854A 100%);
  box-shadow:
    0 14px 38px -4px rgba(176, 141, 87, .52),
    0 4px 12px rgba(0,0,0,.40),
    inset 0 1px 0 rgba(255,255,255,.25);
  color: #0A0A0A;
}

.btn-gold:active {
  box-shadow:
    0 5px 16px -4px rgba(176,141,87,.35),
    0 2px 6px rgba(0,0,0,.28);
}

/* ── BOTÃO SECUNDÁRIO: grafite + borda dourada ── */
.btn-outline {
  background: #151515;
  color: #F2EDE3;
  border: 1px solid rgba(176, 141, 87, .38);
  box-shadow: 0 4px 16px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.04);
}

.btn-outline:hover {
  background: #1e1e1e;
  border-color: rgba(176, 141, 87, .65);
  color: #F2EDE3;
  box-shadow: 0 8px 24px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06);
}

.btn-outline:active {
  box-shadow: 0 3px 8px rgba(0,0,0,.28);
}

/* ── BOTÃO AUXILIAR / GHOST ── */
.btn-ghost {
  background: rgba(255,255,255,.04);
  color: #B8B3AA;
  border: 1px solid rgba(176,141,87,.16);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(176,141,87,.07);
  border-color: rgba(176,141,87,.32);
  color: #F2EDE3;
}

/* ── Modificadores de tamanho ── */
.btn-block {
  width: 100%;
}

/* LG — botões de seção (garantia, faq, bônus) */
.btn-lg {
  min-height: 52px;
  padding: .95rem 2.5rem;
  font-size: .9rem;
  letter-spacing: .1em;
}

/* XL — CTA principal da oferta */
.btn-xl {
  min-height: 62px;
  padding: 1.1rem 3rem;
  font-size: 1.02rem;
  letter-spacing: .12em;
  border-radius: 6px;
}

/* ── Focus visible: acessibilidade com identidade de marca ── */
.btn:focus-visible,
.hero-cta:focus-visible,
.hero-cta-sec:focus-visible {
  outline: 2px solid #B08D57;
  outline-offset: 3px;
}

.btn-gold:focus-visible {
  outline-color: #D2AC47;
  box-shadow:
    0 0 0 4px rgba(176, 141, 87, .22),
    0 8px 28px -4px rgba(176, 141, 87, .40);
}

.protocol-slider__btn:focus-visible {
  outline: 2px solid #B08D57;
  outline-offset: 2px;
}

.protocol-slider__dot:focus-visible {
  outline: 2px solid #B08D57;
  outline-offset: 3px;
  border-radius: 3px;
}

/* ─── FAQ ────────────────────────────────────────── */
.faq-section {
  position: relative;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #B08D57, transparent);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: .6rem;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid rgba(176, 141, 87, .15);
  background: #111111;
  overflow: hidden;
  transition: border-color 280ms ease, background 280ms ease;
}

.faq-item:hover {
  border-color: rgba(176, 141, 87, .3);
}

.faq-item[open] {
  background: #131108;
  border-color: rgba(176, 141, 87, .45);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
}

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

.faq-item summary span:first-child {
  color: #F2EDE3;
  font-family: "Sora", sans-serif;
  font-size: clamp(.92rem, 1.6vw, 1.05rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .01em;
}

.faq-item[open] summary span:first-child {
  color: #D2AC47;
}

.faq-icon {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(176, 141, 87, .3);
  background: rgba(176, 141, 87, .05);
  transition: border-color 280ms ease, background 280ms ease, transform 280ms ease;
}

.faq-item[open] .faq-icon {
  border-color: rgba(176, 141, 87, .6);
  background: rgba(176, 141, 87, .1);
  transform: rotate(45deg);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 1.5px;
  background: #B08D57;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: opacity 200ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-body {
  padding: 0 22px 18px;
  border-top: 1px solid rgba(176, 141, 87, .08);
}

.faq-body p {
  margin: 14px 0 0;
  color: #7a7060;
  font-family: "Inter", sans-serif;
  font-size: .88rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: .01em;
}

/* ─── FAQ CONTACT BLOCK ──────────────────────────── */
.faq-contact {
  max-width: 760px;
  margin: 2.5rem auto 0;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(176, 141, 87, .1);
}

.faq-contact__text {
  margin: 0 0 1rem;
  color: #4a4035;
  font-family: "Inter", sans-serif;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.faq-contact__btn {
  min-width: 260px;
}

/* ─── FOOTER ─────────────────────────────────────── */
.site-footer {
  text-align: center;
  padding: 2.5rem 2rem 3rem;
  border-top: 1px solid rgba(176, 141, 87, .06);
}

.footer-copy {
  margin: 0 0 .75rem;
  color: #2e2820;
  font-family: "Inter", sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-legal {
  max-width: 600px;
  margin: 0 auto;
  color: #1e1a14;
  font-family: "Inter", sans-serif;
  font-size: .68rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .005em;
}

/* ─── Animations ─────────────────────────────────── */
@keyframes floating {
  0% {
    transform: translateY(0);
  }

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

  100% {
    transform: translateY(0);
  }
}

@keyframes popupFloat {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.02);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes floatMoney {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: .3;
  }

  50% {
    opacity: .8;
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes learning-icon-pulse {

  0%,
  100% {
    opacity: .62;
    transform: scale(.96);
  }

  50% {
    opacity: .94;
    transform: scale(1.05);
  }
}

@keyframes learning-icon-orbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes symptom-icon-pulse {

  0%,
  100% {
    opacity: .56;
    transform: scale(.96);
  }

  50% {
    opacity: .9;
    transform: scale(1.06);
  }
}

@keyframes symptom-icon-orbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left {
    align-items: center;
  }

  /* hero-right: altura fixa para os popups terem espaço de flutuar sobre a imagem */
  .hero-right {
    min-height: 420px;
    order: -1;
    position: relative;
  }

  /* hero-image-wrap: posição relativa para servir de âncora dos popups absolutos */
  .hero-image-wrap {
    position: absolute;
    inset: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }

  .hero-card-wrap {
    margin: 0 auto;
    max-width: 480px;
  }

  /* scarcity-band já é flex-column centrado por padrão — sem override necessário */
  .identity-grid {
    grid-template-columns: 1fr;
  }

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

  .modules-strip {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .emotion-grid--bonus {
    grid-template-columns: 1fr;
  }

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

  .protocol-slider {
    max-width: 100%;
  }

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

  .guarantee-section {
    padding: 40px clamp(20px, 5vw, 40px) 56px;
  }

  .guarantee-medal {
    width: 360px;
    height: 360px;
  }

  .guarantee-medal svg {
    width: 360px;
    height: 360px;
  }

  .cta-strip {
    flex-direction: column;
    gap: 1.25rem;
  }

  /* Popups: lado a lado, paralelos, na base da imagem */
  .hero-popup {
    position: absolute;
    min-width: 0;
    width: auto;
    padding: .35rem .55rem;
    gap: .38rem;
    border-radius: 9px;
    animation: popupFloat 6s ease-in-out infinite;
  }

  .hero-popup .hero-popup__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .hero-popup .hero-popup__icon svg {
    width: 11px;
    height: 11px;
  }

  .hero-popup .hero-popup__title {
    font-size: .54rem;
    white-space: nowrap;
  }

  .hero-popup .hero-popup__title span {
    font-size: .5rem;
  }

  .hero-popup .hero-popup__value {
    font-size: .56rem;
    white-space: nowrap;
  }

  /* Mesma altura — lado a lado */
  .hero-popup--one {
    bottom: 8%;
    left: 2%;
    animation-delay: 0s;
  }

  .hero-popup--two {
    bottom: 8%;
    right: 2%;
    top: auto;
    animation-delay: 1.5s;
  }

  .hero-image-fade {
    background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, #000000 88%);
  }

  .hero-symbol {
    display: none;
  }
}

@media (max-width: 640px) {

  /* ── Espaçamento vertical global entre seções ── */
  .benefits {
    padding-top: 40px;
    padding-bottom: 28px;
  }

  .symptoms {
    padding-bottom: 40px;
  }

  .emotional-fold {
    padding-bottom: 24px !important;
  }

  .social-proof {
    padding: 24px 0 28px !important;
  }

  .section-heading--centered {
    margin-bottom: 24px;
  }

  /* ── Hero ─────────────────────────────────── */
  .hero {
    min-height: auto;
    padding: 20px 18px 0;
  }

  .hero-main-title {
    font-size: 2.8rem;
  }

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

  .modules-strip {
    grid-template-columns: 1fr;
  }

  .emotion-grid--bonus {
    grid-template-columns: 1fr;
  }

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

  .protocol-card__ghost-num {
    font-size: 5.5rem;
  }

  .pricing-card__content {
    padding: 2.5rem 1.5rem 2rem;
  }

  .guarantee-medal {
    width: 300px;
    height: 300px;
  }

  .guarantee-medal svg {
    width: 300px;
    height: 300px;
  }

  /* ── Botões — mobile ── */
  .btn {
    width: 100%;
    /* tap target generoso */
    min-height: 52px;
    padding: .9rem 1.75rem;
    font-size: .86rem;
    /* sem hover translateY agitando no touch */
    transition:
      box-shadow .22s ease,
      background .22s ease,
      border-color .22s ease;
  }

  .btn:hover {
    transform: none;
  }

  .btn-xl {
    min-height: 58px;
    font-size: .94rem;
    padding: 1rem 2rem;
  }

  .btn-lg {
    min-height: 52px;
    padding: .9rem 1.75rem;
  }

  /* Hero CTAs — mobile: mesma largura total */
  .hero-cta,
  .hero-cta-sec {
    width: 100%;
    min-height: 52px;
    font-size: .88rem;
    /* sem lift no touch */
    transition: box-shadow .22s ease, background .22s ease, border-color .22s ease;
  }

  .hero-cta:hover,
  .hero-cta-sec:hover {
    transform: none;
  }

  /* ── Espaçamento oferta → garantia no mobile ── */
  #oferta {
    padding-bottom: 2.5rem !important;
  }

  .guarantee-section {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .hero-glass-card {
    padding: 1.75rem 1.25rem;
  }
}

/* ═══════════════════════════════════════════════════
   PROVA SOCIAL — INFINITE MARQUEE (ESTEIRA)
   CSS-only infinite scroll. No JS. No generic carousel.
═══════════════════════════════════════════════════ */

/* ── Section wrapper ─────────────────────────────── */
.social-proof {
  position: relative;
  padding: 72px 0 80px;
  overflow: hidden;
  background: #000;
}

.social-proof::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #B08D57, transparent);
}

.social-proof .section-heading--centered {
  margin-bottom: 20px;
}

.social-proof__subtitle {
  margin: 10px auto 0;
  max-width: 400px;
  text-align: center;
  color: #6a6055;
  font-family: "Inter", sans-serif;
  font-size: .84rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .015em;
}

/* ── Outer container: clips the scroll + edge fades ─ */
.marquee-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Left & right fade masks */
.marquee-outer::before,
.marquee-outer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(60px, 12vw, 160px);
  z-index: 2;
  pointer-events: none;
}

.marquee-outer::before {
  left: 0;
  background: linear-gradient(to right, #000000 0%, transparent 100%);
}

.marquee-outer::after {
  right: 0;
  background: linear-gradient(to left, #000000 0%, transparent 100%);
}

/* ── Scrolling track wrapper ─────────────────────── */
.marquee-track-wrap {
  display: flex;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
  will-change: transform;
}

/* Pause on hover */
.marquee-outer:hover .marquee-track-wrap {
  animation-play-state: paused;
}

/* ── Individual track (original + clone) ──────────── */
.marquee-track {
  display: flex;
  gap: 24px;
  padding: 12px 12px 20px;
}

/* ── Individual card ─────────────────────────────── */
.tcard {
  position: relative;
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 26px 24px;
  background: #0d0d0d;
  border: 1px solid rgba(176, 141, 87, .18);
  border-radius: 16px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, .45),
    inset 0 1px 0 rgba(255, 255, 255, .03);
  transition: border-color .3s ease, box-shadow .3s ease;
  cursor: default;
}

/* Corner accent — top-left gold notch */
.tcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, #D2AC47, transparent);
  border-radius: 0 0 0 16px;
}

.tcard::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 36px;
  background: linear-gradient(180deg, #D2AC47, transparent);
  border-radius: 16px 0 0 0;
}

.tcard:hover {
  border-color: rgba(210, 172, 71, .35);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, .55),
    0 0 0 1px rgba(210, 172, 71, .08),
    inset 0 1px 0 rgba(255, 255, 255, .04);
}

/* Quote icon */
.tcard__quote {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: .9;
}

/* Quote line separator */
.tcard__quote::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(176, 141, 87, .3), transparent);
}

/* Testimonial text */
.tcard__text {
  margin: 0;
  flex: 1;
  font-family: "Sora", sans-serif;
  font-size: .93rem;
  font-weight: 400;
  line-height: 1.75;
  color: #c8d0dc;
  font-style: italic;
  letter-spacing: .01em;
}

/* Author block */
.tcard__author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.tcard__name {
  font-family: "Montserrat", sans-serif;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #D2AC47;
}

.tcard__role {
  font-family: "Inter", sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #5a6070;
}

/* ── Keyframe ────────────────────────────────────── */
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 640px) {
  .tcard {
    flex: 0 0 280px;
    padding: 22px 20px 20px;
    gap: 12px;
  }

  .tcard__text {
    font-size: .88rem;
  }

  .marquee-track {
    gap: 16px;
  }

  .marquee-track-wrap {
    animation-duration: 30s;
  }
}