/*
AQC Full Course
Version: 1.0
*/

/* Esconder Header Global nesta Landing Page */
#site-header.site-header {
  display: none !important;
}

/* ---------- Base Reset ---------- */
.landing-aqc-full,
.landing-aqc-full * {
  box-sizing: border-box;
}

.landing-aqc-full {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

.landing-aqc-full h1,
.landing-aqc-full h2,
.landing-aqc-full h3,
.landing-aqc-full h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  margin: 0;
}

.landing-aqc-full p {
  margin: 0;
  line-height: 1.7;
}

.landing-aqc-full img {
  max-width: 100%;
  height: auto;
}

/* ---------- Container ---------- */
.aqc-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.aqc-container--narrow {
  max-width: 780px;
  margin: 0 auto;
}

/* ---------- Section Base ---------- */
.aqc-section {
  padding: 64px 0;
  position: relative;
}

.aqc-section+.aqc-section {
  border-top: 1px solid var(--border-dim);
}

/* ---------- Button System ---------- */
.btn-aqc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 18px 36px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(201, 160, 100, 0.35);
  width: 100%;
  max-width: 480px;
  text-align: center;
}

.btn-aqc:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 160, 100, 0.55);
  color: #000;
  text-decoration: none;
}

.btn-aqc svg {
  flex-shrink: 0;
}

.btn-aqc-sub {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.75;
  margin-top: 3px;
  line-height: 1.4;
}

/* ---------- Scarcity Bar ---------- */

.aqc-scarcity-bar {
  background: linear-gradient(90deg, #1a0e00, #2a1500, #1a0e00);
  border-bottom: 1px solid var(--gold-dark);
  padding: 10px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.5px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.aqc-scarcity-bar span {
  margin-right: 8px;
  font-size: 0.9rem;
}

/* ---------- Hero Section ---------- */
.aqc-hero {
  background:
    radial-gradient(circle at 75% 30%, rgba(201, 160, 100, 0.10) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(201, 160, 100, 0.06) 0%, transparent 45%),
    linear-gradient(180deg, #000 0%, #080808 100%);
  padding: 35px 0 0px;
  overflow: hidden;
}

.aqc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 35px;
  align-items: center;
  grid-auto-flow: dense;
}

/* Left: copy */
.aqc-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* mantém o resto à esquerda */
}

.aqc-hero-eyebrow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: var(--gold-fade);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  grid-column: 1 / -1;
  justify-self: center;
  width: fit-content;
}

.aqc-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  margin-bottom: 24px;
}

.aqc-hero h1 em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.aqc-hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px !important;
  max-width: 580px;
}

.aqc-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aqc-hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-main);
}

.aqc-hero-bullets li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

.aqc-hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.aqc-hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.aqc-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.aqc-hero-trust-item svg {
  color: var(--gold);
}

/* Right: card */
.aqc-hero-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.aqc-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.aqc-hero-card-badge {
  background: var(--gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 16px;
  text-align: center;
}

.aqc-hero-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
}

.aqc-hero-card-footer {
  padding: 20px 24px;
  text-align: center;
  border-top: 1px solid var(--border-dim);
}

.aqc-hero-card-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #fff;
  font-weight: 700;
}

.aqc-hero-card-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-weight: 400;
}

.aqc-hero-card-or {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 4px 0;
}

.aqc-hero-card-strike {
  font-size: 0.85rem;
  color: #555;
  text-decoration: line-through;
}

/* ---------- Ticker ---------- */
.aqc-ticker {
  background: var(--gold);
  overflow: hidden;
  padding: 10px 0;
  margin: 32px 0;
}

.aqc-ticker-track {
  display: flex;
  gap: 0;
  animation: aqc-ticker-scroll 28s linear infinite;
  white-space: nowrap;
}

.aqc-ticker-item {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #000;
  padding: 0 24px;
  flex-shrink: 0;
}

