/* ============================================
   ÉVORA — Estilos Principais (Mobile-First)
   Padrão visual: BR Gym reference (dark + neon accent borders)
   ============================================ */

/* === KEYFRAMES === */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3); }
  50%      { box-shadow: 0 4px 40px rgba(230, 57, 70, 0.5); }
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === UTILITIES === */
.text-accent {
  color: var(--color-accent-primary);
}

/* === SVG ICON SYSTEM === */
.icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.icon--inline {
  width: 18px;
  height: 18px;
  margin-left: 4px;
}
.icon--badge {
  width: 16px;
  height: 16px;
  stroke: var(--color-accent-primary);
}
.icon--badge-sm {
  width: 14px;
  height: 14px;
  stroke: #fff;
}
.icon--float {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent-primary);
}
.icon--card-check {
  width: 18px;
  height: 18px;
  stroke: #fff;
}
.icon--list {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.icon--list-sm {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.icon--section-title {
  width: 28px;
  height: 28px;
}
.icon--play {
  width: 48px;
  height: 48px;
  color: var(--color-text-muted);
  opacity: 0.7;
}

/* === CONTAINER === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* === SECTION BASE === */
.section {
  padding: var(--section-py-mobile) 0;
}
.section--alt {
  background-color: var(--color-bg-secondary);
}

/* === SECTION TITLE === */
.section__title {
  font-family: var(--font-display);
  font-size: var(--fs-section-title);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

/* === BADGE === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-accent-soft);
  border: 1px solid var(--color-border-accent);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: var(--ls-extra);
  color: var(--color-accent-primary);
  margin-bottom: var(--space-lg);
}

/* === BUTTONS — Greaness pill style === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--gradient-accent);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-button);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  width: auto;
  text-align: center;
  animation: pulseGlow 2s ease-in-out infinite;
}
.btn:hover {
  box-shadow: var(--shadow-button-hover);
  transform: translateY(-2px);
  filter: brightness(1.08);
}
.btn--sm {
  padding: 10px 24px;
  font-size: var(--fs-body-sm);
  width: auto;
  animation: none;
  border-radius: var(--radius-full);
}
.btn--secondary {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--color-text-primary);
  animation: none;
}
.btn--secondary:hover {
  border-color: var(--color-accent-primary);
  color: var(--color-accent-primary);
  background: var(--color-accent-soft);
}
.btn--icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  padding: 0;
  font-size: 1.5rem;
  animation: none;
}

/* === PLACEHOLDER === */
.placeholder {
  background: linear-gradient(135deg, #1a1a1a, #111);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-card);
}

/* === REVEAL ANIMATION === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger.visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(6) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(7) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(8) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }

/* === CHECK ICON === */
.check {
  color: var(--color-accent-primary);
  font-weight: bold;
  flex-shrink: 0;
}

/* ============================================
   BACKGROUND TEXTURE GLOBAL
   ============================================ */
body {
  background-color: var(--color-bg-primary);
  position: relative;
}
/* Diagonal fine lines — gym/tech feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      -55deg,
      transparent 0px,
      transparent 38px,
      rgba(232, 0, 13, 0.028) 38px,
      rgba(232, 0, 13, 0.028) 39px
    ),
    repeating-linear-gradient(
      35deg,
      transparent 0px,
      transparent 80px,
      rgba(255, 255, 255, 0.012) 80px,
      rgba(255, 255, 255, 0.012) 81px
    );
}

/* ============================================
   SEÇÃO 0 — HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: 72px;
  display: flex;
  align-items: stretch;
  transition: background 0.4s ease, border-color 0.4s ease;
}
.header.scrolled {
  background: rgba(8, 8, 8, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}

/* Left group: logo quadrada + nav */
.header__left {
  display: flex;
  align-items: stretch;
  gap: 0;
}

/* Logo — retângulo vermelho com logo horizontal */
.header__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  background: var(--color-accent-primary);
  border-radius: 0;
  padding: 0 20px;
  height: 72px;
  min-width: 72px;
  box-shadow: 4px 0 20px rgba(232, 0, 13, 0.5);
  transition: box-shadow 0.2s ease, background 0.2s ease;
  position: relative;
  z-index: 2;
  align-self: stretch;
  margin: 0;
}
.header__logo:hover {
  background: var(--color-accent-hover);
  box-shadow: 4px 0 28px rgba(232, 0, 13, 0.7);
}
.header__logo-img {
  height: 24px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
/* Desktop: mostra logo horizontal, esconde mark */
.header__logo-img--desktop { display: block; }
.header__logo-img--mobile  { display: none; }

/* Nav — ao lado da logo, alinhado à esquerda */
.header__nav {
  display: none;
  gap: 32px;
  padding-left: 32px;
  position: static;
  transform: none;
}
.header__nav a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.01em;
  text-transform: none;
  transition: color 0.2s ease;
  white-space: nowrap;
  position: relative;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-primary);
  transition: width 0.25s ease;
}
.header__nav a:hover {
  color: #fff;
}
.header__nav a:hover::after {
  width: 100%;
}

/* Header CTA */
.header .btn--sm {
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 22px;
  animation: none;
  flex-shrink: 0;
  align-self: center;
  width: auto;
}

/* nav precisa de align-self center também */
.header__nav {
  align-self: center;
}

/* ============================================
   SEÇÃO 1 — HERO
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: var(--color-bg-primary);
}

/* === MOBILE: imagem acima, texto abaixo === */
.hero__bg {
  position: relative;
  width: 100%;
  height: 60vw;
  max-height: 420px;
  min-height: 260px;
  z-index: 0;
  flex-shrink: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Overlay mobile: fade para baixo */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,10,10,0.1) 0%,
    rgba(10,10,10,0.7) 80%,
    rgba(10,10,10,1.0) 100%
  );
}

