/* ==========================================================================
   COMPONENTES ESPECÍFICOS — EVANGELISMO DE SEGUNDA A SEXTA
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. BARRA DE AVISO / TOP BAR COM COUNTDOWN
   -------------------------------------------------------------------------- */
.announcement-bar {
  background: linear-gradient(90deg, #1e1b4b 0%, #1e293b 50%, #0f172a 100%);
  border-bottom: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.65rem 1rem;
  font-size: 0.8125rem;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  text-align: center;
  color: #f1f5f9;
}

.announcement-badge {
  background: #f59e0b;
  color: #000;
  font-weight: 800;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.725rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.countdown-box {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 800;
  color: var(--accent-gold-light);
  font-family: monospace;
  font-size: 0.95rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* --------------------------------------------------------------------------
   2. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.hero-glow-bg {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(30, 58, 138, 0.15) 45%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.95fr;
    gap: 3.5rem;
  }
}

.hero-content {
  text-align: left;
}

@media (max-width: 991px) {
  .hero-content {
    text-align: center;
  }
}

.hero-headline {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}

.hero-subheadline {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 620px;
}

@media (max-width: 991px) {
  .hero-subheadline {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-cta-wrapper {
  margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
  .hero-cta-wrapper .btn {
    margin-left: auto;
    margin-right: auto;
  }
}

.social-proof-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 991px) {
  .social-proof-strip {
    justify-content: center;
  }
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-mini {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  margin-left: -10px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
}

.avatar-mini:first-child {
  margin-left: 0;
}

.social-proof-text {
  font-size: 0.85rem;
  line-height: 1.35;
  color: var(--text-muted);
}

.social-proof-text strong {
  color: var(--text-white);
}

/* Mockup Frame do Hero */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.mockup-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(245, 158, 11, 0.18);
  transition: transform var(--transition-normal);
}

.mockup-container:hover {
  transform: translateY(-4px);
}

.mockup-img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 4px);
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  animation: floatSubtle 4s ease-in-out infinite alternate;
}

.floating-badge.badge-left {
  bottom: -15px;
  left: -15px;
}

.floating-badge.badge-right {
  top: 20px;
  right: -15px;
}

@media (max-width: 576px) {
  .floating-badge {
    display: none;
  }
}

@keyframes floatSubtle {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

.badge-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-subtle);
  color: var(--accent-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.badge-text-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-white);
}

.badge-text-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   3. O MECANISMO EM 3 PASSOS (BLOCO 2)
   -------------------------------------------------------------------------- */
.mechanism-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .mechanism-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.mechanism-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-gradient);
  color: #1a1001;
  font-weight: 900;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.mechanism-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.mechanism-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   4. SIMULADOR INTERATIVO DE SCRIPTS (DEGUSTAÇÃO PRÁTICA)
   -------------------------------------------------------------------------- */
.playground-section {
  background: linear-gradient(180deg, #090d16 0%, #0c1222 50%, #090d16 100%);
  position: relative;
}

.simulator-box {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 158, 11, 0.08);
}

.simulator-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.filter-group-label {
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: var(--accent-gold-light);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.filter-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.filter-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-medium);
  color: var(--text-white);
}

.filter-pill.active {
  background: var(--gold-gradient);
  border-color: var(--accent-gold-light);
  color: #110c01;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Tone Toggle */
.tone-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tone-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.825rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tone-pill.active {
  background: rgba(56, 189, 248, 0.15);
  border-color: var(--sky-400);
  color: #e0f2fe;
}

/* Script Display Result Card */
.script-display-card {
  background: rgba(9, 13, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: clamp(1.25rem, 3vw, 2rem);
  position: relative;
}

.script-display-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.script-meta-tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag-context {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold-light);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.775rem;
  font-weight: 700;
}

.tag-tone {
  background: rgba(56, 189, 248, 0.15);
  color: var(--sky-400);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.775rem;
  font-weight: 700;
}

.btn-copy-script {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-medium);
  color: var(--text-white);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-copy-script:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
}

