/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", sans-serif;
  background: #050505;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== VARS ===== */
:root {
  --gold: #c9a84c;
  --gold-light: #e6c96d;
  --gold-dark: #a07a2e;
  --bg: #050505;
  --bg-card: #0c0c0c;
  --bg-card2: #0f0f0f;
  --border: rgba(255,255,255,0.06);
  --text-muted: #737373;
  --text-secondary: #a3a3a3;
  --radius: 16px;
  --max-w: 1200px;
}

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

/* ===== TYPOGRAPHY ===== */
.gold-script { font-family: "Cormorant Garamond", Georgia, serif; font-style: italic; color: var(--gold); font-weight: 400; }
.section-title { font-family: "Outfit", sans-serif; font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 1rem; color: #fff; }
.section-desc { font-size: 1.05rem; color: var(--text-secondary); max-width: 580px; line-height: 1.7; font-weight: 400; }
.text-center { text-align: center; }
.text-center.section-desc { margin: 0 auto 2.5rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 100px; font-weight: 600;
  font-size: 0.925rem; cursor: pointer; transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent; white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #050505; border-color: transparent;
  box-shadow: 0 4px 15px rgba(201,168,76,0.15);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); filter: brightness(1.05); }
.btn-outline {
  background: rgba(255,255,255,0.03); color: #fff;
  border-color: rgba(255,255,255,0.15);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); border-color: rgba(255,255,255,0.25); }
.btn-large { padding: 18px 40px; font-size: 1.025rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(5,5,5,0.75); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border); transition: all 0.3s ease;
}
.header.scrolled { background: rgba(5,5,5,0.95); border-bottom-color: rgba(255,255,255,0.08); }
.header-inner { display: flex; align-items: center; gap: 40px; height: 80px; }
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-circle {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: "Cormorant Garamond", serif; font-size: 1.15rem; font-style: italic; font-weight: 500;
}
.logo-name { display: block; font-weight: 700; font-size: 1.05rem; letter-spacing: 0.01em; color: #fff; }
.logo-subtitle { display: block; font-size: 0.6rem; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; font-weight: 500; }
.nav { display: flex; gap: 36px; flex: 1; justify-content: center; }
.nav-link { font-size: 0.9rem; color: var(--text-secondary); transition: color 0.2s; font-weight: 500; }
.nav-link:hover { color: #fff; }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.mobile-nav {
  display: none; position: fixed; top: 80px; left: 0; right: 0;
  background: rgba(5,5,5,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; gap: 20px;
  padding: 32px; border-bottom: 1px solid var(--border); z-index: 99;
}
.mobile-nav.open { display: flex; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 80px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center center;
  background-repeat: no-repeat; filter: grayscale(10%) contrast(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.75) 50%, rgba(5,5,5,0.3) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; padding: 100px 0; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(201,168,76,0.3); border-radius: 100px;
  padding: 8px 18px; font-size: 0.725rem; letter-spacing: 0.15em;
  color: var(--gold); margin-bottom: 32px; font-weight: 600;
  background: rgba(201,168,76,0.03);
}
.badge-icon { font-size: 0.65rem; }
.hero-title {
  font-family: "Outfit", sans-serif; font-size: clamp(2.8rem, 6.5vw, 4.8rem); font-weight: 900;
  line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 24px; color: #fff;
}
.hero-title em { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 400; }
.hero-desc { font-size: 1.075rem; color: var(--text-secondary); max-width: 540px; line-height: 1.7; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; align-items: center; gap: 40px; }
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-number { font-size: 2.25rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase; font-weight: 600; }
.stat-divider { width: 1px; height: 44px; background: var(--border); }

/* ===== TICKER ===== */
.ticker-wrap { overflow: hidden; background: #080808; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 0; }
.ticker-track { display: flex; }
.ticker-content {
  display: flex; align-items: center; gap: 40px;
  white-space: nowrap; font-size: 0.85rem; letter-spacing: 0.08em; color: var(--text-secondary); font-weight: 500;
  animation: ticker 32s linear infinite;
}
.ticker-dot { color: var(--gold); font-size: 0.55rem; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
.section { padding: 120px 0; }
.section-dark { background: #030303; }
.section-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.725rem; letter-spacing: 0.18em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 24px; font-weight: 600;
}
.section-label-center {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  font-size: 0.725rem; letter-spacing: 0.18em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 24px; font-weight: 600;
}
.label-line { flex: 1; max-width: 44px; height: 1px; background: var(--gold); opacity: 0.5; }

/* ===== CARDS GRID ===== */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.gym-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5; cursor: pointer; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
  border: 1px solid var(--border);
}
.gym-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,0.3); }
.gym-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); filter: brightness(0.9); }
.gym-card:hover .gym-card-bg { transform: scale(1.05); filter: brightness(0.95); }
.gym-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.9) 100%); }
.gym-card-num { position: absolute; top: 24px; left: 24px; font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }
.gym-card-icon {
  position: absolute; top: 20px; right: 20px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.gym-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; }