/* Mobile: stack vertical */
.hero {
  flex-direction: column;
  align-items: stretch;
  min-height: auto;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-3xl);
}
.hero__content {
  max-width: 560px;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
}
/* Greaness-style color fade */
.hero__title-line { display: inline; }
.hero__title-line--bright { color: #ffffff; }
.hero__title-line--mid   { color: rgba(255,255,255,0.75); }
.hero__title-line--dim   { color: rgba(255,255,255,0.45); }
.hero__title-accent {
  color: var(--color-accent-primary);
  font-style: normal;
}
.hero__subtitle {
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 440px;
  line-height: var(--lh-normal);
}
.hero__cta {
  margin-bottom: var(--space-xl);
}

/* Floating badges — posicionados na direita sobre o bg */
.hero__badges {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  pointer-events: none;
  display: none; /* visível apenas em desktop via responsive */
}
.hero__float-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(14, 14, 14, 0.85);
  border: 1px solid var(--color-border-accent);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-size: var(--fs-caption);
  color: var(--color-text-primary);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.hero__float-badge--top {
  margin-bottom: var(--space-md);
}
.hero__float-icon {
  font-size: 1.25rem;
}

/* ============================================
   SOCIAL PROOF BAR (separated strip)
   ============================================ */
.social-proof-bar {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}
.social-proof-bar__inner {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.social-proof__item {
  text-align: left;
}
.social-proof__number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-text-primary);
  line-height: 1;
}
.social-proof__label {
  font-size: var(--fs-body-sm);
  color: var(--color-accent-primary);
  margin-top: 4px;
  font-weight: 500;
}
.social-proof__divider {
  width: 1px;
  height: 44px;
  background: var(--color-border-card);
  flex-shrink: 0;
}
/* Accent line decoration */
.social-proof-bar__deco {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35%;
  max-width: 320px;
  height: 80px;
  pointer-events: none;
}
.social-proof-bar__deco svg {
  width: 100%;
  height: 100%;
}