.aqc-ticker-sep {
  color: rgba(0, 0, 0, 0.35);
  padding: 0 4px;
  flex-shrink: 0;
}

@keyframes aqc-ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ---------- CTA Section (standalone) ---------- */
.aqc-cta-band {
  background: linear-gradient(135deg, #0d0d0d 0%, #111 50%, #0a0800 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
  text-align: center;
}

.aqc-cta-band h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff;
  margin-bottom: 12px;
}

.aqc-cta-band h2 em {
  font-style: normal;
  color: var(--gold);
}

.aqc-cta-band p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.aqc-cta-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.aqc-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: #555;
}

.aqc-secure-note span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.aqc-secure-note svg {
  color: var(--gold);
  opacity: 0.7;
}

/* ---------- Problema ---------- */
.aqc-problem {
  background: var(--bg-dark);
  padding: 35px 0;
}

.aqc-problem-header {
  text-align: center;
  margin-bottom: 36px;
}

.aqc-problem-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 16px;
}

.aqc-problem-header h2 em {
  font-style: normal;
  color: var(--gold);
}

.aqc-problem-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

.aqc-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.aqc-problem-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  transition: border-color var(--transition);
}

.aqc-problem-card:hover {
  border-color: rgba(201, 160, 100, 0.3);
}

.aqc-problem-card h3 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 14px;
}

.aqc-problem-card p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.aqc-problem-card p strong {
  color: var(--text-main);
}

.aqc-problem-highlight {
  background: linear-gradient(135deg, rgba(201, 160, 100, 0.05) 0%, rgba(201, 160, 100, 0.02) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.aqc-problem-highlight h3 {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}

.aqc-problem-highlight p {
  font-size: 1.0rem;
  color: var(--text-main);
  line-height: 1.8;
}

.aqc-problem-highlight p strong {
  color: #fff;
  font-weight: 700;
}

/* ---------- Agitação "Por que isso acontece" ---------- */
.aqc-agitation {
  background: #080808;
  padding: 35px 0;
}

.aqc-agitation-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.aqc-agitation h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: #fff;
  margin-bottom: 32px;
}

.aqc-agitation h2 em {
  font-style: italic;
  color: var(--gold);
}

.aqc-agitation-copy p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.aqc-agitation-copy p strong {
  color: var(--text-main);
}

.aqc-agitation-copy p.aqc-bold-line {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 600;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  text-align: left;
  margin: 32px 0;
}

.aqc-sabotage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 36px 0;
  text-align: left;
}

.aqc-sabotage-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-panel);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.aqc-sabotage-item svg {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Solução / Mecanismo Único ---------- */
.aqc-solution {
  background: linear-gradient(180deg, #050505 0%, #0a0800 100%);
  padding: 35px 0;
}

.aqc-solution-inner {
  max-width: 880px;
  margin: 0 auto;
}

.aqc-solution h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 24px;
}

.aqc-solution h2 em {
  font-style: normal;
  color: var(--gold);
}

.aqc-solution-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.aqc-solution-lead strong {
  color: var(--text-main);
}

.aqc-mechanism-box {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 40px 0;
  position: relative;
}

.aqc-mechanism-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.aqc-mechanism-box h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 16px;
}

.aqc-mechanism-box p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.aqc-mechanism-box p:last-child {
  margin-bottom: 0;
}

.aqc-mechanism-box p strong {
  color: var(--text-main);
}

.aqc-solution-promise {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  border-top: 1px solid var(--border-dim);
}

.aqc-solution-promise em {
  font-style: normal;
  color: var(--gold);
}

/* ---------- Para quem é ---------- */
.aqc-for-whom {
  background: #080808;
  padding: 35px 0;
}

.aqc-for-whom-header {
  text-align: center;
  margin-bottom: 48px;
}

.aqc-for-whom-header h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: #fff;
}

.aqc-for-whom-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.aqc-for-whom-header p {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 1rem;
}

