/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 10 2026 | 17:54:53 */
/* ═══════════════════════════════════════════════════════════
   CP PAGES — ASSINATURA (Página de Assinatura Criminal Player)
   Página de assinatura com hero split, dores/respostas,
   planos com toggle período, comparativo expandível,
   contexto jurídico, eventos, social proof com expert deck,
   segurança, FAQ e CTA final.
   Suporte a perfis: visitante, assinante (upgrade), estratégia (max),
   pendente (alerta de pagamento).
   ═══════════════════════════════════════════════════════════ */


/* ───── Scroll Animations ───── */
.as-reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.as-reveal.visible { opacity: 1; transform: translateY(0); }
.as-reveal-d1 { transition-delay: .12s; }
.as-reveal-d2 { transition-delay: .24s; }


/* ───── Design Tokens ───── */
:root {
  --as-gold: #FBBB21;
  --as-gold-dark: #d89818;
  --as-navy: #0c1425;
  --as-navy2: #111b2e;
  --as-white: #fff;
  --as-cream: #f8f7f4;
  --as-text: #1A1A1A;
  --as-text-sec: #555;
  --as-text-muted: #999;
  --as-border: #eee;
  --as-radius: 14px;
  --as-max: 1120px;
  --as-blue: #56769D;
  --as-salmon: #E57159;
  --as-green: #4A996A;
}


/* ───── Visibility — profile-based ───── */
.as-visitor-only { display: block; }
.as-subscriber-only { display: none; }
.as-upgrade-only { display: none; }

body.profile-formacao .as-visitor-only,
body.profile-performance .as-visitor-only,
body.profile-estrategia .as-visitor-only { display: none !important; }

body.profile-formacao .as-subscriber-only,
body.profile-performance .as-subscriber-only,
body.profile-estrategia .as-subscriber-only { display: block; }

body.profile-formacao .as-upgrade-only,
body.profile-performance .as-upgrade-only { display: block; }

/* Estratégia max — only for top plan */
.as-estrategia-max { display: none; }
body.profile-estrategia .as-estrategia-max { display: block; }
body.profile-estrategia .as-upgrade-only { display: none !important; }

/* Plan card states — current plan badge & upgrade CTA */
.as-plan-badge-current {
  display: none; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%);
  font-size: 9px; font-weight: 800 !important; text-transform: uppercase; letter-spacing: .08em;
  background: var(--as-navy); color: #fff; padding: 4px 12px; border-radius: 4px;
  white-space: nowrap;
}
.as-plan-card.is-current .as-plan-badge-current { display: inline-block; }
.as-plan-card.is-current { border-color: #666 !important; border-width: 2px; }
.as-plan-card.is-lower { opacity: .5; pointer-events: none; }
.as-plan-card.is-lower .as-plan-cta { display: none; }

/* Flex overrides for subscriber sections that need flex */
.as-show-subscriber { display: none; }
body.profile-formacao .as-show-subscriber,
body.profile-performance .as-show-subscriber,
body.profile-estrategia .as-show-subscriber { display: flex; }


/* ───── Section / Inner ───── */
.as-section {
  padding: 96px 32px;
  width: 100vw; margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
  scroll-margin-top: 80px;
}
.as-inner {
  max-width: var(--as-max); margin: 0 auto !important;
  position: relative; z-index: 1;
}
.as-section-label {
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--as-gold-dark); font-weight: 700 !important; margin-bottom: 14px !important;
  display: block; text-align: center;
}


/* ───── Buttons (shared) ───── */
.as-btn-gold,
a.as-btn-gold,
a.as-btn-gold:visited {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--as-gold), var(--as-gold-dark));
  color: #1A1A1A !important;
  font-size: 15px; font-weight: 700 !important; padding: 16px 40px; border-radius: 8px;
  border: none; cursor: pointer; transition: all .3s;
  box-shadow: 0 4px 24px rgba(251,187,33,.2);
  text-decoration: none !important;
}
.as-btn-gold:hover {
  transform: translateY(-3px); box-shadow: 0 8px 36px rgba(251,187,33,.35);
}

.as-btn-outline,
a.as-btn-outline,
a.as-btn-outline:visited {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,.5) !important;
  font-size: 15px; font-weight: 600 !important; padding: 15px 32px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12); text-decoration: none !important;
  cursor: pointer; transition: all .3s;
}
.as-btn-outline:hover { border-color: rgba(255,255,255,.3); color: #fff !important; }


/* ═══════════════════════════════════════════════════════════
   HERO — Split layout, dark navy
   ═══════════════════════════════════════════════════════════ */
.as-hero {
  background: var(--as-navy); color: #fff;
  padding: 56px 32px; position: relative; overflow: hidden;
  min-height: auto; display: flex; align-items: center;
  width: 100vw; margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
  scroll-margin-top: 80px;
}
.as-hero::before {
  content: ''; position: absolute; top: -30%; right: -10%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(251,187,33,.05) 0%, transparent 50%);
  pointer-events: none;
}
.as-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251,187,33,.15), transparent);
}
.as-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 80px 80px; pointer-events: none;
}
.as-hero-inner {
  max-width: var(--as-max); margin: 0 auto !important; width: 100%; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: center;
}
.as-hero-label {
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--as-gold); font-weight: 700 !important; margin-bottom: 20px !important;
  display: block; opacity: .7;
}
.as-hero h1 {
  font-size: 44px; font-weight: 800 !important; letter-spacing: -2px;
  line-height: 1.12 !important; margin-bottom: 20px !important;
}
.as-hero-sub {
  font-size: 16px; color: rgba(255,255,255,.5);
  line-height: 1.7 !important; margin-bottom: 32px !important;
}
.as-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.as-hero-trust {
  font-size: 12px; color: rgba(255,255,255,.3);
  display: flex; align-items: center; gap: 8px;
}
.as-hero-trust i { color: var(--as-gold); font-size: 10px; }


