/* HipnoVendas — Custom Styles
   Paleta: Deep Navy Black + Ice Blue + Cobalt CTA */

:root {
  --bg: #040812;
  --bg-elevated: #0d1527;
  --bg-card: #0d1527;
  --cream: #f4f6f9;
  --bronze: #38bdf8;
  --bronze-hot: #7dd3fc;
  --cta: #1d4ed8;
  --cta-hot: #2563eb;
  --white: #ffffff;
  --muted: #94a3b8;
  --muted-soft: #cbd5e1;
  --border: #1d2d4a;
  --border-soft: rgba(56, 189, 248, 0.22);
  --checkout: #040812;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: "Montserrat", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(56, 189, 248, 0.35);
  color: #fff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Typography helpers */
.font-display {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.text-bronze {
  color: var(--bronze);
}

.bg-bronze {
  background-color: var(--bronze);
}

.bg-page {
  background-color: var(--bg);
}

.bg-cream {
  background-color: var(--cream);
}

.border-subtle {
  border-color: var(--border);
}

/* Buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--cta);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 0.75rem;
  padding: 1.05rem 1.25rem;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 28px rgba(29, 78, 216, 0.4);
}

.btn-cta:hover {
  filter: brightness(1.08);
}

.btn-cta:active {
  transform: scale(0.985);
}

.btn-cta--sm {
  width: auto;
  max-width: 58%;
  padding: 0.75rem 0.7rem;
  font-size: 0.62rem;
  line-height: 1.25;
  border-radius: 0.65rem;
  white-space: normal;
  text-align: center;
  box-shadow: none;
}

@media (min-width: 400px) {
  .btn-cta--sm {
    font-size: 0.68rem;
    padding: 0.85rem 0.9rem;
    white-space: nowrap;
    max-width: none;
  }
}

/* Sticky bar */
.sticky-bar {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.75rem 0.7rem 1rem;
  background: rgba(4, 8, 18, 0.94);
  border: 1px solid var(--border);
  border-radius: 1rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

body {
  padding-bottom: 5.5rem;
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-cell {
  padding: 1.75rem 1.25rem;
}

.stats-cell:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.stats-cell:nth-child(-n + 2) {
  border-bottom: 1px solid var(--border);
}

.stats-number {
  font-size: clamp(1.75rem, 6vw, 2.35rem);
  font-weight: 800;
  color: var(--bronze);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stats-label {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.35;
}

/* Pill selector */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.45);
  background: transparent;
  color: var(--bronze);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pill.is-active {
  background: var(--bronze);
  color: #ffffff;
  border-color: var(--bronze);
  font-weight: 700;
}

.pill:hover:not(.is-active) {
  background: rgba(56, 189, 248, 0.08);
}

/* Journey cards */
.journey-card {
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 1.25rem;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(56, 189, 248, 0.14), transparent 55%),
    rgba(13, 21, 39, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.08);
  padding: 2rem 1.5rem;
  text-align: center;
}

.journey-scene .journey-card {
  background: rgba(4, 8, 18, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.journey-arrow {
  display: flex;
  justify-content: center;
  padding: 0.65rem 0;
  color: var(--bronze);
  font-size: 1.25rem;
  line-height: 1;
}

/* Deliverable row */
.deliverable {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 0.85rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.deliverable-num {
  font-size: 1.65rem;
  font-weight: 700;
  color: #3f3f46;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

/* Bonus cards */
.bonus-card {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 0.9rem;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.06);
}

.glow-card {
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.2),
    0 0 36px rgba(56, 189, 248, 0.18),
    0 12px 40px rgba(0, 0, 0, 0.35);
}

.bonus-mockup {
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(56, 189, 248, 0.28), transparent 60%),
    linear-gradient(180deg, #12203a 0%, #040812 100%);
  padding: 0.85rem 0.65rem;
  overflow: hidden;
}

.bonus-cover {
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 0.35rem;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.45));
}

.book-cover {
  width: 78%;
  aspect-ratio: 3 / 4.2;
  background: linear-gradient(160deg, #0d1527, #040812);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 0.35rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 0.5rem;
  text-align: center;
}

.book-cover__badge {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1.5px solid var(--bronze);
  color: var(--bronze);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.book-cover__title {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
  color: #f4f6f9;
  text-transform: uppercase;
}

.bonus-body {
  padding: 1rem 1rem 1rem 0.15rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.included-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 0.65rem;
  padding: 0.28rem 0.7rem;
  border: 1px solid var(--bronze);
  border-radius: 999px;
  color: var(--bronze);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* Offer section */
.offer-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(4, 8, 18, 0.1);
  color: #040812;
  font-weight: 600;
  font-size: 0.95rem;
}

.offer-diamond {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--bronze);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Value stack — checklist tentador */
.value-stack {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.value-stack__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 0.75rem;
}

.value-stack__check {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.35rem;
  background: #0b1528;
  border: 1px solid rgba(34, 197, 94, 0.45);
  color: #22c55e;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.value-stack__text {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

.value-stack__price {
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 2px;
}

.value-stack__price--free {
  text-decoration: none;
  color: #22c55e;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.value-stack__total {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  text-align: center;
}

.value-stack__total-price {
  color: #ef4444;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.value-stack--light .value-stack__check {
  background: #e8eef7;
  border-color: rgba(34, 197, 94, 0.5);
}

.value-stack--light .value-stack__text {
  color: #040812;
}

.value-stack--light .value-stack__price {
  color: #64748b;
}

.checkout-card {
  background: var(--checkout);
  border-radius: 2rem;
  padding: 1.75rem 1.35rem 1.5rem;
  color: #fff;
  border: 1px solid rgba(56, 189, 248, 0.18);
}

.divider-or {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #71717a;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  margin: 1.25rem 0;
}

.divider-or::before,
.divider-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: transparent;
  border: 0;
  color: #fff;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.35;
}

.faq-icon {
  color: var(--bronze);
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
  font-weight: 400;
}

.faq-panel {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.faq-item.is-open .faq-panel {
  display: block;
}

/* Hero photo */
.hero-photo {
  aspect-ratio: 4 / 5;
  max-height: 520px;
  border: 1px solid var(--border);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.12),
    0 0 40px rgba(56, 189, 248, 0.12),
    0 16px 48px rgba(0, 0, 0, 0.45);
  background: var(--bg-card);
}

@media (min-width: 640px) {
  .hero-photo {
    aspect-ratio: 16 / 11;
    max-height: 420px;
  }
}

.visual-coins {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0.25rem;
  background: transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-coins--logo {
  aspect-ratio: auto;
  min-height: 180px;
  padding: 1.5rem 1.25rem 2.5rem;
  flex-direction: column;
  gap: 0;
}

.visual-logo {
  width: min(100%, 420px);
  height: auto;
  display: block;
  opacity: 0.95;
}

.visual-logo-caption {
  margin: 1.75rem 0 0;
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
}

.visual-logo-arrow {
  display: block;
  margin-top: 0.85rem;
  color: var(--bronze);
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 700;
}

@media (min-width: 640px) {
  .visual-logo-caption {
    margin-top: 2.25rem;
    font-size: 1.85rem;
  }

  .visual-logo-arrow {
    font-size: 2rem;
  }
}

.visual-chain {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #040812;
}

.visual-chain.journey-scene {
  min-height: auto;
  aspect-ratio: auto;
  display: block;
  text-align: initial;
  padding: 0;
}

.visual-chain::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--visual-bg);
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  opacity: 0.15;
}

.visual-chain > * {
  position: relative;
  z-index: 1;
}

.final-cta {
  position: relative;
  overflow: hidden;
}

.final-cta__rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.final-cta__rings span {
  position: absolute;
  border: 1px solid rgba(56, 189, 248, 0.14);
  border-radius: 50%;
}

.final-cta__rings span:nth-child(1) {
  width: 220px;
  height: 220px;
}

.final-cta__rings span:nth-child(2) {
  width: 320px;
  height: 320px;
}

.final-cta__rings span:nth-child(3) {
  width: 420px;
  height: 420px;
}

.offer-curve {
  height: 2.5rem;
  background: var(--cream);
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
  margin-bottom: -1px;
}

/* ========== Prova social / Carrossel peek ========== */
.proof-section {
  overflow: hidden;
}

.proof-section > div:first-child h2 {
  text-align: center;
}

.proof-carousel {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.proof-carousel__viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  touch-action: pan-y;
}

.proof-carousel__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  gap: 0.75rem;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  box-sizing: border-box;
}

.proof-carousel__slide {
  flex: 0 0 82%;
  width: 82%;
  min-width: 82%;
  max-width: 82%;
  margin: 0;
  box-sizing: border-box;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transform: scale(0.96);
  opacity: 0.5;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.proof-carousel__slide.is-active {
  transform: scale(1);
  opacity: 1;
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.14),
    0 18px 40px rgba(0, 0, 0, 0.45);
}

.proof-carousel__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(70vh, 580px);
  object-fit: contain;
  object-position: center top;
  background: #060b16;
  margin: 0 auto;
}

.proof-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.15rem;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.proof-carousel__btn {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(13, 21, 39, 0.9);
  color: var(--bronze);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.proof-carousel__btn:hover {
  background: rgba(56, 189, 248, 0.12);
  border-color: var(--bronze);
}

.proof-carousel__btn:active {
  transform: scale(0.96);
}

.proof-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex: 1;
}

.proof-carousel__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(148, 163, 184, 0.45);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.proof-carousel__dot.is-active {
  width: 1.35rem;
  background: var(--bronze);
}

@media (min-width: 640px) {
  .proof-section > div:first-child h2 {
    text-align: left;
  }

  .proof-carousel__slide {
    flex-basis: 58%;
    width: 58%;
    min-width: 58%;
    max-width: 58%;
  }

  .proof-carousel__img {
    max-height: min(68vh, 660px);
  }

  .proof-carousel__controls {
    max-width: 320px;
  }
}

@media (min-width: 1024px) {
  .proof-carousel__slide {
    flex-basis: 46%;
    width: 46%;
    min-width: 46%;
    max-width: 46%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .proof-carousel__track,
  .proof-carousel__slide {
    transition: none;
  }
}

/* ========== Reveal / Fade-in ========== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}
.reveal-delay-4 {
  transition-delay: 0.32s;
}
.reveal-delay-5 {
  transition-delay: 0.4s;
}

/* Word / letter stagger inside headlines */
.reveal-text .reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-text.is-visible .reveal-word {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-text .reveal-word {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Desktop */
@media (min-width: 768px) {
  .page-shell {
    max-width: 480px;
    margin: 0 auto;
  }

  .sticky-bar {
    max-width: 456px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 1.5rem);
  }

  .btn-cta {
    font-size: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .page-shell {
    max-width: 720px;
  }

  .sticky-bar {
    max-width: 688px;
  }

  .stats-cell {
    padding: 2.25rem 1.75rem;
  }

  .bonus-card {
    grid-template-columns: 32% 1fr;
  }

  .bonus-mockup {
    min-height: 210px;
  }

  .checkout-card {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    padding: 2.25rem 2rem 1.75rem;
  }
}