.script-quote-box {
  position: relative;
  background: rgba(17, 24, 39, 0.6);
  border-left: 4px solid var(--accent-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}

.script-quote-text {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.55;
  font-style: italic;
}

.script-explanation {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-size: 0.875rem;
  color: #d1fae5;
  line-height: 1.5;
}

.script-explanation svg {
  color: var(--emerald-400);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* --------------------------------------------------------------------------
   5. AGITAÇÃO DA DOR (BLOCO 6)
   -------------------------------------------------------------------------- */
.pain-box {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
  position: relative;
}

.pain-quote {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: #fca5a5;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  text-align: center;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pain-item {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.pain-item h4 {
  font-size: 1.05rem;
  color: #fecaca;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pain-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   6. ENTREGÁVEIS DETALHADOS + 4 BÔNUS (BLOCO 8)
   -------------------------------------------------------------------------- */
.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .deliverables-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.deliverable-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.deliverable-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-gold-light);
  margin-bottom: 0.75rem;
}

.deliverable-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.deliverable-list {
  list-style: none;
  margin-top: 1rem;
}

.deliverable-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.45;
}

.deliverable-list li svg {
  color: var(--accent-gold-light);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Grid de Bônus */
.bonuses-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bonus-card {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.8) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.bonus-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold);
}

.bonus-card.irresistible-card {
  border: 1px solid var(--border-gold);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.12);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.9) 0%, rgba(20, 26, 45, 0.95) 100%);
}

.bonus-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--gold-subtle);
  color: var(--accent-gold-light);
  border: 1px solid var(--border-gold);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  width: fit-content;
}

.bonus-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.bonus-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.bonus-value-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
}

.bonus-original-price {
  color: var(--text-dim);
  text-decoration: line-through;
}

.bonus-free-tag {
  color: var(--emerald-400);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   7. DEPOIMENTOS / PROVA SOCIAL (BLOCOS 5, 7, 9)
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--accent-gold-light);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent-gold-light);
  border: 1px solid var(--border-medium);
}

.author-info h4 {
  font-size: 0.925rem;
  margin-bottom: 0.15rem;
}

.author-info span {
  font-size: 0.775rem;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   8. PARA QUEM É VS PARA QUEM NÃO É (BLOCO 10)
   -------------------------------------------------------------------------- */
.who-is-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .who-is-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.who-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}

.who-card.is-for {
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.who-card.not-for {
  border: 1px solid rgba(239, 68, 68, 0.25);
  background: rgba(15, 23, 42, 0.5);
}

.who-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.who-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.is-for .who-card-icon {
  background: var(--emerald-subtle);
  color: var(--emerald-400);
}

.not-for .who-card-icon {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.who-list {
  list-style: none;
}

.who-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.is-for .who-list li svg {
  color: var(--emerald-400);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.not-for .who-list li svg {
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   9. ANCORAGEM DE VALOR & OFERTA (BLOCOS 11, 12, 17)
   -------------------------------------------------------------------------- */
.pricing-section {
  position: relative;
}

.pricing-card {
  background: radial-gradient(circle at 50% 0%, #1e293b 0%, #0c1222 100%);
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 3.25rem);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 50px rgba(245, 158, 11, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-top-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #0d0800;
  font-weight: 800;
  font-size: 0.8125rem;
  padding: 0.35rem 1.5rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stack-list {
  list-style: none;
  max-width: 600px;
  margin: 2rem auto 2.5rem;
  text-align: left;
}

.stack-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
}

.stack-item:last-child {
  border-bottom: none;
}

.stack-item-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-primary);
}

.stack-item-title svg {
  color: var(--emerald-400);
}

.stack-item-val {
  color: var(--text-dim);
  font-weight: 600;
}

.stack-total-box {
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border-subtle);
}

.stack-total-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.stack-old-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ef4444;
  text-decoration: line-through;
}

.pricing-main-box {
  margin-bottom: 2.25rem;
}

.pricing-deal-tag {
  color: var(--emerald-400);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.pricing-price-now {
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.pricing-price-now span {
  font-size: 1.5rem;
  vertical-align: super;
  color: var(--accent-gold-light);
}

.pricing-installment {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.payment-methods-img {
  margin: 1.5rem auto 0;
  opacity: 0.8;
  max-width: 280px;
}

/* --------------------------------------------------------------------------
   10. COMO FUNCIONA O ACESSO (BLOCO 13)
   -------------------------------------------------------------------------- */
.access-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .access-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.access-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}

.access-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-subtle);
  color: var(--accent-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
  border: 1px solid var(--border-gold);
}

.access-step-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.access-step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   11. GARANTIA BLINDADA DE 7 DIAS (BLOCO 14)
   -------------------------------------------------------------------------- */
.guarantee-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(15, 23, 42, 0.85) 100%);
  border: 2px solid var(--border-emerald);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .guarantee-box {
    grid-template-columns: 160px 1fr;
  }
}