/* ───── Hero Preview Card ───── */
.as-hero-preview {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: 32px 24px; position: relative;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.as-hero-preview::before {
  content: ''; position: absolute; top: -1px; left: 30px; right: 30px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--as-gold), transparent);
}
.as-hero-preview h4 {
  font-size: 11px; text-transform: uppercase; letter-spacing: .15em;
  color: var(--as-gold); margin-bottom: 24px !important; font-weight: 700 !important;
  opacity: .7; text-align: center;
  line-height: 1.2 !important;
}
.as-preview-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.as-preview-item:last-child { border-bottom: none; }
.as-preview-icon {
  width: 40px; height: 40px; min-width: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.as-preview-icon-blue { background: rgba(86,118,157,.15); color: var(--as-blue); border: 1px solid rgba(86,118,157,.2); }
.as-preview-icon-salmon { background: rgba(229,113,89,.1); color: var(--as-salmon); border: 1px solid rgba(229,113,89,.15); }
.as-preview-icon-gold { background: rgba(251,187,33,.1); color: var(--as-gold); border: 1px solid rgba(251,187,33,.15); }
.as-preview-icon-green { background: rgba(74,153,106,.12); color: var(--as-green); border: 1px solid rgba(74,153,106,.15); }
.as-preview-text { display: flex; flex-direction: column; }
.as-preview-name { font-size: 14px; font-weight: 700 !important; color: #fff; }
.as-preview-desc { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 2px !important; line-height: 1.35 !important; }


/* ═══════════════════════════════════════════════════════════
   PAIN — Light cream
   ═══════════════════════════════════════════════════════════ */
.as-pain { background: var(--as-cream); }
.as-pain h2 {
  font-size: 32px; font-weight: 800 !important; letter-spacing: -1px;
  margin-bottom: 12px !important; text-align: center;
  line-height: 1.1 !important;
}
.as-pain-sub {
  font-size: 15px; color: var(--as-text-sec); text-align: center;
  margin-bottom: 48px !important; max-width: 700px;
  margin-left: auto !important; margin-right: auto !important; line-height: 1.6 !important;
}
.as-pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 960px; margin: 0 auto !important;
}
.as-pain-card {
  background: #fff; border: 1px solid var(--as-border); border-left: 3px solid var(--as-gold);
  border-radius: 10px; padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04); transition: all .3s;
}
.as-pain-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.as-pain-card h4 {
  font-size: 15px; font-weight: 700 !important; margin-bottom: 8px !important;
  color: var(--as-text); line-height: 1.2 !important; margin-top: 0 !important;
}
.as-pain-card p {
  font-size: 13px; color: var(--as-text-sec);
  line-height: 1.6 !important; margin-bottom: 0 !important; margin-top: 0 !important;
}


/* ═══════════════════════════════════════════════════════════
   ANSWER — White, cards with colored top-border
   ═══════════════════════════════════════════════════════════ */
.as-answer { background: #fff; }
.as-answer h2 {
  font-size: 32px; font-weight: 800 !important; letter-spacing: -1px;
  margin-bottom: 12px !important; text-align: center;
  line-height: 1.1 !important;
}
.as-answer-sub {
  font-size: 15px; color: var(--as-text-sec); text-align: center;
  margin-bottom: 48px !important; max-width: 700px;
  margin-left: auto !important; margin-right: auto !important; line-height: 1.6 !important;
}
.as-answer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1000px; margin: 0 auto !important;
}
.as-answer-card {
  background: var(--as-cream); border: 1px solid var(--as-border);
  border-radius: var(--as-radius); padding: 36px 24px;
  transition: all .35s; position: relative; overflow: hidden;
  text-align: center;
}
.as-answer-card::before {
  content: ''; position: absolute; top: -1px; left: 30px; right: 30px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--as-blue), transparent);
}
.as-answer-card:nth-child(2)::before { background: linear-gradient(90deg, transparent, var(--as-salmon), transparent); }
.as-answer-card:nth-child(3)::before { background: linear-gradient(90deg, transparent, var(--as-green), transparent); }
.as-answer-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.06); }

.as-answer-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px !important; font-size: 18px;
}
.as-answer-icon-blue { background: rgba(86,118,157,.1); color: var(--as-blue); border: 1px solid rgba(86,118,157,.15); }
.as-answer-icon-salmon { background: rgba(229,113,89,.08); color: var(--as-salmon); border: 1px solid rgba(229,113,89,.15); }
.as-answer-icon-green { background: rgba(74,153,106,.08); color: var(--as-green); border: 1px solid rgba(74,153,106,.15); }

.as-answer-card h4 {
  font-size: 16px; font-weight: 700 !important; color: var(--as-text);
  margin-bottom: 8px !important; line-height: 1.2 !important; margin-top: 0 !important;
}
.as-answer-card p {
  font-size: 13px; color: var(--as-text-sec);
  line-height: 1.5 !important; margin-bottom: 14px !important; margin-top: 0 !important;
}
.as-answer-card ul { list-style: none; text-align: left; display: inline-block; }
.as-answer-card ul li {
  font-size: 12px; color: var(--as-text-muted); padding: 4px 0 !important;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 0 !important;
}
.as-answer-card:nth-child(1) ul li i { color: var(--as-blue); font-size: 10px; }
.as-answer-card:nth-child(2) ul li i { color: var(--as-salmon); font-size: 10px; }
.as-answer-card:nth-child(3) ul li i { color: var(--as-green); font-size: 10px; }


/* ═══════════════════════════════════════════════════════════
   MINHA ASSINATURA (subscriber-only)
   ═══════════════════════════════════════════════════════════ */