.aqc-for-whom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.aqc-for-card {
  border-radius: var(--radius-md);
  padding: 36px 32px;
}

.aqc-for-card--yes {
  background: linear-gradient(180deg, rgba(76, 175, 130, 0.06) 0%, transparent 100%);
  border: 1px solid rgba(76, 175, 130, 0.25);
}

.aqc-for-card--no {
  background: linear-gradient(180deg, rgba(224, 82, 82, 0.06) 0%, transparent 100%);
  border: 1px solid rgba(224, 82, 82, 0.2);
}

.aqc-for-card h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.aqc-for-card--yes h3 {
  color: var(--green);
}

.aqc-for-card--no h3 {
  color: var(--red);
}

.aqc-for-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.aqc-for-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.aqc-for-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- About (Credenciais) ---------- */
.aqc-about {
  background: var(--bg-dark);
  padding: 35px 0;
}

.aqc-about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.aqc-about-img-wrap {
  position: relative;
}

.aqc-about-img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  display: block;
}

.aqc-about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(201, 160, 100, 0.4);
}

.aqc-about-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 10px;
}

.aqc-about h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 6px;
}

.aqc-about-cred {
  font-size: 0.88rem;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}

.aqc-about-copy p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.aqc-about-copy p:last-child {
  margin-bottom: 0;
}

.aqc-about-copy p strong {
  color: var(--text-main);
}

/* ---------- Módulos ---------- */
.aqc-modules {
  background: #080808;
  padding: 35px 0;
}

.aqc-modules-header {
  text-align: center;
  margin-bottom: 36px;
}

.aqc-modules-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 12px;
}

.aqc-modules-header h2 em {
  font-style: normal;
  color: var(--gold);
}

.aqc-modules-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.aqc-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.aqc-module-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.aqc-module-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.aqc-module-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.aqc-module-card:hover::after {
  opacity: 1;
}

.aqc-module-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.aqc-module-card h3 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 10px;
}

.aqc-module-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.aqc-modules-footer {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.aqc-modules-footer p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

.aqc-modules-footer p strong {
  color: var(--text-main);
}

/* ---------- Cálculo de ROI ---------- */
.aqc-roi {
  background: linear-gradient(180deg, #050505 0%, #0a0800 60%, #050505 100%);
  padding: 35px 0;
}

.aqc-roi-header {
  text-align: center;
  margin-bottom: 48px;
}

.aqc-roi-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 12px;
}

.aqc-roi-header h2 em {
  font-style: normal;
  color: var(--gold);
}

.aqc-roi-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.aqc-roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto 36px;
}

.aqc-roi-box {
  border-radius: var(--radius-md);
  padding: 36px 32px;
}

.aqc-roi-box--bad {
  background: rgba(224, 82, 82, 0.04);
  border: 1px solid rgba(224, 82, 82, 0.2);
}

.aqc-roi-box--good {
  background: linear-gradient(180deg, rgba(201, 160, 100, 0.08) 0%, transparent 100%);
  border: 1px solid var(--border);
}

.aqc-roi-box-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.aqc-roi-box--bad .aqc-roi-box-label {
  color: var(--red);
}

.aqc-roi-box--good .aqc-roi-box-label {
  color: var(--gold);
}

.aqc-roi-stat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.93rem;
  line-height: 1.5;
}

.aqc-roi-stat svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.aqc-roi-stat-text {
  flex: 1;
  min-width: 0;
}

.aqc-roi-stat--bad {
  color: #888;
}

.aqc-roi-stat--good {
  color: var(--text-main);
}

.aqc-roi-stat strong {
  color: var(--text-main);
}

.aqc-roi-stat--good strong {
  color: var(--gold-light);
}