/* ============================================
   SEÇÃO 2 — VSL
   ============================================ */
.vsl__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.vsl__text {
  color: var(--color-text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: var(--lh-normal);
}
.vsl__video {
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
  aspect-ratio: 16/9;
  background: var(--color-bg-tertiary);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  box-shadow: var(--shadow-card);
  color: var(--color-text-muted);
  font-size: var(--fs-body-sm);
}
.vsl__play {
  font-size: 4rem;
  color: var(--color-text-muted);
  line-height: 1;
}
.vsl__cta {
  text-align: center;
}

/* ============================================
   SEÇÃO 3 — FEATURES (Photo cards)
   ============================================ */
.features__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

/* Photo-style cards (like reference) */
.features__photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}
.photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--color-border-card);
  transition: all 0.3s ease;
}
.photo-card:hover {
  border-color: var(--color-accent-primary);
  box-shadow: 0 0 30px rgba(230, 57, 70, 0.2);
}
.photo-card__image {
  aspect-ratio: 4/3;
  border-radius: 0;
  border: none;
  overflow: hidden;
}
.photo-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.photo-card:hover .photo-card__image img {
  transform: scale(1.06);
}
.photo-card__overlay {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 36px;
  height: 36px;
  background: var(--color-accent-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-card__check {
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
}
.photo-card__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

/* ============================================
   SEÇÃO 3B — BENEFITS (Checklist style)
   ============================================ */
.benefits__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
  text-align: center;
}
.benefits__image {
  aspect-ratio: 16/9;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid var(--color-border-accent);
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.benefits__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.benefits__checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}
.benefits__checklist-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
}
.benefits__cta {
  width: auto;
  align-self: flex-start;
  animation: none;
}

.benefit-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-subtle);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
}
.benefit-item:last-child {
  border-bottom: none;
}
.benefit-item__check {
  width: 28px;
  height: 28px;
  background: var(--color-accent-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.875rem;
}
.benefit-item strong {
  color: var(--color-text-primary);
}

/* ============================================
   SEÇÃO 3.5 — MARQUEE
   ============================================ */
.marquee {
  width: 100%;
  overflow: hidden;
  background: var(--color-bg-tertiary);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}
.marquee__track {
  display: flex;
  align-items: center;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee__track:hover {
  animation-play-state: paused;
}
.marquee__item {
  font-family: var(--font-display);
  font-size: var(--fs-subtitle);
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
  padding: 0 var(--space-sm);
}
.marquee__separator {
  color: var(--color-accent-primary);
  opacity: 0.5;
  padding: 0 var(--space-sm);
  font-size: var(--fs-subtitle);
}

/* ============================================
   SEÇÃO 4 — EXPERT (BR Gym style)
   ============================================ */
.expert__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}
.expert__photo-wrap {
  position: relative;
}
.expert__photo {
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 400px;
  margin: 0 auto;
  border: 2px solid var(--color-accent-primary);
  box-shadow: 0 0 40px rgba(230, 57, 70, 0.15);
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.expert__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.expert__name {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
}
.expert__name em {
  font-style: italic;
  color: var(--color-accent-primary);
}
.expert__text p {
  margin-bottom: var(--space-lg);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
}

/* ============================================
   SEÇÃO 5 — VALOR / ANCORAGEM
   ============================================ */
.value {
  text-align: center;
}
.value__card {
  max-width: 700px;
  margin: var(--space-xl) auto var(--space-2xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: left;
}
.value__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-subtle);
}
.value__label {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-text-secondary);
}
.value__price {
  text-decoration: line-through;
  color: var(--color-text-muted);
}
.value__total {
  border-top: 2px solid var(--color-border-subtle);
  border-bottom: none;
  padding-top: var(--space-lg);
}
.value__total .value__label {
  font-weight: 700;
  color: var(--color-text-primary);
}
.value__highlight {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border-accent);
}
.value__evora-label {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}
.value__evora-price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-accent-primary);
}
.value__text {
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--lh-normal);
}