.guarantee-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, #065f46 0%, #022c22 100%);
  border: 3px dashed var(--emerald-400);
  color: #fff;
  text-align: center;
  margin: 0 auto;
  box-shadow: 0 0 25px var(--emerald-glow);
}

.guarantee-days {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
  color: #34d399;
}

.guarantee-label {
  font-size: 0.725rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.guarantee-content h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 0.85rem;
  color: #ffffff;
}

.guarantee-content p {
  color: var(--text-secondary);
  font-size: 0.975rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   12. CONHEÇA SEU MENTOR (BLOCO 15)
   -------------------------------------------------------------------------- */
.mentor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .mentor-grid {
    grid-template-columns: 360px 1fr;
    gap: 3.5rem;
  }
}

.mentor-photo-wrapper {
  position: relative;
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
}

.mentor-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-gold);
  box-shadow: var(--shadow-lg), 0 0 35px rgba(245, 158, 11, 0.2);
  object-fit: cover;
}

.mentor-photo-caption {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--accent-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  font-weight: 600;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
}

.mentor-bio h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.35rem;
}

.mentor-role {
  color: var(--accent-gold-light);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  display: block;
}

.mentor-bio p {
  color: var(--text-secondary);
  font-size: 0.975rem;
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

/* --------------------------------------------------------------------------
   13. O FECHAMENTO BINÁRIO (BLOCO 16)
   -------------------------------------------------------------------------- */
.binary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .binary-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.binary-card {
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.binary-card.option-stay {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.binary-card.option-act {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 2px solid var(--accent-gold);
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.15);
}

.binary-badge {
  display: inline-block;
  font-size: 0.775rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  width: fit-content;
}

.option-stay .binary-badge {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

.option-act .binary-badge {
  background: var(--gold-gradient);
  color: #110c01;
}

.binary-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.binary-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   14. FAQ ACCORDION (BLOCO 18)
   -------------------------------------------------------------------------- */
.faq-container {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-medium);
}

.faq-item.active {
  border-color: var(--border-gold);
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
  line-height: 1.35;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-normal), background var(--transition-normal);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--accent-gold);
  color: #000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #060910;
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--text-white);
}

.footer-disclaimer {
  max-width: 650px;
  margin: 1rem auto 0;
  font-size: 0.775rem;
  line-height: 1.5;
  color: #475569;
}

/* --------------------------------------------------------------------------
   16. STICKY MOBILE CTA BAR
   -------------------------------------------------------------------------- */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 15, 25, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-gold);
  padding: 0.75rem 1rem;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(120%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
}

@media (min-width: 769px) {
  .sticky-mobile-cta {
    display: none;
  }
}

.sticky-mobile-info {
  display: flex;
  flex-direction: column;
}

.sticky-mobile-price {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.1;
}

.sticky-mobile-price span {
  font-size: 0.75rem;
  color: var(--accent-gold-light);
}

.sticky-mobile-badge {
  font-size: 0.7rem;
  color: var(--emerald-400);
  font-weight: 700;
}

.sticky-mobile-btn {
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   17. CHECKOUT MODAL / POPUP INTERATIVO
   -------------------------------------------------------------------------- */
.checkout-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.checkout-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.checkout-modal-dialog {
  background: #0f172a;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(245, 158, 11, 0.2);
  position: relative;
  transform: scale(0.94);
  transition: transform 0.3s ease;
}

.checkout-modal-overlay.open .checkout-modal-dialog {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-header h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.modal-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.modal-price-strip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

/* Toast de Notificação (Script Copiado) */
.toast-notice {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--gold-gradient);
  color: #0b0600;
  font-weight: 800;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 158, 11, 0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