.aqc-roi-result {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.aqc-roi-result-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.aqc-roi-result-text strong {
  color: var(--text-main);
}

.aqc-roi-big {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  line-height: 1;
}

.aqc-roi-big span {
  display: block;
  font-size: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
  text-align: center;
  margin-top: 4px;
}

/* ---------- Oferta / Preço ---------- */
.aqc-offer {
  background: #080808;
  padding: 35px 0;
}

.aqc-offer-wrapper {
  max-width: 620px;
  margin: 0 auto;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
}

.aqc-offer-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.aqc-offer h2 {
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 28px;
}

.aqc-offer-strike {
  font-size: 1rem;
  color: #555;
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}

.aqc-offer-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 8px 0;
}

.aqc-offer-currency {
  font-size: 1.5rem;
  color: var(--gold);
  font-family: var(--font-serif);
}

.aqc-offer-val {
  font-size: 4.2rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-serif);
  line-height: 1;
}

.aqc-offer-term {
  color: var(--text-muted);
  font-size: 1rem;
  align-self: flex-end;
  padding-bottom: 8px;
}

.aqc-offer-or {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 8px 0 28px;
}

.aqc-offer-perday {
  display: inline-block;
  background: var(--gold-fade);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 20px;
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 32px;
}

.aqc-offer-items {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  padding: 20px 0;
}

.aqc-offer-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.aqc-offer-items li svg {
  color: var(--gold);
  flex-shrink: 0;
}

.aqc-offer-scarcity {
  font-size: 0.82rem;
  color: var(--red);
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ---------- Escolha (Dois Caminhos) ---------- */
.aqc-choice {
  background: var(--bg-dark);
  padding: 35px 0;
}

.aqc-choice-header {
  text-align: center;
  margin-bottom: 48px;
}

.aqc-choice-header h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: #fff;
}

.aqc-choice-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.aqc-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto 48px;
}

.aqc-choice-box {
  padding: 32px 28px;
  border-radius: var(--radius-md);
}

.aqc-choice-box--no {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #2a2a2a;
  opacity: 0.89;
}

.aqc-choice-box--yes {
  background: linear-gradient(180deg, rgba(201, 160, 100, 0.08) 0%, transparent 100%);
  border: 1px solid var(--border);
}

.aqc-choice-box h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.aqc-choice-box--no h3 {
  color: #555;
}

.aqc-choice-box--yes h3 {
  color: var(--gold);
}

.aqc-choice-box p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Garantia ---------- */
.aqc-guarantee {
  background: #080808;
  padding: 35px 0;
}

.aqc-guarantee-box {
  max-width: 800px;
  margin: 0 auto;
  border: 1px dashed var(--gold);
  border-radius: var(--radius-md);
  padding: 56px 48px;
  text-align: center;
  background: rgba(201, 160, 100, 0.03);
  position: relative;
}

.aqc-guarantee-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  display: block;
}

.aqc-guarantee-box h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: #fff;
  margin-bottom: 20px;
}

.aqc-guarantee-box h2 em {
  font-style: normal;
  color: var(--gold);
}

.aqc-guarantee-box p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 12px;
}

.aqc-guarantee-box p strong {
  color: var(--text-main);
}

.aqc-guarantee-box p.aqc-risk-note {
  font-size: 0.9rem;
  color: var(--gold);
  margin-top: 20px;
}

/* ---------- FAQs ---------- */
.aqc-faq {
  background: var(--bg-dark);
  padding: 35px 0;
}

.aqc-faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.aqc-faq-header h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: #fff;
}

.aqc-faq-header h2 em {
  font-style: normal;
  color: var(--gold);
}

.aqc-faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.aqc-faq-item {
  border-bottom: 1px solid var(--border-dim);
}

.aqc-faq-item:first-child {
  border-top: 1px solid var(--border-dim);
}

.aqc-faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #fff;
  transition: color var(--transition);
}

.aqc-faq-question:hover {
  color: var(--gold);
}

.aqc-faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition), background var(--transition);
}