.as-mysub { background: var(--as-cream); padding-bottom: 48px !important; }
.as-mysub h2 {
  font-size: 32px; font-weight: 800 !important; letter-spacing: -1px;
  margin-bottom: 12px !important; text-align: center;
  line-height: 1.1 !important;
}
.as-mysub-sub {
  font-size: 15px; color: var(--as-text-sec); text-align: center;
  margin-bottom: 36px !important; line-height: 1.6 !important;
  margin-left: auto !important; margin-right: auto !important; max-width: 600px;
}
.as-mysub-card {
  max-width: 1020px; margin: 0 auto !important; background: #fff;
  border-radius: var(--as-radius); border: 1px solid var(--as-border);
  overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,.04);
  display: flex; flex-direction: column;
}
.as-mysub-header {
  background: var(--as-navy); color: #fff; padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.as-mysub-header-label {
  font-size: 10px; font-weight: 700 !important; text-transform: uppercase; letter-spacing: .1em;
  color: var(--as-gold); display: block;
}
.as-mysub-header-plan {
  font-size: 18px; font-weight: 800 !important; letter-spacing: -0.5px;
  line-height: 1.25 !important;
}
.as-mysub-status {
  font-size: 12px; font-weight: 700 !important; text-transform: uppercase; letter-spacing: .08em;
  padding: 7px 16px; border-radius: 20px; align-self: flex-start;
}
.as-mysub-status-active { background: rgba(46,204,113,.2); color: #5eff9e; border: 1px solid rgba(46,204,113,.4); }
.as-mysub-status-delayed { background: rgba(243,156,18,.2); color: #ffc44d; border: 1px solid rgba(243,156,18,.4); }
.as-mysub-status-cancelled-active { background: rgba(230,126,34,.2); color: #ffab5e; border: 1px solid rgba(230,126,34,.4); }
.as-mysub-status-pending { background: rgba(231,76,60,.2); color: #ff6b6b; border: 1px solid rgba(231,76,60,.4); }
.as-mysub-status-cancelled { background: rgba(189,195,199,.15); color: #c0c8cf; border: 1px solid rgba(189,195,199,.3); }
.as-mysub-status-guest { background: rgba(52,152,219,.2); color: #6bc5ff; border: 1px solid rgba(52,152,219,.4); }

/* Pending alert block */
.as-mysub-alert {
  display: none; padding: 20px 28px; margin: 0 !important;
  background: rgba(192,57,43,.06); border-bottom: 1px solid rgba(192,57,43,.1);
}
.as-mysub-alert-inner {
  display: flex; align-items: center; gap: 14px;
}
.as-mysub-alert-icon {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: rgba(192,57,43,.1); color: #e74c3c;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.as-mysub-alert-text { flex: 1; }
.as-mysub-alert-title {
  font-size: 14px; font-weight: 700 !important; color: #c0392b;
  margin-bottom: 2px !important; line-height: 1.2 !important; margin-top: 0 !important;
}
.as-mysub-alert-desc {
  font-size: 13px; color: var(--as-text-sec);
  line-height: 1.5 !important; margin-bottom: 0 !important; margin-top: 0 !important;
}
.as-mysub-alert-cta,
a.as-mysub-alert-cta,
a.as-mysub-alert-cta:visited {
  display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
  font-size: 13px; font-weight: 700 !important; color: #fff !important;
  background: #c0392b;
  padding: 10px 24px; border-radius: 8px; text-decoration: none !important;
  transition: background .2s;
  animation: as-pulse 2s ease-in-out infinite;
}
.as-mysub-alert-cta:hover { background: #a93226; animation: none; }
@keyframes as-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,43,.4); }
  50% { box-shadow: 0 0 0 8px rgba(192,57,43,0); }
}

/* Pendente profile visibility */
body.profile-pendente .as-visitor-only { display: none !important; }
body.profile-pendente .as-subscriber-only { display: block; }
body.profile-pendente .as-show-subscriber { display: flex; }
body.profile-pendente .as-upgrade-only { display: none !important; }
.as-pendente-only { display: none; }
body.profile-pendente .as-pendente-only { display: block; }
body.profile-pendente .as-mysub-alert { display: block; }

/* .as-mysub-right removed — card is now column layout */
.as-mysub-body {
  padding: 8px 0; flex: 1;
  display: flex; flex-direction: column; justify-content: center;
}
.as-mysub-row {
  display: flex; align-items: center; padding: 12px 28px; font-size: 13px;
  border-bottom: 1px solid rgba(0,0,0,.04); gap: 12px;
}
.as-mysub-row-icon {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--as-cream); color: var(--as-text-muted); font-size: 13px;
}
.as-mysub-row-content { flex: 1; }
.as-mysub-row-label {
  font-size: 11px; color: var(--as-text-muted); font-weight: 600 !important;
  display: block; margin-bottom: 2px !important; line-height: 1.3 !important;
}
.as-mysub-row-value { font-size: 13px; color: var(--as-text); font-weight: 500 !important; }
.as-mysub-row-pair {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.as-mysub-row-pair .as-mysub-row { border-bottom: none; }
.as-mysub-row-warn { display: none; }
.as-mysub-row-warn .as-mysub-row-label { color: #c0392b; }
.as-mysub-row-warn .as-mysub-row-value { color: #c0392b; }
.as-mysub-actions {
  padding: 16px 28px; border-top: 1px solid var(--as-border);
  display: flex; gap: 10px; justify-content: flex-end;
}
.as-mysub-link,
a.as-mysub-link,
a.as-mysub-link:visited {
  font-size: 12px; font-weight: 600 !important; color: var(--as-text-sec) !important;
  text-decoration: none !important; transition: all .2s;
  display: inline-flex !important; align-items: center !important; gap: 6px;
  padding: 8px 16px !important; border-radius: 8px;
  background: var(--as-cream); border: 1px solid var(--as-border);
}
.as-mysub-link i {
  font-size: 12px !important; width: 12px; text-align: center;
  line-height: 20px !important; vertical-align: middle !important; flex-shrink: 0;
}
.as-mysub-link:hover { color: var(--as-text) !important; background: #eee; }
.as-mysub-link-primary,
a.as-mysub-link-primary,
a.as-mysub-link-primary:visited {
  color: #1A1A1A !important;
  background: linear-gradient(135deg, var(--as-gold), var(--as-gold-dark)) !important;
  border-color: var(--as-gold-dark) !important;
}
.as-mysub-link-primary:hover { opacity: .85; }


/* ═══════════════════════════════════════════════════════════
   PLANS — Light cream, toggle + cards
   ═══════════════════════════════════════════════════════════ */
.as-plans { background: var(--as-cream); }
.as-plans h2 {
  font-size: 32px; font-weight: 800 !important; letter-spacing: -1px;
  margin-bottom: 12px !important; text-align: center;
  line-height: 1.1 !important;
}
.as-plans-sub {
  font-size: 15px; color: var(--as-text-sec); text-align: center;
  margin-bottom: 36px !important; line-height: 1.6 !important;
}

.as-toggle {
  display: flex; justify-content: center; gap: 8px; margin-bottom: 40px !important;
  max-width: 620px; margin-left: auto !important; margin-right: auto !important;
}
.as-toggle-btn {
  flex: 1; padding: 16px 12px; border: 2px solid var(--as-border); background: #fff;
  color: var(--as-text-sec); font-size: 13px; font-weight: 600 !important;
  border-radius: 12px; cursor: pointer; transition: all .3s;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  position: relative;
}
.as-toggle-btn:hover { border-color: var(--as-gold); color: var(--as-text); background: #FFFDF5; }
.as-toggle-btn:hover .as-toggle-btn-label { color: var(--as-text); }
.as-toggle-btn:hover .as-toggle-btn-sub { color: var(--as-gold-dark); }
.as-toggle-btn.active {
  background: #fff; color: var(--as-text);
  border-color: var(--as-gold);
  box-shadow: 0 4px 20px rgba(251,187,33,.12);
}
.as-toggle-btn-label { font-size: 15px; font-weight: 700 !important; }
.as-toggle-btn.active .as-toggle-btn-label { color: var(--as-text); }
.as-toggle-btn-sub { font-size: 11px; color: var(--as-text-muted); }
.as-toggle-btn.active .as-toggle-btn-sub { color: var(--as-gold-dark); }
.as-toggle-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  font-size: 9px; font-weight: 800 !important; text-transform: uppercase; letter-spacing: .08em;
  background: var(--as-gold); color: #1A1A1A; padding: 3px 10px; border-radius: 10px;
  white-space: nowrap;
}
/* "Seu período" badge — navy rectangle at bottom */
.as-toggle-btn-current {
  display: none; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  font-size: 9px; font-weight: 800 !important; text-transform: uppercase; letter-spacing: .08em;
  background: var(--as-navy); color: #fff; padding: 3px 10px; border-radius: 4px;
  white-space: nowrap;
}
.as-toggle-btn.is-current-period .as-toggle-btn-current { display: block; }
.as-toggle-btn.is-current-period { border-color: #666; }
.as-mini-toggle-btn.is-current-period {
  border-color: #666; font-weight: 800 !important;
}

/* Mini period toggle — mobile only */
.as-mini-toggle {
  display: none; justify-content: center; gap: 4px; margin-bottom: 20px !important;
}
.as-mini-toggle-btn {
  font-size: 11px; font-weight: 600 !important; color: var(--as-text-muted);
  background: var(--as-cream); border: 1px solid var(--as-border);
  padding: 5px 12px; border-radius: 6px; cursor: pointer; transition: all .2s;
}
.as-mini-toggle-btn:hover {
  border-color: var(--as-gold); color: var(--as-text); background: #FFFDF5;
}
.as-mini-toggle-btn.active {
  background: #fff; color: var(--as-text); border-color: var(--as-gold);
}

.as-plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1020px; margin: 0 auto !important;
}
.as-plan-card {
  background: #fff; border: 1px solid var(--as-border);
  border-radius: var(--as-radius); padding: 36px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
  transition: all .4s; position: relative; display: flex; flex-direction: column;
}
.as-plan-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.08); border-color: var(--as-gold); }
.as-plan-card-hl { border-width: 2px; }
.as-plan-card-premium { border-width: 2px; }
.as-plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: 9px; font-weight: 800 !important; text-transform: uppercase; letter-spacing: .12em;
  padding: 5px 16px; border-radius: 20px; white-space: nowrap;
}
.as-plan-badge-pop { background: var(--as-gold); color: #1A1A1A; }
.as-plan-badge-dark { background: var(--as-gold); color: #1A1A1A; }

.as-plan-card h3 {
  font-size: 20px; font-weight: 800 !important;
  margin-bottom: 4px !important; margin-top: 8px !important;
  line-height: 1.2 !important;
}
.as-plan-subtitle {
  font-size: 13px; color: var(--as-text-sec);
  margin-bottom: 20px !important;
}
.as-plan-price-box {
  background: var(--as-cream); border-radius: 10px; padding: 18px;
  margin-bottom: 20px !important;
}
.as-plan-old { font-size: 12px; color: var(--as-text-muted); text-decoration: line-through !important; }
.as-plan-price {
  font-size: 28px; font-weight: 800 !important; color: var(--as-text); letter-spacing: -1px;
  line-height: 1.1 !important;
}
.as-plan-period { font-size: 11px; color: var(--as-text-muted); margin-top: 2px !important; margin-bottom: 0 !important; line-height: 1.3 !important; }
.as-plan-total { font-size: 11px; color: var(--as-text-muted); }
.as-plan-save {
  font-size: 11px; font-weight: 700 !important; color: #4A996A; margin-top: 6px !important;
  display: inline-block; background: rgba(74,153,106,.08);
  padding: 3px 10px; border-radius: 6px; margin-bottom: 0 !important; line-height: 1.3 !important;
}

.as-plan-list { list-style: none; margin-bottom: 24px !important; flex: 1; }
.as-plan-list li {
  font-size: 13px; color: var(--as-text-sec); padding: 6px 0 !important;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid #f4f4f4; margin-bottom: 0 !important;
}
.as-plan-list li:last-child { border-bottom: none; }
.as-plan-list li i { color: var(--as-gold-dark); font-size: 11px; flex-shrink: 0; }
.as-plan-evt a,
a.as-plan-evt {
  color: var(--as-gold-dark) !important; text-decoration: none !important;
  font-weight: 600 !important;
  transition: opacity .2s; display: inline-flex; align-items: center; gap: 4px;
}
.as-plan-evt a:hover { opacity: .7; }

.as-plan-cta,
a.as-plan-cta,
a.as-plan-cta:visited {
  display: block; text-align: center; font-size: 14px; font-weight: 700 !important;
  padding: 14px; border-radius: 8px; text-decoration: none !important;
  transition: all .3s; margin-top: auto;
}
.as-plan-cta-outline {
  background: #e8e8e8; color: var(--as-text) !important;
  border: 1px solid #ccc;
}
.as-plan-cta-outline:hover { background: #ddd; }
.as-plan-cta-gold {
  background: linear-gradient(135deg, var(--as-gold), var(--as-gold-dark));
  color: #1A1A1A !important;
  box-shadow: 0 4px 20px rgba(251,187,33,.15); border: none;
}
.as-plan-cta-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(251,187,33,.25); }
.as-plan-cta-dark {
  background: #1A1A1A; color: #fff !important; border: none;
}
.as-plan-cta-dark:hover { background: #333; }
.as-plans-footer {
  font-size: 13px; color: var(--as-text-muted); text-align: center;
  margin-top: 28px !important;
}


/* ═══════════════════════════════════════════════════════════
   GUARANTEE (inside plans section)
   ═══════════════════════════════════════════════════════════ */
.as-guarantee {
  display: flex; justify-content: center; gap: 24px;
  margin-top: 36px !important; flex-wrap: wrap;
}
.as-guarantee-item {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--as-border);
  border-radius: 10px; padding: 14px 20px; flex: 1; min-width: 200px;
}
.as-guarantee-icon {
  width: 36px; height: 36px; min-width: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: #4A996A;
  background: rgba(74,153,106,.08); border: 1px solid rgba(74,153,106,.12);
}
.as-guarantee-text { display: flex; flex-direction: column; }
.as-guarantee-text strong { font-size: 13px; font-weight: 700 !important; color: var(--as-text); }
.as-guarantee-text span { font-size: 11px; color: var(--as-text-muted); margin-top: 1px !important; }


/* ═══════════════════════════════════════════════════════════
   COMPARISON — White, expandable rows
   ═══════════════════════════════════════════════════════════ */
.as-compare { background: #fff; }
.as-compare h2 {
  font-size: 32px; font-weight: 800 !important; letter-spacing: -1px;
  margin-bottom: 12px !important; text-align: center;
  line-height: 1.1 !important;
}
.as-compare-sub {
  font-size: 15px; color: var(--as-text-sec); text-align: center;
  margin-bottom: 44px !important; max-width: 600px;
  margin-left: auto !important; margin-right: auto !important;
}
.as-compare-list { max-width: 860px; margin: 0 auto !important; }

/* Header row */
.as-compare-header {
  display: grid; grid-template-columns: 1fr 100px 100px 100px;
  gap: 8px; padding: 0 20px 12px; align-items: end;
}
.as-compare-header-plan {
  font-size: 11px; font-weight: 700 !important; text-transform: uppercase;
  letter-spacing: .08em; text-align: center; color: var(--as-text-muted);
  padding-bottom: 8px; border-bottom: 2px solid var(--as-border);
}
.as-compare-header-plan.hl { color: var(--as-gold-dark); border-bottom-color: var(--as-gold); }
.as-compare-header-plan.dk { color: var(--as-text); border-bottom-color: #333; }

/* Row item */
.as-compare-row {
  border-bottom: 1px solid #f0f0f0; transition: background .2s;
}
.as-compare-row:last-child { border-bottom: none; }
.as-compare-row summary {
  display: grid; grid-template-columns: 1fr 100px 100px 100px;
  gap: 8px; padding: 16px 20px; align-items: center;
  cursor: pointer; list-style: none; transition: background .2s;
}
.as-compare-row summary::-webkit-details-marker { display: none; }
.as-compare-row summary:hover { background: #fafafa; }
.as-compare-row[open] summary { background: var(--as-cream); }

.as-compare-feature {
  display: flex; align-items: center; gap: 10px;
}
.as-compare-feature-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
  background: var(--as-cream); color: var(--as-gold-dark);
  border: 1px solid var(--as-border);
}
.as-compare-row[open] .as-compare-feature-icon {
  background: var(--as-navy); color: var(--as-gold);
  border-color: var(--as-navy);
}
.as-compare-feature-text { display: flex; flex-direction: column; }
.as-compare-feature-name {
  font-size: 14px; font-weight: 600 !important; color: var(--as-text);
  display: flex; align-items: center; gap: 6px;
}
.as-cmp-arrow {
  font-size: 11px; color: var(--as-text-muted); transition: color .3s;
  display: inline-flex; align-items: center; gap: 4px; margin-left: 2px;
}
.as-cmp-arrow::before { content: '+'; font-size: 13px; font-weight: 700 !important; }
.as-cmp-arrow::after { content: 'Saiba mais'; font-weight: 400 !important; }
.as-compare-row[open] .as-cmp-arrow { color: var(--as-gold-dark); }
.as-compare-row[open] .as-cmp-arrow::before { content: '\2212'; }
.as-compare-row[open] .as-cmp-arrow::after { content: 'Fechar'; }
.as-compare-feature-hint {
  font-size: 11px; color: var(--as-text-muted); margin-top: 1px !important; margin-bottom: 0 !important;
}

/* Check / dash cells */
.as-compare-cell { text-align: center; font-size: 16px; }
.as-compare-cell .check { color: #4A996A; }
.as-compare-cell .dash { color: #ddd; }

/* Expanded detail */
.as-compare-detail {
  padding: 0 20px 20px 62px;
  background: var(--as-cream);
}
.as-compare-detail p {
  font-size: 13px; color: var(--as-text-sec);
  line-height: 1.65 !important;
  max-width: 600px; margin-bottom: 0 !important; margin-top: 0 !important;
}
.as-compare-detail strong { color: var(--as-text); }

/* Bottom row (indicado para) */
.as-compare-footer {
  display: grid; grid-template-columns: 1fr 100px 100px 100px;
  gap: 8px; padding: 20px; margin-top: 8px !important;
  background: var(--as-cream); border-radius: 10px;
}
.as-compare-footer-label { font-size: 13px; font-weight: 600 !important; color: var(--as-text-sec); }
.as-compare-footer-val { font-size: 12px; font-weight: 600 !important; text-align: center; }
.as-compare-footer-val.hl { color: var(--as-gold-dark); }


/* ═══════════════════════════════════════════════════════════
   CONTEXT QUOTES — "O momento exige"
   ═══════════════════════════════════════════════════════════ */
.as-context { background: var(--as-navy); color: #fff; }
.as-context h2 {
  font-size: 28px; font-weight: 800 !important; letter-spacing: -1px;
  margin-bottom: 12px !important; text-align: center; color: #fff;
  line-height: 1.1 !important;
}
.as-context-sub {
  font-size: 15px; color: rgba(255,255,255,.4); text-align: center;
  margin-bottom: 48px !important; max-width: 600px;
  margin-left: auto !important; margin-right: auto !important; line-height: 1.6 !important;
}
.as-context-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1080px; margin: 0 auto !important;
}
.as-context-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--as-radius); padding: 32px 24px 24px;
  position: relative; transition: all .3s;
  display: flex; flex-direction: column;
}
.as-context-card:hover { border-color: rgba(255,255,255,.14); }
.as-context-card::before {
  content: '\201C'; position: absolute; top: 20px; left: 20px;
  font-size: 48px; font-family: Georgia, serif;
  line-height: 1 !important;
  color: var(--as-gold); opacity: .25;
}
.as-context-tag {
  font-size: 11px; font-weight: 700 !important; text-transform: uppercase; letter-spacing: .1em;
  color: var(--as-gold); margin-bottom: 16px !important; display: block; opacity: .85;
}
.as-context-quote {
  font-size: 15px; font-weight: 500 !important; color: rgba(255,255,255,.85);
  line-height: 1.65 !important; font-style: italic; margin-bottom: 16px !important;
}
.as-context-support {
  font-size: 13px; color: rgba(255,255,255,.6);
  line-height: 1.6 !important;
  margin-bottom: 20px !important; margin-top: 0 !important; flex: 1;
}
.as-context-source {
  font-size: 11px; color: rgba(255,255,255,.5); font-style: normal;
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 14px;
  line-height: 1.5 !important; margin-top: auto;
}
.as-context-source strong { color: rgba(255,255,255,.7); font-weight: 600 !important; display: block; margin-bottom: 2px !important; }
.as-context-source em { font-style: normal; color: rgba(255,255,255,.4); }
.as-context-source a,
a.as-context-source-link {
  color: rgba(255,255,255,.3) !important; text-decoration: none !important; font-size: 10px;
  display: inline-block; margin-top: 6px !important; transition: color .2s;
  font-weight: 400 !important;
}
.as-context-source a:hover { color: var(--as-gold) !important; }


/* ═══════════════════════════════════════════════════════════
   EVENTS BANNER — Compacto, entre Social Proof e Security
   ═══════════════════════════════════════════════════════════ */
.as-events-banner { background: var(--as-navy); color: #fff; padding: 48px 32px; width: 100vw; margin-left: calc(-50vw + 50%); box-sizing: border-box; scroll-margin-top: 80px; }
.as-events-banner-inner {
  max-width: var(--as-max); margin: 0 auto !important; padding: 0 24px;
  display: flex; align-items: flex-start; gap: 40px;
}
.as-events-banner-img {
  width: 280px; height: 180px; border-radius: var(--as-radius); overflow: hidden;
  flex-shrink: 0; position: relative;
}
.as-events-banner-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.as-events-banner-img::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--as-radius); border: 1px solid rgba(8,10,204,.2);
  background: radial-gradient(ellipse 60% 60% at center, transparent 30%, rgba(12,20,37,.7) 100%);
  box-shadow: inset 0 0 30px rgba(8,10,204,.1);
}
.as-events-banner-img::before {
  content: ''; position: absolute; inset: -1px; z-index: 1;
  border-radius: var(--as-radius);
  border: 1.5px solid rgba(8,10,204,.25);
  box-shadow: 0 0 20px rgba(8,10,204,.15), 0 0 40px rgba(8,10,204,.06);
}
.as-events-banner-body { flex: 1; }
.as-events-banner-tag {
  font-size: 11px; font-weight: 700 !important; text-transform: uppercase; letter-spacing: .1em;
  color: var(--as-gold); margin-bottom: 10px !important; display: block; opacity: .85;
}
.as-events-banner-title {
  font-size: 32px; font-weight: 800 !important; letter-spacing: -1px;
  margin-bottom: 6px !important; line-height: 1.2 !important;
}
.as-events-banner-title em {
  font-style: normal; color: #4a7aff;
}
.as-events-banner-sub {
  font-size: 16px; font-weight: 500 !important; color: rgba(255,255,255,.6);
  margin-bottom: 14px !important;
}
.as-events-banner-desc {
  font-size: 14px; color: rgba(255,255,255,.45);
  line-height: 1.6 !important; margin-bottom: 16px !important;
}
.as-events-banner-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.as-events-banner-actions a,
a.as-events-banner-link {
  font-size: 13px; font-weight: 600 !important; color: var(--as-gold) !important;
  text-decoration: none !important; transition: opacity .2s;
}
.as-events-banner-actions a:hover { opacity: .75; }

/* Expandable discount details */
.as-events-details { margin-top: 0 !important; }
.as-events-details summary {
  font-size: 12px; font-weight: 600 !important; color: rgba(255,255,255,.45);
  cursor: pointer; list-style: none; display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s;
}
.as-events-details summary::-webkit-details-marker { display: none; }
.as-events-details summary i { font-size: 10px; transition: transform .3s; }
.as-events-details[open] summary i { transform: rotate(90deg); }
.as-events-details summary:hover { color: rgba(255,255,255,.7); }
.as-events-details-content { margin-top: 16px !important; }
.as-events-table { max-width: 520px; width: 100%; border-collapse: collapse; }
.as-events-table th, .as-events-table td {
  padding: 10px 14px; text-align: center; font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.as-events-table th { color: var(--as-gold); font-weight: 700 !important; font-size: 11px; }
.as-events-table th:first-child, .as-events-table td:first-child { text-align: left; }
.as-events-table td:first-child { color: rgba(255,255,255,.55); }
.as-events-table td { color: rgba(255,255,255,.4); }


/* ═══════════════════════════════════════════════════════════
   SOCIAL PROOF
   ═══════════════════════════════════════════════════════════ */
.as-proof { background: #fff; }
.as-proof h2 {
  font-size: 28px; font-weight: 800 !important;
  margin-bottom: 40px !important; text-align: center;
  line-height: 1.1 !important;
}
.as-proof-stats {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  margin-bottom: 32px !important;
}
.as-proof-stat { text-align: center; }
.as-proof-num {
  font-size: 32px; font-weight: 800 !important; color: var(--as-gold-dark);
  letter-spacing: -1px; line-height: 1 !important;
}
.as-proof-label {
  font-size: 11px; color: var(--as-text-muted); text-transform: uppercase;
  letter-spacing: .1em; margin-top: 4px !important; margin-bottom: 0 !important; line-height: 1.3 !important;
}
.as-proof-names {
  text-align: center; font-size: 14px; color: var(--as-text-sec);
  line-height: 1.7 !important; margin-bottom: 0 !important;
}

/* Expert deck */
.as-proof-experts-label {
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--as-gold-dark); font-weight: 700 !important; text-align: center;
  margin-bottom: 6px !important; margin-top: 52px !important;
}

.as-deck-wrap {
  display: flex; flex-direction: column; align-items: center;
  margin-top: 8px !important; position: relative;
}

/* The fanned deck */
.as-deck {
  display: flex; align-items: flex-end; justify-content: center;
  position: relative; height: 160px;
  padding: 0 40px;
}

.as-deck-card {
  width: 100px; height: 130px; border-radius: 12px;
  position: relative; overflow: hidden; background: #1A1A1A;
  box-shadow: 0 4px 16px rgba(0,0,0,.18), 0 1px 3px rgba(0,0,0,.1);
  transition: all .45s cubic-bezier(.16,1,.3,1);
  flex-shrink: 0;
  margin-left: -28px;
  transform-origin: bottom center;
  cursor: pointer; text-decoration: none !important; display: block;
  border: 2px solid rgba(255,255,255,.9);
}
.as-deck-card:first-child { margin-left: 0; }

/* Fan rotation — slight arc */
.as-deck-card:nth-child(1) { transform: rotate(-8deg) translateY(-6px); z-index: 8; }
.as-deck-card:nth-child(2) { transform: rotate(-5.5deg) translateY(-3px); z-index: 7; }
.as-deck-card:nth-child(3) { transform: rotate(-3deg) translateY(-1px); z-index: 6; }
.as-deck-card:nth-child(4) { transform: rotate(-0.5deg) translateY(0px); z-index: 5; }
.as-deck-card:nth-child(5) { transform: rotate(2deg) translateY(-1px); z-index: 4; }
.as-deck-card:nth-child(6) { transform: rotate(4.5deg) translateY(-3px); z-index: 3; }
.as-deck-card:nth-child(7) { transform: rotate(7deg) translateY(-6px); z-index: 2; }
.as-deck-card:nth-child(8) { transform: rotate(9.5deg) translateY(-10px); z-index: 1; }

.as-deck-card::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.7) 100%);
  pointer-events: none;
}
.as-deck-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(30%) contrast(1.05);
  transition: filter .4s;
}
.as-deck-card-name {
  position: absolute; bottom: 8px; left: 8px; right: 8px; z-index: 3;
  font-size: 10px; font-weight: 700 !important; color: #fff; line-height: 1.2 !important;
  text-shadow: 0 1px 4px rgba(0,0,0,.6); margin-bottom: 0 !important;
}

/* Hover: lift and colorize */
.as-deck-card:hover {
  z-index: 20 !important;
  transform: rotate(0deg) translateY(-28px) scale(1.08) !important;
  box-shadow: 0 16px 40px rgba(251,187,33,.25), 0 0 0 2px var(--as-gold);
}
.as-deck-card:hover img { filter: grayscale(0%) contrast(1); }

/* "More" stack at end of deck */
.as-deck-more {
  width: 100px; height: 130px; border-radius: 12px;
  position: relative; flex-shrink: 0;
  margin-left: -28px;
  transform-origin: bottom center;
  transform: rotate(12deg) translateY(-14px);
  z-index: 0; cursor: pointer; text-decoration: none !important; display: block;
}
/* Stacked card layers behind */
.as-deck-more-layer {
  position: absolute; border-radius: 12px;
  border: 2px solid rgba(255,255,255,.9);
  background: linear-gradient(160deg, #e8e5e0, #d5d2cd);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.as-deck-more-layer:nth-child(1) { inset: 0; z-index: 3; background: linear-gradient(160deg, #ddd, #ccc); }
.as-deck-more-layer:nth-child(2) { inset: -3px -4px 3px 4px; z-index: 2; transform: rotate(3deg); background: linear-gradient(160deg, #d0d0d0, #c0c0c0); }
.as-deck-more-layer:nth-child(3) { inset: -5px -7px 5px 7px; z-index: 1; transform: rotate(6deg); background: linear-gradient(160deg, #c5c5c5, #b5b5b5); }
/* Content overlay on top layer */
.as-deck-more-content {
  position: absolute; inset: 0; z-index: 4; border-radius: 12px;
  background: linear-gradient(160deg, var(--as-navy), var(--as-navy2));
  border: 2px solid rgba(255,255,255,.9);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; transition: all .4s cubic-bezier(.16,1,.3,1);
}
.as-deck-more-num {
  font-size: 28px; font-weight: 800 !important; color: var(--as-gold);
  letter-spacing: -1px; line-height: 1 !important;
}
.as-deck-more-label {
  font-size: 9px; font-weight: 700 !important; text-transform: uppercase;
  letter-spacing: .12em; color: rgba(255,255,255,.5); text-align: center;
  line-height: 1.3 !important; margin-bottom: 0 !important;
}
.as-deck-more:hover .as-deck-more-content {
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(251,187,33,.2), 0 0 0 2px var(--as-gold);
}

.as-proof-more {
  font-size: 14px; color: var(--as-text-sec); text-align: center;
  margin-top: 20px !important; margin-bottom: 0 !important; font-weight: 600 !important;
  line-height: 1.4 !important;
}
.as-proof-more strong { color: var(--as-gold-dark); }


/* ═══════════════════════════════════════════════════════════
   SECURITY
   ═══════════════════════════════════════════════════════════ */
.as-security { background: #fff; }
.as-security h2 {
  font-size: 28px; font-weight: 800 !important;
  margin-bottom: 12px !important; text-align: center; letter-spacing: -1px;
  line-height: 1.1 !important;
}
.as-security-sub {
  font-size: 14px; color: var(--as-text-muted); text-align: center;
  margin-bottom: 48px !important; line-height: 1.6 !important;
}
.as-security-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  max-width: 820px; margin: 0 auto !important;
}
.as-security-card {
  background: var(--as-cream); border: 1px solid var(--as-border);
  border-radius: var(--as-radius); padding: 28px; transition: all .35s;
  display: flex; align-items: center; gap: 24px;
}
.as-security-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.06); transform: translateY(-3px); }
.as-security-icon {
  width: 68px; height: 68px; min-width: 68px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; position: relative;
}
.as-security-icon::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(135deg, var(--as-navy), var(--as-navy2));
  opacity: 1;
}
.as-security-icon::after {
  content: ''; position: absolute; inset: -2px; border-radius: 20px;
  background: linear-gradient(135deg, var(--as-gold), transparent 60%);
  z-index: 0; opacity: .4;
}
.as-security-icon i { position: relative; z-index: 1; color: var(--as-gold) !important; }
.as-security-text { flex: 1; }
.as-security-card h4 {
  font-size: 15px; font-weight: 700 !important; color: var(--as-text);
  margin-bottom: 6px !important; margin-top: 0 !important; line-height: 1.2 !important;
}
.as-security-card p {
  font-size: 13px; color: var(--as-text-sec);
  line-height: 1.6 !important; margin-bottom: 0 !important; margin-top: 0 !important;
}


/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.as-faq { background: var(--as-cream); }
.as-faq h2 {
  font-size: 28px; font-weight: 800 !important; text-align: center;
  margin-bottom: 40px !important; line-height: 1.1 !important;
}
.as-faq-list { max-width: 780px; margin: 0 auto !important; }
.as-faq-item { border-bottom: 1px solid #ddd; }
.as-faq-item summary {
  font-size: 15px; font-weight: 700 !important; padding: 18px 0; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  color: var(--as-text); transition: color .2s;
}
.as-faq-item summary:hover { color: var(--as-gold-dark); }
.as-faq-item summary::-webkit-details-marker { display: none; }
.as-faq-item summary::after {
  content: '\f107'; font-family: FontAwesome; color: #ccc;
  transition: transform .3s; font-size: 18px;
}
.as-faq-item[open] summary::after { transform: rotate(180deg); color: var(--as-gold-dark); }
.as-faq-answer {
  font-size: 14px; color: var(--as-text-sec); padding: 0 0 18px;
  line-height: 1.7 !important; margin-bottom: 0 !important;
}


/* ═══════════════════════════════════════════════════════════
   CTA FINAL — Dark navy
   ═══════════════════════════════════════════════════════════ */
.as-cta-final {
  background: var(--as-navy); color: #fff; text-align: center;
  padding: 100px 32px; position: relative; overflow: hidden;
  width: 100vw; margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
  scroll-margin-top: 80px;
}
.as-cta-final::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(251,187,33,.04) 0%, transparent 60%);
  pointer-events: none;
}
.as-cta-final h2 {
  font-size: 36px; font-weight: 800 !important; letter-spacing: -1.5px;
  margin-bottom: 16px !important; line-height: 1.1 !important; color: #fff;
}
.as-cta-final p {
  font-size: 15px; color: rgba(255,255,255,.5);
  margin-bottom: 36px !important;
  max-width: 540px; margin-left: auto !important; margin-right: auto !important;
  line-height: 1.6 !important;
}
.as-cta-final-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .as-hero-inner { grid-template-columns: 1fr; }
  .as-hero-preview { display: none; }
  .as-pain-grid,
  .as-answer-grid,
  .as-plans-grid,
  .as-security-grid,
  .as-context-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto !important; margin-right: auto !important; }
  .as-answer-card { padding: 24px 20px; }
  .as-answer-icon { width: 40px; height: 40px; font-size: 16px; margin-bottom: 10px !important; }
  .as-answer-card h4 { font-size: 14px; margin-bottom: 6px !important; }
  .as-answer-card p { font-size: 12px; margin-bottom: 10px !important; }
  .as-answer-card ul li { font-size: 12px; padding: 3px 0; }
  .as-mini-toggle { display: flex; }
}

@media (max-width: 768px) {
  .as-section { padding: 72px 20px; }
  .as-hero { padding: 80px 20px 64px; min-height: auto; text-align: center; }
  .as-hero h1 { font-size: 28px !important; letter-spacing: -1px; }
  .as-hero-sub { font-size: 14px; }
  .as-hero-ctas { flex-direction: column; align-items: center; text-align: center; }
  h2 { font-size: 26px !important; }
  .as-proof-stats { gap: 20px; }
  .as-proof-num { font-size: 24px; }

  /* Guarantee blocks — compact and centered on mobile */
  .as-guarantee { gap: 8px; margin-top: 24px !important; }
  .as-guarantee-item { justify-content: center; padding: 10px 16px; }

  /* Comparativo — compact on mobile */
  .as-compare-row summary,
  .as-compare-header,
  .as-compare-footer { grid-template-columns: 1fr 64px 64px 64px; gap: 2px; padding-left: 10px; padding-right: 10px; }
  .as-compare-feature-icon { display: none; }
  .as-compare-feature-name { font-size: 12px; }
  .as-compare-feature-name::before {
    content: '+'; font-size: 14px; font-weight: 700 !important; color: var(--as-gold-dark);
    width: 18px; min-width: 18px; text-align: center; line-height: 1;
  }
  .as-compare-row[open] .as-compare-feature-name::before {
    content: '\2212';
  }
  .as-cmp-arrow { display: none !important; }
  .as-compare-feature-hint { display: none; }
  .as-compare-header-plan { font-size: 9px; letter-spacing: .02em; writing-mode: vertical-lr; transform: rotate(180deg); text-align: right; padding-bottom: 0; padding-top: 8px; height: 72px; display: flex; align-items: center; justify-content: flex-end; }
  .as-compare-cell { font-size: 13px; }
  .as-compare-detail { padding: 12px; }
  .as-compare-footer-label { font-size: 11px; }
  .as-compare-footer-val { font-size: 10px; writing-mode: vertical-lr; transform: rotate(180deg); height: 64px; display: flex; align-items: center; justify-content: flex-end; }

  /* Deck — contain overflow */
  .as-deck { overflow-x: auto; justify-content: flex-start; padding: 0 20px; max-width: 100%; }
  .as-deck-card { width: 72px; height: 96px; margin-left: -20px; }
  .as-deck-card:first-child { margin-left: 0; }

  /* Minha assinatura */
  .as-mysub-alert-inner { flex-wrap: wrap; }
  .as-mysub-alert-cta { width: 100%; justify-content: center; margin-top: 8px; }
  .as-mysub-header { flex-direction: column; align-items: flex-start; padding: 20px 20px; }
  .as-mysub-header-plan { font-size: 16px; }
  .as-mysub-row-pair { grid-template-columns: 1fr; }
  .as-mysub-row-pair .as-mysub-row { border-bottom: 1px solid rgba(0,0,0,.04); }
  .as-mysub-row { padding: 12px 20px; }
  .as-mysub-actions { padding: 16px 24px; flex-wrap: wrap; justify-content: center; }
  .as-mysub-link, a.as-mysub-link { flex: 1 1 auto; justify-content: center; text-align: center; white-space: nowrap; }

  /* Events banner */
  .as-events-banner-inner { flex-direction: column; text-align: center; gap: 24px; }
  .as-events-banner-img { width: 100%; max-width: 360px; height: 160px; }
  .as-events-banner-actions { justify-content: center; }
  .as-events-table { margin: 0 auto !important; max-width: 320px; }
  .as-events-table thead { display: none; }
  .as-events-table tbody { display: flex; flex-direction: column; gap: 12px; }
  .as-events-table tr {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 0; border: 1px solid rgba(255,255,255,.1); border-radius: 8px;
    overflow: hidden;
  }
  .as-events-table td { text-align: center; padding: 8px 6px; border-bottom: none; }
  .as-events-table td:first-child {
    grid-column: 1 / -1; text-align: center; font-weight: 600 !important;
    border-bottom: 1px solid rgba(255,255,255,.08); padding: 10px 8px;
  }
  .as-events-table td::before {
    display: block; font-size: 9px; font-weight: 700 !important; text-transform: uppercase;
    letter-spacing: .06em; color: var(--as-gold); margin-bottom: 4px;
  }
  .as-events-table tr td:nth-child(2)::before { content: 'Mensal'; }
  .as-events-table tr td:nth-child(3)::before { content: 'Semestral'; }
  .as-events-table tr td:nth-child(4)::before { content: 'Anual'; }
}

@media (max-width: 480px) {
  .as-hero { padding: 64px 16px 48px; }
  .as-section { padding: 56px 16px; }
}