/* ============================================
   SEÇÃO 6 — PARA QUEM É
   ============================================ */
.for-who .section__title {
  text-align: center;
}
.for-who__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.for-who__card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}
.for-who__card--yes {
  border: 1px solid var(--color-accent-primary);
}
.for-who__card--no {
  border: 1px solid var(--color-border-card);
}
.for-who__card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-primary);
}
.for-who__item {
  display: flex;
  gap: 12px;
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
  align-items: flex-start;
}
.for-who__icon--yes { color: var(--color-accent-primary); flex-shrink: 0; }
.for-who__icon--no { color: var(--color-text-muted); flex-shrink: 0; }

/* ============================================
   SEÇÃO 7 — GARANTIA
   ============================================ */
.guarantee__inner {
  max-width: 700px;
  margin: 0 auto;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-accent);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
}
.guarantee__icon {
  margin-bottom: var(--space-xl);
}
.guarantee__icon svg {
  width: 80px;
  height: 80px;
  color: var(--color-accent-primary);
  filter: drop-shadow(0 0 20px rgba(230, 57, 70, 0.3));
}
.guarantee__text {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-normal);
}
.guarantee__reinforce {
  color: var(--color-text-secondary);
  font-weight: 500;
  margin-bottom: var(--space-xl);
  line-height: var(--lh-normal);
}

/* ============================================
   SEÇÃO 8 — PLANOS E PREÇOS
   ============================================ */
.pricing__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.pricing__sub {
  color: var(--color-text-secondary);
  font-size: var(--fs-subtitle);
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  position: relative;
  text-align: center;
}
.pricing-card--featured {
  border: 2px solid var(--color-accent-primary);
  box-shadow: var(--shadow-glow);
}
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: white;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: var(--fs-caption);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  white-space: nowrap;
}
.pricing-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
  margin-top: var(--space-sm);
}
.pricing-card__features {
  text-align: left;
  margin-bottom: var(--space-xl);
}
.pricing-card__features li {
  display: flex;
  gap: 8px;
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
  align-items: flex-start;
}
.pricing-card__old-price {
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-size: var(--fs-body-sm);
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--color-accent-primary);
  line-height: var(--lh-tight);
  margin: var(--space-sm) 0;
}
.pricing-card__installment {
  font-family: var(--font-heading);
  font-size: var(--fs-subtitle);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}
.pricing-card__daily {
  color: var(--color-accent-primary);
  font-weight: 700;
  font-size: var(--fs-subtitle);
  margin-bottom: var(--space-xs);
}
.pricing-card__note {
  font-style: italic;
  color: var(--color-text-muted);
  font-size: var(--fs-body-sm);
  margin-bottom: var(--space-xl);
}
.pricing-card .btn {
  margin-top: var(--space-md);
}

/* ============================================
   SEÇÃO 8.5 — DEPOIMENTOS (New)
   ============================================ */
.testimonials > .container {
  text-align: center;
}
.testimonials .badge {
  display: inline-flex;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  text-align: left;
}
.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  border-color: var(--color-border-accent);
}
.testimonial-card__quote {
  margin-bottom: var(--space-md);
}
.testimonial-card__quote svg {
  width: 40px;
  height: 40px;
}
.testimonial-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}
.testimonial-card__text {
  color: var(--color-text-secondary);
  font-size: var(--fs-body-sm);
  line-height: var(--lh-normal);
}

/* ============================================
   SEÇÃO 9 — FAQ
   ============================================ */