.gym-card-title { font-size: 1.35rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.gym-card-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== STEPS ===== */
.steps-layout { display: grid; grid-template-columns: 240px 1fr; gap: 80px; margin-top: 64px; }
.steps-sidebar { position: sticky; top: 120px; height: fit-content; }
.progress-label { font-size: 0.725rem; letter-spacing: 0.18em; color: var(--text-muted); margin-bottom: 20px; font-weight: 600; }
.progress-line-wrap { position: relative; width: 2px; height: 220px; background: rgba(255,255,255,0.08); margin: 0 0 28px 0; border-radius: 2px; }
.progress-fill { position: absolute; top: 0; left: 0; right: 0; background: var(--gold); border-radius: 2px; transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1); height: 25%; }
.steps-nav { display: flex; flex-direction: column; gap: 24px; }
.step-nav-item { display: flex; align-items: center; gap: 14px; cursor: pointer; opacity: 0.35; transition: opacity 0.3s ease; }
.step-nav-item.active { opacity: 1; }
.step-nav-item:hover { opacity: 0.8; }
.step-nav-num { font-size: 0.8rem; font-weight: 700; color: var(--gold); width: 24px; }
.step-nav-text { font-size: 0.925rem; color: var(--text-secondary); font-weight: 500; }
.step-nav-item.active .step-nav-text { color: #fff; }
.steps-content { display: flex; flex-direction: column; gap: 28px; }
.step-card {
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover { border-color: rgba(201,168,76,0.25); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.step-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; }
.step-big-num { font-size: 3.5rem; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -0.04em; }

.step-badge-new {
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.step-badge-circle {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(201,168,76,0.1); border: 1.5px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.step-badge-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; color: var(--gold);
}
.step-title { font-size: 1.45rem; font-weight: 700; margin-bottom: 12px; color: #fff; }
.step-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }

/* ===== O QUE INCLUI ===== */
.inclui-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.inclui-left { position: sticky; top: 120px; }
.resumindo-card {
  margin-top: 36px; background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.15); border-radius: var(--radius);
  padding: 28px;
}
.resumindo-label { font-size: 0.725rem; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 12px; font-weight: 600; }
.resumindo-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }
.resumindo-card strong { color: #fff; }
.inclui-right { display: flex; flex-direction: column; gap: 12px; }
.inclui-item {
  display: flex; gap: 20px; padding: 28px;
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color 0.3s ease, background 0.3s ease;
  background: var(--bg-card);
}
.inclui-item:hover { border-color: rgba(201,168,76,0.2); background: rgba(255,255,255,0.01); }
.inclui-icon-circle {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center; color: #050505;
  margin-top: 2px;
}
.inclui-icon-circle.small {
  width: 20px; height: 20px;
}
.inclui-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; color: #fff; }
.inclui-desc { font-size: 0.925rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== INVESTIMENTO ===== */
.section-investimento { background: #030303; }
.investimento-container { max-width: 840px; }
.investimento-container .section-title { margin-bottom: 16px; }
.price-card {
  background: var(--bg-card2); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px; padding: 56px; margin-top: 56px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 40px rgba(201,168,76,0.03);
}
.price-card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; }
.price-edition-badge {
  display: inline-block; border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px; padding: 6px 16px; font-size: 0.675rem;
  letter-spacing: 0.15em; color: var(--gold); margin-bottom: 18px;
  font-weight: 600; background: rgba(201,168,76,0.03);
}
.price-title { font-size: 1.75rem; font-weight: 800; margin-bottom: 8px; color: #fff; }
.price-subtitle { font-size: 0.95rem; color: var(--text-secondary); max-width: 320px; }
.price-value-wrap { text-align: right; flex-shrink: 0; }
.price-label { font-size: 0.675rem; letter-spacing: 0.15em; color: var(--text-muted); margin-bottom: 8px; font-weight: 600; }
.price-value { display: flex; align-items: baseline; gap: 4px; justify-content: flex-end; }
.price-currency { font-size: 1.35rem; font-weight: 700; color: var(--text-secondary); }
.price-amount { font-size: 5rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1; color: #fff; }
.price-info { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }
.price-divider { height: 1px; background: var(--border); margin: 40px 0; }
.price-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 44px; }
.price-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: var(--text-secondary);
}
.price-feature .inclui-icon-circle { flex-shrink: 0; }
.price-actions { display: grid; grid-template-columns: 1.2fr 1fr; gap: 16px; margin-bottom: 24px; }
.btn-whatsapp-new {
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  color: #fff;
}
.btn-whatsapp-new:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.price-footer-text { text-align: center; font-size: 0.725rem; letter-spacing: 0.15em; color: var(--text-muted); font-weight: 600; }

/* ===== FAQ ===== */
.faq-container { max-width: 800px; }
.faq-list { margin-top: 56px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.3s ease, background-color 0.3s ease; background: rgba(255,255,255,0.01); }
.faq-item.open { border-color: rgba(201,168,76,0.25); background: rgba(255,255,255,0.02); }
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px; background: none; border: none; color: #fff;
  font-size: 1.05rem; font-weight: 600; font-family: inherit; cursor: pointer;
  text-align: left; transition: background 0.2s ease; gap: 16px;
}
.faq-btn:hover { background: rgba(255,255,255,0.015); }
.faq-chevron { flex-shrink: 0; transition: transform 0.3s ease; color: var(--text-muted); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--gold); }
.faq-answer { padding: 0 28px 24px; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }

/* ===== FOOTER ===== */
.footer { background: #020202; border-top: 1px solid var(--border); padding-top: 80px; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 100px; padding-bottom: 64px; }
.footer-brand { max-width: 380px; }
.footer-brand .logo { margin-bottom: 24px; }
.footer-desc { font-size: 0.925rem; color: var(--text-muted); line-height: 1.7; }
.footer-nav { display: flex; gap: 80px; }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col-title { font-size: 0.675rem; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; margin-bottom: 6px; font-weight: 700; }
.footer-link { font-size: 0.925rem; color: var(--text-muted); transition: color 0.2s ease; font-weight: 500; }
.footer-link:hover { color: #fff; }
.footer-link-icon { display: flex; align-items: center; gap: 8px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 28px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.footer-edition { letter-spacing: 0.12em; font-size: 0.725rem; font-weight: 600; color: var(--gold); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-in { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-layout { grid-template-columns: 1fr; gap: 40px; }
  .steps-sidebar { position: static; display: flex; flex-direction: row; align-items: flex-start; gap: 32px; }
  .progress-line-wrap { display: none; }
  .steps-nav { flex-direction: row; flex-wrap: wrap; }
  .inclui-layout { grid-template-columns: 1fr; gap: 48px; }
  .inclui-left { position: static; }
  .price-card-header { flex-direction: column; }
  .price-value-wrap { text-align: left; }
  .price-value { justify-content: flex-start; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .header-inner .btn-gold { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .gym-card { aspect-ratio: 4/3; }
  .price-features { grid-template-columns: 1fr; }
  .price-actions { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { gap: 40px; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .price-card { padding: 36px; }
}