.aqc-faq-item.is-open .aqc-faq-icon {
  transform: rotate(45deg);
  background: var(--gold-fade);
}

.aqc-faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 4px;
}

.aqc-faq-item.is-open .aqc-faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}

.aqc-faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.aqc-faq-answer p strong {
  color: var(--text-main);
}

/* ---------- CTA Final ---------- */
.aqc-final-cta {
  background: linear-gradient(180deg, #0a0800 0%, #050505 100%);
  padding: 96px 0;
  text-align: center;
}

.aqc-final-cta h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: #fff;
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.aqc-final-cta h2 em {
  font-style: normal;
  color: var(--gold);
}

.aqc-final-cta p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.aqc-final-cta-price {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.aqc-final-cta-price strong {
  color: var(--gold-light);
}

/* ---------- PS ---------- */
.aqc-ps {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dim);
  padding: 48px 0;
  text-align: center;
}

.aqc-ps-inner {
  max-width: 680px;
  margin: 0 auto;
}

.aqc-ps-label {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}

.aqc-ps p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.aqc-ps p strong {
  color: var(--text-main);
}

.aqc-ps p em {
  font-style: normal;
  color: var(--gold);
}

/* ---------- Footer Override ---------- */
.landing-aqc-full~footer,
.landing-aqc-full+* footer,
.site-footer {
  background-color: var(--bg-dark) !important;
  color: var(--text-muted) !important;
  border-top: 1px solid var(--border-dim) !important;
  font-family: var(--font-sans) !important;
}

/* ---------- Utility Classes ---------- */
.text-gold {
  color: var(--gold);
}

.text-white {
  color: #fff;
}

.text-muted {
  color: var(--text-muted);
}

.text-center {
  text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .aqc-hero-grid {
    grid-template-columns: 1fr;
  }

  .aqc-hero-card {
    max-width: 420px;
    margin: 0 auto;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
  }

  .aqc-hero-card-badge {
    display: none;
  }

  .aqc-hero-card-footer {
    display: none;
  }

  .aqc-hero-card-img {
    border-radius: var(--radius-md);
  }

  .aqc-hero-cta-wrap {
    align-items: center;
    align-self: center;
  }

  .btn-aqc {
    max-width: 100%;
  }

  .aqc-hero-sub {
    max-width: 100%;
  }

  .aqc-problem-grid {
    grid-template-columns: 1fr;
  }

  .aqc-for-whom-grid {
    grid-template-columns: 1fr;
  }

  .aqc-about-grid {
    grid-template-columns: 1fr;
  }

  .aqc-about-img-wrap {
    max-width: 320px;
    margin: 0 auto;
  }

  .aqc-modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aqc-sabotage-grid {
    grid-template-columns: 1fr;
  }

  .aqc-roi-grid {
    grid-template-columns: 1fr;
  }

  .aqc-choice-grid {
    grid-template-columns: 1fr;
  }

  .aqc-offer-wrapper {
    padding: 48px 28px;
  }

  .aqc-guarantee-box {
    padding: 40px 24px;
  }
}

@media (max-width: 600px) {
  .aqc-section {
    padding: 56px 0;
  }

  .aqc-hero {
    padding: 35px 0 0px;
  }

  .aqc-hero h1 {
    font-size: 1.75rem;
  }

  .aqc-hero-card-badge {
    display: none;
  }

  .aqc-hero-card-footer {
    display: none;
  }

  .aqc-cta-band {
    padding: 48px 0;
  }

  .aqc-scarcity-bar {
    font-size: 0.73rem;
  }

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

  .aqc-mechanism-box {
    padding: 28px 22px;
  }

  .aqc-problem-highlight {
    padding: 28px 22px;
  }

  .aqc-roi-result {
    flex-direction: column;
    text-align: center;
  }

  .aqc-offer-val {
    font-size: 3.2rem;
  }

  .aqc-final-cta {
    padding: 64px 0;
  }
}