.faq > .container {
  text-align: center;
}
.faq .badge {
  display: inline-flex;
}
.faq .section__title {
  text-align: center;
}
.faq__list {
  max-width: 800px;
  margin: var(--space-xl) auto var(--space-2xl);
  text-align: left;
}
.faq-item {
  border-bottom: 1px solid var(--color-border-subtle);
}
.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-text-primary);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  gap: var(--space-md);
}
.faq-item__chevron {
  width: 20px;
  height: 20px;
  color: var(--color-accent-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-item__chevron {
  transform: rotate(180deg);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.faq-item.open .faq-item__answer {
  opacity: 1;
}
.faq-item__answer p {
  padding: 0 0 var(--space-lg);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
}

/* ============================================
   SEÇÃO 10 — CTA FINAL
   ============================================ */
.final-cta {
  text-align: center;
  background: linear-gradient(180deg, rgba(230, 57, 70, 0.08) 0%, var(--color-bg-primary) 100%);
  padding: var(--space-4xl) 0;
}
.final-cta__inner {
  max-width: 700px;
  margin: 0 auto;
}
.final-cta__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}
.final-cta__subtitle {
  color: var(--color-text-secondary);
  font-size: var(--fs-subtitle);
  margin-bottom: var(--space-2xl);
  line-height: var(--lh-normal);
}
.final-cta__trust {
  margin-top: var(--space-xl);
  font-size: var(--fs-body-sm);
  color: var(--color-text-muted);
}

/* ============================================
   SEÇÃO 11 — FOOTER (Reference multi-column style)
   ============================================ */
.footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border-subtle);
  padding: var(--space-3xl) 0 var(--space-xl);
}
.footer__top {
  text-align: center;
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-border-subtle);
}
.footer__logo {
  margin-bottom: var(--space-md);
}
.footer__logo-img {
  height: 30px;
  width: auto;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}
.footer__tagline {
  color: var(--color-text-muted);
  font-size: var(--fs-body-sm);
  margin-bottom: var(--space-md);
}
.footer__social a {
  color: var(--color-accent-primary);
  font-family: var(--font-heading);
  font-weight: 500;
  transition: color 0.3s;
}
.footer__social a:hover {
  color: var(--color-accent-hover);
}
.footer__bottom {
  margin-bottom: var(--space-2xl);
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}
.footer__col h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-body-sm);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}
.footer__col a {
  display: block;
  color: var(--color-text-muted);
  font-size: var(--fs-body-sm);
  margin-bottom: var(--space-sm);
  transition: color 0.3s;
}
.footer__col a:hover {
  color: var(--color-accent-primary);
}
.footer__copy-wrap {
  text-align: center;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border-subtle);
}
.footer__copy {
  color: var(--color-text-muted);
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}
.footer__disclaimer {
  color: var(--color-text-muted);
  font-size: var(--fs-caption);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ============================================
   HOTMART WIDGET — Override estilos verdes
   ============================================ */
a.hotmart-fb.hotmart__button-checkout,
a.hotmart-fb.hotmart__button-checkout:link,
a.hotmart-fb.hotmart__button-checkout:visited {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  color: #fff !important;
  background: var(--gradient-accent) !important;
  border-radius: var(--radius-full) !important;
  box-shadow: var(--shadow-button) !important;
  border: none !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}
a.hotmart-fb.hotmart__button-checkout:hover {
  box-shadow: var(--shadow-button-hover) !important;
  transform: translateY(-2px) !important;
  filter: brightness(1.08) !important;
  background: var(--gradient-accent) !important;
  color: #fff !important;
}
/* Secundário (trimestral) */
a.hotmart-fb.hotmart__button-checkout.btn--secondary {
  background: transparent !important;
  border: 1.5px solid rgba(255,255,255,0.2) !important;
  color: var(--color-text-primary) !important;
  box-shadow: none !important;
}
a.hotmart-fb.hotmart__button-checkout.btn--secondary:hover {
  border-color: var(--color-accent-primary) !important;
  color: var(--color-accent-primary) !important;
  background: var(--color-accent-soft) !important;
  transform: translateY(-2px) !important;
  filter: none !important;
}
