:root {
  /* ===== PALETA DE CORES MODERNA ===== */
  --primary-blue: #2e3192;
  --primary-light: #5356c9;
  --primary-dark: #1a1c5e;
  --accent-gold: #ffd700;
  --accent-orange: #ff8c00;

  /* ===== EFEITOS GLASS MODERNOS ===== */
  --glass-border: rgba(46, 49, 146, 0.2);
  --glass-blur: blur(20px);
  --glass-blue: rgba(46, 49, 146, 0.08);

  /* ===== BACKGROUND GRADIENTE ===== */
  --bg-gradient: linear-gradient(135deg, #1a1c5e 0%, #5356c9 100%);
  --bg-glass: rgba(255, 255, 255, 0.1);

  /* ===== CORES DE TEXTO ===== */
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-muted: rgba(26, 26, 26, 0.6);
  --text-dark: #1a1a1a;

  /* ===== SOMBRAS MODERNAS ===== */
  --shadow-sm: 0 2px 8px rgba(46, 49, 146, 0.08);
  --shadow-md: 0 4px 16px rgba(46, 49, 146, 0.12);
  --shadow-lg: 0 8px 32px rgba(46, 49, 146, 0.15);
  --shadow-xl: 0 16px 48px rgba(46, 49, 146, 0.2);

  /* ===== TRANSIÇÕES ===== */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-out;
}

/* ===== TIPOGRAFIA PADRONIZADA ===== */
h1,
h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  margin: 0;
}

h3,
h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  margin: 0;
}

p {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

button {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 18px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

/* ===== BACKGROUND ESPECÍFICOS ===== */
body,
.hero-section,
.result-analysis {
  background: #fff !important;
  /* Fundo branco puro */
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #fff !important;
  /* Fundo branco puro */
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

/* ===== PAGE NAVIGATION ===== */
.page {
  display: none;
  min-height: 100vh;
  position: relative;
}

.page.active {
  display: block;
  animation: pageIn 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== GLASS CARDS MODERNOS ===== */
.glass-card {
  background: linear-gradient(135deg, var(--glass-blue) 0%, rgba(83, 86, 201, 0.03) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 49, 146, 0.4), transparent);
}

.glass-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(46, 49, 146, 0.03) 0%, transparent 70%);
  z-index: -1;
}

.glass-card:hover {
  box-shadow: 0 16px 48px rgba(46, 49, 146, 0.2);
  transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero-section {
  text-align: center;
}

.logo-premium {
  max-width: 220px;
  width: 100%;
  height: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 12px rgba(46, 49, 146, 0.2));
}

.hero-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.value-proposition {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.5;
}

.cta-start-quiz {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.cta-start-quiz::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.cta-start-quiz:hover::before {
  left: 100%;
}

.cta-start-quiz:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.trust-indicators {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ===== SISTEMA DE ABAS DE VÍDEO ===== */
.video-tabs-section {
  margin-bottom: 12px;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.video-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.video-tab {
  background: linear-gradient(135deg, var(--glass-blue) 0%, rgba(83, 86, 201, 0.03) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 16px 12px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.video-tab:hover {
  background: linear-gradient(135deg, var(--glass-blue) 0%, rgba(46, 49, 146, 0.3) 100%);
  border-color: var(--primary-light);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.video-tab.active {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
  color: white;
  border-color: var(--primary-light);
  box-shadow: var(--shadow-glow);
}

.tab-icon {
  font-size: 20px;
}

.tab-text {
  font-size: 12px;
  line-height: 1.2;
}

.video-player-section {
  position: relative;
}

.video-container {
  width: 100%;
  height: 280px;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  margin-bottom: 8px;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

/* ===== NOVO SISTEMA DE VÍDEOS COM POPUP ===== */
.video-showcase-section {
  margin-bottom: 12px;
}

.video-showcase-section .section-title {
  margin-bottom: 32px;
  font-size: 1.5rem;
  color: var(--text-primary);
  text-align: center;
}

/* ===== SISTEMA DE VÍDEOS 2X2 ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 12px;
  max-width: calc(100vw - 40px);
  margin-left: auto;
  margin-right: auto;
}

/* Card de vídeo que ocupa largura total (2 colunas) */
.video-card.video-card-fullwidth {
  grid-column: 1 / -1;
}

.video-card {
  background: linear-gradient(135deg, var(--glass-blue) 0%, rgba(83, 86, 201, 0.03) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  padding: 20px;
  overflow: hidden;
}

.video-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary-light);
  box-shadow: 0 8px 32px rgba(46, 49, 146, 0.1);
}

/* ===== ELEMENTOS DE INDUÇÃO DE CLIQUE ===== */
.click-indicator {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.2rem;
  opacity: 0.7;
  animation: cursorPulse 2s ease-in-out infinite;
  z-index: 10;
}

.card-cta {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(46, 49, 146, 0.3);
  transition: all 0.3s ease;
}

.video-card:hover .card-cta {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(46, 49, 146, 0.4);
}

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

.video-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  text-align: center;
}

.video-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ===== MODAL DE VÍDEO ===== */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  animation: modalFadeIn 0.3s ease-out;
}

.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  animation: backdropFadeIn 0.3s ease-out;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  max-height: calc(100vh - 40px);
  background: linear-gradient(135deg, var(--glass-blue) 0%, rgba(83, 86, 201, 0.05) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
  display: flex;
  flex-direction: column;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
}

.modal-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff !important;
  /* Branco para melhor contraste no modal */
}

.modal-close {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

.modal-body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-container-modal {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.video-container-modal iframe,
.video-container-modal video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-description-modal {
  color: #ffffff !important;
  /* Branco para melhor contraste no modal */
  line-height: 1.5;
  text-align: center;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.02);
}

.video-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.nav-btn {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46, 49, 146, 0.3);
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.nav-btn svg {
  width: 16px;
  height: 16px;
}

.video-counter {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 60px;
  text-align: center;
}

/* ===== ANIMAÇÕES DO MODAL ===== */
@keyframes modalFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes backdropFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes cursorPulse {

  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* ===== SISTEMA DE FAQ ===== */
.faq-section {
  width: 100%;
  max-width: none;
  margin: 8px auto;
  padding: 32px 32px 24px 32px;
  border-radius: 20px;
  background: transparent;
  color: #000000;
  text-align: center;
  position: relative;
  overflow: hidden;
}


.faq-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-align: center;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-section:hover {
  transform: translateY(-2px);
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  background: rgba(46, 49, 146, 0.05);
  border-color: var(--primary-light);
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(46, 49, 146, 0.05);
}

.faq-arrow {
  font-size: 0.8rem;
  color: var(--primary-light);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0px;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.faq-answer p {
  padding: 0 20px 20px 20px;
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.5;
}

.video-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
}

.vsl-description {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.4;
}

/* ===== SEÇÃO DE OFERTA ===== */
.offer-card {
  max-width: 400px;
  margin: 1.5rem auto;
  padding: 1.5rem;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.offer-card h3 {
  font-size: 2rem;
  color: #1a1c5e;
  margin-bottom: 0.5rem;
}

.offer-subtitle {
  color: #4B5563;
  margin-bottom: 1rem;
}

.offer-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.offer-features li {
  display: flex;
  align-items: center;
  margin: 0.5rem 0;
}

.offer-features li::before {
  content: '\2713';
  margin-right: 0.5rem;
  color: #10B981;
  transition: transform 0.3s;
}

.offer-features li:hover::before {
  transform: scale(1.2);
}

.cta-button {
  margin-top: 1.25rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #FFF;
  background: linear-gradient(90deg, #5356c9, #1a1c5e);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  animation: pulse-button 1.8s ease-in-out infinite alternate;
}

@keyframes pulse-button {
  from {
    opacity: 1;
  }

  to {
    opacity: 0.8;
  }
}

.exclusive-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, #1a1c5e, #5356c9, #1a1c5e);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: pulse-blue 2s ease-in-out infinite alternate;
}

@keyframes pulse-blue {
  from {
    filter: brightness(1);
  }

  to {
    filter: brightness(1.2);
  }
}



@keyframes siren-glow {
  0% {
    text-shadow: 0 0 6px rgba(255, 255, 0, 0.8);
  }

  100% {
    text-shadow: 0 0 20px rgba(255, 255, 0, 1);
  }
}

@keyframes siren-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse-timer {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

@keyframes wave {
  0% {
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
  }

  50% {
    box-shadow:
      0 12px 35px rgba(0, 123, 255, 0.4),
      inset 0 0 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px) scale(1.02);
  }

  100% {
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
  }
}

/* ===== TEMPORIZADOR ===== */
.timer-bar,
.coupon-timer {
  background: linear-gradient(90deg, #FF3B30 0%, #FF6B6B 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-align: center;
  animation: pulse-timer 2s infinite;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
}

/* ===== BOTÃO COM SIRENE ===== */
.cta-primary.with-siren {
  background: var(--primary-blue);
  color: #fff;
  padding: 14px 0;
  border-radius: 12px;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  width: 100%;
  margin: 16px auto 0 auto;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-primary.with-siren::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cta-primary.with-siren:hover::before {
  left: 100%;
}

.cta-primary.with-siren:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.coupon-text {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
  display: block;
}

.coupon-timer {
  display: block;
  width: 100%;
  margin: 18px 0;
  padding: 10px 16px;
  box-sizing: border-box;
  border-radius: 8px;
  background: linear-gradient(90deg, #FF3B30 0%, #FF6B6B 100%);
  color: #FFF;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  animation: pulse-timer 1.5s ease-in-out infinite;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.siren-icon {
  font-size: 26px;
  margin-left: 8px;
  position: relative;
  animation: siren-glow 1s infinite alternate,
    siren-spin 1.2s infinite linear;
}
}

.coupon-details {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  display: block;
}


.timer-icon {
  color: var(--accent-orange);
  animation: pulse 2s infinite;
}

.timer-text {
  font-weight: 600;
}

/* ===== MODAL DE DEPOIMENTOS ===== */



/* ===== QUIZ STYLES (MANTIDOS) ===== */
.quiz-container {
  text-align: center;
  width: 85vw;
  height: 85vh;
  max-width: 100vw;
  max-height: 100vh;
  margin: 0 auto;
  padding: 24px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ===== QUIZ STYLES MELHORADOS ===== */
.progress-container {
  width: 100%;
  padding: 20px 20px 16px 20px;
  border-bottom: 1px solid rgba(46, 49, 146, 0.1);
  margin-bottom: 24px;
}

.progress-advanced {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.progress-track {
  width: 100%;
  height: 10px;
  background: rgba(46, 49, 146, 0.1);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(46, 49, 146, 0.1);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-light) 100%);
  border-radius: 15px;
  transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  box-shadow: 0 2px 8px rgba(46, 49, 146, 0.3);
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: progressShimmer 3s ease-in-out infinite;
}

@keyframes progressShimmer {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.step-indicator {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* ===== CARD DE PERCENTUAL DINÂMICO ===== */
.percentage-card {
  background: linear-gradient(135deg, var(--glass-blue) 0%, rgba(77, 166, 255, 0.03) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  width: fit-content;
}

.percentage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 49, 146, 0.4), transparent);
}

.percentage-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.percentage-value.updating {
  transform: scale(1.1);
}


.quiz-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
}

.question-section {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  height: 100%;
  width: 100%;
}

.question-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.3;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.options-grid {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  width: 100%;
  gap: 16px;
}

.option-card {
  background: linear-gradient(135deg, var(--glass-blue) 0%, rgba(83, 86, 201, 0.03) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: left;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.option-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.3s;
}

.option-card:hover::before {
  left: 100%;
}

.option-card:hover {
  background: linear-gradient(135deg, var(--glass-blue) 0%, rgba(46, 49, 146, 0.3) 100%);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.option-card.selected {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
  color: white;
  border-color: var(--primary-light);
  box-shadow: var(--shadow-glow);
}

.option-icon {
  font-size: 2rem;
  margin: 0;
  flex-shrink: 0;
}

.option-text {
  flex: 1;
}

.option-text strong {
  font-size: 1.3rem;
  font-weight: bold;
  display: block;
  margin-bottom: 2px;
  line-height: 1.2;
}

.option-desc {
  font-size: 1.05rem;
  opacity: 0.8;
  line-height: 1.3;
}


/* ===== LOADING STYLES ===== */
.loading-advanced {
  text-align: center;
}

.ai-animation {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
}

.brain-icon {
  font-size: 48px;
  animation: brainPulse 2s infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes brainPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  border: 2px solid var(--primary-light);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulseRing 2s infinite;
}

.pulse-ring.delay-1 {
  animation-delay: 0.5s;
}

.pulse-ring.delay-2 {
  animation-delay: 1s;
}

@keyframes pulseRing {
  0% {
    width: 80px;
    height: 80px;
    opacity: 1;
  }

  100% {
    width: 120px;
    height: 120px;
    opacity: 0;
  }
}

.loading-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.loading-icon {
  color: #2e3192 !important;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.loading-bar-container {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 32px;
}

.loading-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-light) 100%);
  border-radius: 4px;
  transition: width 0.3s ease;
  position: relative;
}

.loading-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: loadingShimmer 1.5s infinite;
}

@keyframes loadingShimmer {
  0% {
    transform: translateX(-100%);
  }

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

.loading-steps {
  display: grid;
  gap: 16px;
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.step.active {
  color: var(--text-primary);
}

.step::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: var(--transition-smooth);
}

.step.active::before {
  background: var(--primary-light);
  box-shadow: 0 0 10px var(--primary-light);
}

/* ===== RESULT STYLES ===== */
.result-analysis {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  text-align: center;
  padding: 30px;
  margin: 10px auto 20px auto;
  max-width: 800px;
}

@keyframes urgencyPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}

.compatibility-display {
  margin-bottom: 32px;
}

.compatibility-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.compatibility-icon {
  width: 220px;
  /* Largura aumentada significativamente */
  height: 68.75px;
  /* Altura reduzida para proporção retangular */
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(46, 49, 146, 0.3));
}

.compatibility-header {
  margin-bottom: 16px;
}

.compatibility-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.compatibility-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
}

.compatibility-bar-container {
  position: relative;
  margin-bottom: 8px;
}

.compatibility-bar-track {
  width: 100%;
  height: 12px;
  background: rgba(46, 49, 146, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.compatibility-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 1s ease;
  position: relative;
}

.compatibility-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

.compatibility-percentage {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  font-weight: 700;
  color: white;
}

.compatibility-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-muted);
}

.personal-analysis {
  text-align: left;
  margin-bottom: 32px;
}

.personal-analysis h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.analysis-insights {
  display: grid;
  gap: 16px;
}

.insight-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.insight-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.insight-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

.insight-item strong {
  color: var(--text-primary);
}

.routine-integration {
  text-align: left;
  margin-bottom: 32px;
}

.routine-integration h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.routine-timeline {
  display: grid;
  gap: 16px;
}

.routine-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.step-time {
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  min-width: 80px;
}

.step-action {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.step-action strong {
  color: var(--text-primary);
}

.social-proof {
  margin-bottom: 32px;
}


.irresistible-offer {
  text-align: center;
  margin-bottom: 24px;
}

.offer-title-animated {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.offer-highlight {
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
}

.offer-main-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.offer-price {
  margin-bottom: 20px;
}

.new-price {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #2e3192 !important;
  margin-bottom: 4px;
}

.discount {
  font-size: 12px;
  color: var(--text-secondary);
}

.offer-guarantee {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.4;
}

.offer-cta {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-glow);
}

.offer-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.cta-subtitle {
  display: block;
  font-size: 12px;
  opacity: 0.8;
  margin-top: 4px;
}

.final-ctas {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.cta-primary {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
  color: white;
  border: none;
  border-radius: 16px;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-glow);
  text-align: center;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.cta-secondary {
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  border-radius: 16px;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.urgency-timer {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
  color: var(--text-secondary);
  padding: 16px;
  border-radius: 12px;
  border: 2px solid rgba(220, 53, 69, 0.2);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.urgency-timer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #dc3545, transparent);
}

.urgency-timer span {
  font-weight: 700;
  color: #dc3545;
  font-size: 18px;
}

/* ===== TIMER DO TOPO ===== */
.urgency-timer-top {
  background: linear-gradient(135deg, #ff4757, #ff3742);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
  animation: pulse-timer 2s infinite;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.urgency-timer-top span {
  font-weight: 700;
  font-size: 18px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes pulse-timer {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
  }

  50% {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
  }
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: var(--shadow-md);
  position: relative;
  font-style: italic;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
  content: '"';
  font-size: 4em;
  color: var(--primary-blue);
  position: absolute;
  top: 10px;
  left: 15px;
  opacity: 0.6;
  line-height: 1;
}

.testimonial-card span {
  display: block;
  font-size: 1.1em;
  line-height: 1.6;
  margin-left: 40px;
  margin-bottom: 10px;
}

.testimonial-card cite {
  display: block;
  text-align: right;
  font-size: 0.95em;
  color: var(--text-secondary);
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
}

/* ===== SEÇÃO DE VÍDEO VSL ===== */
.vsl-section {
  margin: 32px 0;
  text-align: center;
}

.vsl-section h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.vsl-container {
  background: linear-gradient(135deg, var(--glass-blue) 0%, rgba(77, 166, 255, 0.08) 100%);
  border: 2px solid var(--primary-blue);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.vsl-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

/* ===== RESPONSIVO PARA VSL ===== */
@media (max-width: 767px) {
  .vsl-section h4 {
    font-size: 18px;
  }

  .vsl-description {
    font-size: 14px;
  }

  .vsl-container {
    padding: 20px;
  }
}

/* ===== RESPONSIVO PARA TIMER DO TOPO ===== */
@media (max-width: 768px) {
  .urgency-timer-top {
    font-size: 14px;
    padding: 10px 20px;
    margin: 15px 0;
  }

  .urgency-timer-top span {
    font-size: 16px;
  }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.whatsapp-text {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  animation: floatText 3s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@keyframes floatText {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: whatsappPulse 2s infinite;
  transition: var(--transition-smooth);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  color: white;
}

/* ===== MODAL DE PLANOS ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal.modal-active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.modal-content {
  background: linear-gradient(135deg, var(--glass-blue) 0%, rgba(77, 166, 255, 0.03) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 32px;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: var(--transition-smooth);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.modal.modal-active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.plans-header {
  text-align: center;
  margin-bottom: 32px;
}

.plans-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.plans-header p {
  color: var(--text-secondary);
  font-size: 16px;
}

.plans-comparison {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.plan-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  transition: var(--transition-smooth);
}

.plan-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.plan-price {
  text-align: center;
  margin-bottom: 16px;
}

.old {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.new {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #2e3192 !important;
}

.plan-savings {
  text-align: center;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 600;
}

.plan-features {
  margin-bottom: 24px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.feature:last-child {
  margin-bottom: 0;
}

.plan-cta {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-glow);
}

.plan-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.guarantee-section {
  text-align: center;
  padding: 20px;
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.2);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

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

.close-and-redirect-btn {
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.close-and-redirect-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ===== RESPONSIVE DESIGN ===== */
/* Media queries específicas para mobile com ajustes do quiz-container */
@media (max-width: 844px) {
  .quiz-container {
    width: 90vw;
    height: 90vh;
    padding: 20px;
  }

  .question-section {
    max-width: 520px;
  }

  .options-grid {
    max-width: 520px;
    gap: 14px;
  }

  .progress-container {
    padding: 16px 16px 12px 16px;
    margin-bottom: 20px;
  }

  .progress-advanced {
    max-width: 520px;
    gap: 10px;
  }

  .progress-track {
    height: 8px;
  }

  .step-indicator {
    font-size: 13px;
  }

  .percentage-card {
    padding: 5px 12px;
  }

  .percentage-value {
    font-size: 15px;
  }
}

.option-card {
  flex: 1;
}

.question-title {
  font-size: 16px;
  margin-bottom: 20px;
}

.option-card {
  padding: 14px;
  min-height: 65px;
  gap: 10px;
}

.option-icon {
  font-size: 1.8rem;
}

.option-text strong {
  font-size: 1.2rem;
}

.option-desc {
  font-size: 1rem;
}
}

@media (max-width: 480px) {
  .quiz-container {
    width: 95vw;
    height: 95vh;
    padding: 16px;
  }

  .question-section {
    max-width: 450px;
  }

  .options-grid {
    max-width: 450px;
    gap: 12px;
  }

  .progress-container {
    padding: 14px 14px 10px 14px;
    margin-bottom: 16px;
  }

  .progress-advanced {
    max-width: 450px;
    gap: 8px;
  }

  .progress-track {
    height: 7px;
  }

  .step-indicator {
    font-size: 12px;
  }

  .percentage-card {
    padding: 4px 10px;
  }

  .percentage-value {
    font-size: 14px;
  }
}

.option-card {
  flex: 1;
}

.question-title {
  font-size: 15px;
  margin-bottom: 16px;
}

.option-card {
  padding: 12px;
  min-height: 60px;
  gap: 8px;
}

.option-icon {
  font-size: 1.6rem;
}

.option-text strong {
  font-size: 1.1rem;
}

.option-desc {
  font-size: 0.9rem;
}

}

@media (max-width: 767px) {
  .container {
    padding: 16px;
  }


  .glass-card {
    padding: 24px;
  }

  .hero-title {
    font-size: 24px;
  }

  .percentage-card {
    padding: 4px 10px;
  }

  .percentage-value {
    font-size: 13px;
  }

  /* Centralizar percentual na barra de compatibilidade */
  .compatibility-percentage {
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    display: flex;
    align-items: center;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: calc(100vw - 32px);
  }

  .click-indicator {
    font-size: 1rem;
    top: 8px;
    right: 8px;
  }

  .card-cta {
    padding: 4px 6px;
    font-size: 0.5rem;
    margin-bottom: 8px;
    white-space: nowrap;
    letter-spacing: 0.3px;
    border-radius: 12px;
  }

  .video-card {
    padding: 14px;
  }

  .video-title {
    font-size: 0.75rem;
    text-align: center !important;
    display: block;
    width: 100%;
  }

  .video-desc {
    font-size: 0.75rem;
  }

  .video-card {
    border-radius: 14px;
  }

  .faq-section {
    width: 100%;
    max-width: none;
    padding: 24px 24px 20px 24px;
    margin: 12px auto;
    box-sizing: border-box;
  }

  .faq-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .faq-answer p {
    padding: 0 16px 16px 16px;
    font-size: 0.85rem;
  }

  .video-preview {
    height: 140px;
  }

  .play-button {
    font-size: 2rem;
  }

  .video-info {
    padding: 12px;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .video-title {
    font-size: 1rem;
  }

  .video-desc {
    font-size: 0.8rem;
  }

  /* Modal responsivo */
  .video-modal.active {
    padding: 5px;
    align-items: center;
  }

  .modal-content {
    width: 100%;
    max-width: none;
    max-height: calc(100vh - 10px);
    border-radius: 12px;
  }

  .modal-header {
    padding: 12px 16px;
  }

  .modal-title {
    font-size: 1rem;
  }

  .modal-body {
    padding: 8px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .video-container-modal {
    height: auto;
    padding-bottom: 56.25%;
    min-height: 200px;
    border-radius: 8px;
    overflow: hidden;
  }

  .video-description-modal {
    font-size: 0.85rem;
    padding: 8px 4px;
    display: none; /* Esconder descrição no mobile para mais espaço */
  }

  .modal-footer {
    padding: 10px 8px;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
  }

  .video-navigation {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }

  .nav-btn {
    padding: 8px 6px;
    font-size: 0.7rem;
    white-space: nowrap;
    justify-content: center;
    box-sizing: border-box;
    flex-shrink: 1;
  }

  .nav-btn svg {
    width: 14px;
    height: 14px;
  }

  .nav-btn.prev,
  .nav-btn.next {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .video-counter {
    font-size: 0.75rem;
    min-width: 40px;
    flex: 0 0 auto;
    text-align: center;
  }


  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-btn {
    width: 55px;
    height: 55px;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 600px;
  }

  .hero-title {
    font-size: 32px;
  }

  .price-value {
    font-size: 36px;
  }
}

/* ===== CARD DE OFERTA ===== */
.offer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 360px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: #FFFFFF;
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.exclusive-title {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1c5e;
  background: linear-gradient(90deg, #5356c9, #1a1c5e);
  -webkit-background-clip: text;
  color: transparent;
  animation: pulse-blue 2s ease-in-out infinite alternate;
  text-align: center;
}

@keyframes pulse-blue {
  from {
    filter: brightness(1);
  }

  to {
    filter: brightness(1.3);
  }
}

.offer-price {
  font-size: 1.75rem;
  color: #1a1c5e;
  margin: 0;
}

.offer-features li {
  justify-content: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: #374151;
}

.offer-cta-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: #5356c9;
  margin-top: 1rem;
  text-align: center;
}

.offer-subtitle {
  font-size: 1rem;
  color: #6B7280;
  margin: 0;
  text-align: center;
}

.offer-features {
  width: 100%;
  padding: 0;
  margin: 1rem 0;
  list-style: none;
}

.offer-features li {
  font-size: 1rem;
  color: #374151;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.3s;
}

.offer-features li:hover {
  background: rgba(83, 86, 201, 0.1);
  border-radius: 8px;
}


@media (max-width: 480px) {
  .offer-card {
    max-width: 90%;
    padding: 1rem;
  }

  .exclusive-title {
    font-size: 1.5rem;
  }

  .offer-price {
    font-size: 1.5rem;
  }

  .offer-section-improved {
    padding: 20px 20px 16px 20px;
    margin: 12px auto;
  }

  .offer-section-improved::after {
    font-size: 0.65em;
    height: 35px;
  }

  .cta-primary.with-siren {
    margin: 12px auto 0 auto;
  }
}

/* ===== OFERTA EXCLUSIVA - FAIXA PREMIUM E INTEGRADA ===== */
.offer-section-improved {
  width: 100%;
  max-width: none;
  margin: 8px auto;
  padding: 32px 32px 24px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(46, 49, 146, 0.25);
  background: linear-gradient(135deg, var(--glass-blue) 0%, rgba(83, 86, 201, 0.03) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #000000;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.offer-section-improved::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 49, 146, 0.4), transparent);
}

.offer-section-improved::after {
  content: '✨ OFERTA EXCLUSIVA';
  position: absolute;
  top: 0;
  left: 50%;
  right: auto;
  width: 100%;
  height: 40px;
  background: linear-gradient(135deg, #2e3192 0%, #1a1c5e 100%);
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.9em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  z-index: 1;
  animation: faixaGlow 2s ease-in-out infinite alternate;
  transform: translateX(-50%);
}

.offer-section-improved:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}


@keyframes faixaGlow {
  0% {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 10px rgba(46, 49, 146, 0.3);
  }

  100% {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 20px rgba(46, 49, 146, 0.6);
  }
}

.offer-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #000000;
  margin-bottom: 20px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
  animation: titlePulse 2s ease-in-out infinite;
  text-shadow: 0 2px 8px rgba(46, 49, 146, 0.3);
}

@keyframes titlePulse {

  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 2px 8px rgba(46, 49, 146, 0.3);
  }

  50% {
    transform: scale(1.05);
    text-shadow: 0 2px 15px rgba(46, 49, 146, 0.5);
  }
}

.price-highlight {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
  margin-top: 32px;
  margin-bottom: 8px;
  animation: priceFloat 2.5s ease-in-out infinite;
}

@keyframes priceFloat {

  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-5px) scale(1.02);
  }
}

.price-highlight .currency {
  font-size: 1.6em;
  color: #2e3192;
}

.price-highlight .main-price {
  font-size: 3em;
  color: #2e3192;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(46, 49, 146, 0.4);
  animation: priceGlow 2s ease-in-out infinite;
}

.price-highlight .per-month {
  font-size: 1.1em;
  color: #2e3192;
  opacity: 0.9;
}

@keyframes priceGlow {

  0%,
  100% {
    text-shadow: 0 2px 8px rgba(46, 49, 146, 0.4);
    transform: scale(1);
  }

  50% {
    text-shadow: 0 2px 15px rgba(46, 49, 146, 0.7);
    transform: scale(1.02);
  }
}

.price-tagline {
  font-size: 0.95em;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 24px;
}

.benefits-list-improved {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}

.benefits-list-improved li {
  display: flex;
  align-items: center;
  font-size: 1em;
  margin-bottom: 12px;
}

.benefits-list-improved .benefit-icon {
  margin-right: 8px;
  font-size: 1.2em;
  color: #1a1c5e;
}

.benefits-list-improved .benefit-text strong {
  color: #1a1c5e;
}

.final-cta {
  font-size: 1.1em;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  display: inline-block;
}

.final-cta:hover {
  color: #2e3192;
  transform: translateY(-1px);
  text-shadow: 0 2px 4px rgba(46, 49, 146, 0.2);
}

@media (max-width: 600px) {
  .offer-section-improved {
    width: 100%;
    max-width: none;
    padding: 24px 24px 20px 24px;
    margin: 12px auto;
    box-sizing: border-box;
  }

  .exclusive-title {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .price-highlight {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .price-highlight .main-price {
    font-size: 2.8rem;
  }

  .price-tagline {
    font-size: 0.9rem;
  }

  .benefits-list-improved {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }

  .benefits-list-improved li {
    font-size: 0.95rem;
    justify-content: flex-start;
  }

  .final-cta {
    font-size: 1rem;
    margin-top: 12px;
  }
}

/* ===== CONTAINER DE CARDS ===== */
.cards-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ===== CARDS DE BENEFÍCIOS EM GRID ===== */
.benefits-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.benefit-card {
  background: transparent;
  border: none;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  animation: floatCard 3s ease-in-out infinite;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translateY(-10px) scale(1.02);
    opacity: 1;
  }
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(46, 49, 146, 0.05), transparent);
  transition: left 0.3s;
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px) scale(1.05);
  animation-duration: 1.5s;
}

.benefit-icon {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
  color: var(--primary-blue);
}

.benefit-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.benefit-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
}

.benefit-description {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.3;
}

/* Responsividade para os cards de benefícios */
@media (max-width: 600px) {
  .benefits-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 20px 0;
  }

  .benefit-card {
    padding: 14px;
  }

  .benefit-icon {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .benefit-title {
    font-size: 13px;
  }

  .benefit-description {
    font-size: 11px;
  }
}

/* ===== SISTEMA DE ALTERNÂNCIA PROBLEMAS/SOLUÇÕES ===== */
.problems-solutions-toggle {
  width: 100%;
  margin: 32px 0;
}

/* Botões de Controle */
.toggle-buttons {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(46, 49, 146, 0.05) 0%, rgba(83, 86, 201, 0.02) 100%);
  border-radius: 16px;
  padding: 4px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.toggle-btn {
  flex: 1;
  background: transparent;
  border: none;
  border-radius: 12px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
  position: relative;
  overflow: hidden;
}

.toggle-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.3s;
}

.toggle-btn:hover::before {
  left: 100%;
}

.toggle-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.toggle-btn.active {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(46, 49, 146, 0.3);
}

.toggle-btn.active:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-blue) 100%);
  box-shadow: 0 6px 20px rgba(46, 49, 146, 0.4);
}

.btn-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* Animação para ícone de problemas (alerta piscando) */
.toggle-btn[data-content="problems"] .btn-icon {
  animation: alertPulse 2s infinite;
}

/* Animação para ícone de soluções (brilho mágico) */
.toggle-btn[data-content="solutions"] .btn-icon {
  animation: magicSparkle 2s infinite;
}

@keyframes alertPulse {

  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }

  50% {
    transform: scale(1.1);
    filter: brightness(1.3);
  }
}

@keyframes magicSparkle {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
    filter: brightness(1) drop-shadow(0 0 2px #ffd700);
  }

  50% {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.4) drop-shadow(0 0 8px #ffd700);
  }
}

.btn-text {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Tooltips para acessibilidade */
.toggle-btn {
  position: relative;
}

.toggle-btn::after {
  content: attr(title);
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.toggle-btn:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .toggle-btn::after {
    display: none;
    /* Esconder tooltips no mobile */
  }
}

/* Container Dinâmico */
.dynamic-container {
  position: relative;
  min-height: 500px;
  background: transparent !important;
  border-radius: 24px;
  border: none !important;
  backdrop-filter: none !important;
  overflow: hidden;
  box-shadow: none !important;
}

/* Painéis de Conteúdo */
.content-panel {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 32px;
  width: 100%;
  background: transparent !important;
}

.content-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  background: transparent !important;
}

.content-panel.fade-out {
  opacity: 0;
  transform: translateY(-20px);
}

/* Cabeçalho do Painel */
.panel-header {
  text-align: center;
  margin-bottom: 32px;
}

.panel-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

/* Destaque para palavras específicas nos títulos */
.highlight-word {
  position: relative;
  font-weight: 800;
  transition: all 0.3s ease;
}

.problems-word {
  color: #ff4757;
  text-shadow: 0 0 8px rgba(255, 71, 87, 0.3);
  animation: problemsPulse 2s infinite;
}

.chatnexus-word {
  color: #2e3192;
  text-shadow: 0 0 8px rgba(46, 49, 146, 0.3);
  animation: chatnexusGlow 2s infinite;
}

@keyframes problemsPulse {

  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 0 8px rgba(255, 71, 87, 0.3);
  }

  50% {
    transform: scale(1.05);
    text-shadow: 0 0 12px rgba(255, 71, 87, 0.5);
  }
}

@keyframes chatnexusGlow {

  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 0 8px rgba(46, 49, 146, 0.3);
  }

  50% {
    transform: scale(1.05);
    text-shadow: 0 0 12px rgba(46, 49, 146, 0.5);
  }
}

.panel-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Grid de Cards do Painel */
.panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

/* Cards do Painel - Base */
.panel-card {
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  min-height: 90px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  /* Background será definido pelos seletores específicos */
}

/* Cards de Problemas - Gradiente Vermelho Ultra Transparente + Texto Preto */
.panel-card[data-panel="problems"] {
  background: linear-gradient(135deg, rgba(255, 170, 170, 0.20) 0%, rgba(255, 204, 204, 0.20) 100%) !important;
  color: #2c3e50 !important;
}

.panel-card[data-panel="problems"] .card-title {
  color: #ff4757 !important;
}

.panel-card[data-panel="problems"] .card-description {
  color: #5a6c7d !important;
}

/* Cards de Soluções - Gradiente Verde Ultra Transparente + Texto Preto */
.panel-card[data-panel="solutions"] {
  background: linear-gradient(135deg, rgba(136, 240, 184, 0.20) 0%, rgba(168, 245, 208, 0.20) 100%) !important;
  color: #2c3e50 !important;
}

.panel-card[data-panel="solutions"] .card-title {
  color: #10b981 !important;
}

.panel-card[data-panel="solutions"] .card-description {
  color: #5a6c7d !important;
}

/* Hover para Cards de Problemas */
.panel-card[data-panel="problems"]:hover {
  background: linear-gradient(135deg, rgba(255, 204, 204, 0.45) 0%, rgba(255, 170, 170, 0.45) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 170, 170, 0.3);
  color: #2c3e50 !important;
}

.panel-card[data-panel="problems"]:hover .card-title {
  color: #ff4757 !important;
}

.panel-card[data-panel="problems"]:hover .card-description {
  color: #5a6c7d !important;
}

/* Hover para Cards de Soluções */
.panel-card[data-panel="solutions"]:hover {
  background: linear-gradient(135deg, rgba(168, 245, 208, 0.45) 0%, rgba(136, 240, 184, 0.45) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(168, 245, 208, 0.3);
  color: #2c3e50 !important;
}

.panel-card[data-panel="solutions"]:hover .card-title {
  color: #10b981 !important;
}

.panel-card[data-panel="solutions"]:hover .card-description {
  color: #5a6c7d !important;
}

/* Ícones dos Cards - Apenas Ícones (Sem Fundo) */
.card-icon {
  font-size: 2rem;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border-radius: 0;
  flex-shrink: 0;
  padding: 0;
  box-shadow: none !important;
}

/* Conteúdo dos Cards */
.card-content {
  flex: 1;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-description {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .toggle-buttons {
    flex-direction: column;
    gap: 8px;
    padding: 8px;
  }

  .toggle-btn {
    padding: 14px 16px;
    justify-content: flex-start;
    gap: 12px;
  }

  .btn-text {
    font-size: 14px;
  }

  .content-panel {
    padding: 24px 20px;
  }

  .panel-title {
    font-size: 1.2rem;
  }

  .panel-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .panel-card {
    padding: 20px;
  }

  .card-icon {
    font-size: 1.8rem;
  }
}

/* ===== TABLETS E TELAS MÉDIAS ===== */
@media (max-width: 768px) and (min-width: 481px) {
  .modal-footer {
    padding: 12px 20px;
  }

  .video-navigation {
    gap: 12px;
  }

  .nav-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .nav-btn.prev,
  .nav-btn.next {
    flex: 1 1 0;
    max-width: 150px;
  }

  .video-counter {
    font-size: 0.9rem;
    min-width: 60px;
  }
}

/* ===== SMARTPHONES MÉDIOS (iPhone 12, Galaxy S21) ===== */
@media (max-width: 480px) and (min-width: 376px) {
  .modal-footer {
    padding: 10px 12px;
  }

  .video-navigation {
    gap: 8px;
  }

  .nav-btn {
    padding: 8px 8px;
    font-size: 0.7rem;
  }

  .nav-btn.prev,
  .nav-btn.next {
    flex: 1 1 0;
    min-width: 0;
  }

  .video-counter {
    font-size: 0.75rem;
    min-width: 45px;
  }
}

/* ===== SMARTPHONES PEQUENOS (iPhone SE, Galaxy S20) ===== */
@media (max-width: 375px) and (min-width: 361px) {
  .modal-footer {
    padding: 8px 8px;
  }

  .video-navigation {
    gap: 6px;
  }

  .nav-btn {
    padding: 7px 6px;
    font-size: 0.65rem;
  }

  .nav-btn svg {
    width: 13px;
    height: 13px;
  }

  .nav-btn.prev,
  .nav-btn.next {
    flex: 1 1 0;
    min-width: 0;
  }

  .video-counter {
    font-size: 0.7rem;
    min-width: 40px;
  }
}

/* ===== SMARTPHONES MUITO PEQUENOS (iPhone 5, Galaxy Fold) ===== */
@media (max-width: 360px) {
  .modal-footer {
    padding: 6px 4px;
  }

  .video-navigation {
    gap: 4px;
  }

  .nav-btn {
    padding: 6px 4px;
    font-size: 0.6rem;
    gap: 2px;
  }

  .nav-btn svg {
    width: 11px;
    height: 11px;
  }

  .nav-btn.prev,
  .nav-btn.next {
    flex: 1 1 0;
    min-width: 0;
  }

  .video-counter {
    font-size: 0.65rem;
    min-width: 32px;
  }
}

/* ===== ESTILOS DO CTA DE TESTEMUNHO (PÓS-QUIZ) ===== */

/* 1. Bloco de Prova Social (Testemunho) */
.social-proof {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 24px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.testimonial-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
  text-align: center;
}

.testimonial-quote {
  margin: 0;
  padding: 0;
  border-left: 3px solid var(--primary-blue);
  padding-left: 16px;
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0 0 8px 0;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  font-style: normal;
}

/* 2. Novo Stack de Botões de Ação */
.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 500px;
  /* Limita a largura dos botões */
  margin: 0 auto 16px auto;
}

/* Botão Primário (Azul) - Reutiliza cta-primary */
#ctaInsightsButton {
  /* Herda de .cta-primary */
  padding: 18px 24px;
  font-size: 18px;
  line-height: 1.4;
}

.cta-main-text {
  display: block;
  font-weight: 700;
}

.cta-sub-text {
  display: block;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.8;
  margin-top: 4px;
}

/* Botão Secundário (Ver Planos) */
.cta-secondary {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 8px;
}

.cta-secondary:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

/* Barra de Escassez (Vagas) */
.scarcity-bar {
  background: linear-gradient(90deg, #dc3545, #c92a3a);
  color: white;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 12px;
  font-size: 16px;
}

/* Barra de Timer (Mantida) */
.timer-bar.coupon-timer {
  margin-top: 0;
  /* Reset de margem */
  border-radius: 10px;
  font-size: 16px;
  padding: 12px;
}

/* Responsividade */
@media (max-width: 767px) {
  .social-proof {
    padding: 16px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .testimonial-author {
    font-size: 13px;
  }

  #ctaInsightsButton {
    font-size: 16px;
    padding: 16px;
  }

  .cta-sub-text {
    font-size: 12px;
  }

  .cta-secondary {
    font-size: 14px;
  }

  .scarcity-bar,
  .timer-bar.coupon-timer {
    font-size: 14px;
    padding: 10px;
  }
}

/* ===== ESTILOS DO CTA DE TESTEMUNHO (PÓS-QUIZ) - LIGHT THEME ===== */

/* 1. Bloco de Prova Social (Testemunho) */
.social-proof {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 24px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.testimonial-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
  text-align: center;
}

.testimonial-quote {
  margin: 0;
  padding: 0;
  border-left: 3px solid var(--primary-blue);
  padding-left: 16px;
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0 0 8px 0;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  font-style: normal;
}

/* 2. Novo Stack de Botões de Ação */
.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 500px;
  /* Limita a largura dos botões */
  margin: 0 auto 16px auto;
}

/* Botão Primário (Azul) - Reutiliza cta-primary */
#ctaInsightsButton {
  /* Herda de .cta-primary */
  padding: 18px 24px;
  font-size: 18px;
  line-height: 1.4;
}

.cta-main-text {
  display: block;
  font-weight: 700;
}

.cta-sub-text {
  display: block;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.8;
  margin-top: 4px;
}

/* Botão Secundário (Ver Planos) */
.cta-secondary {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 8px;
}

.cta-secondary:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

/* Barra de Escassez (Vagas) */
.scarcity-bar {
  background: linear-gradient(90deg, #dc3545, #c92a3a);
  color: white;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 12px;
  font-size: 16px;
}

/* Barra de Timer (Mantida) */
.timer-bar.coupon-timer {
  margin-top: 0;
  /* Reset de margem */
  border-radius: 10px;
  font-size: 16px;
  padding: 12px;
}

/* Responsividade */
@media (max-width: 767px) {
  .social-proof {
    padding: 16px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .testimonial-author {
    font-size: 13px;
  }

  #ctaInsightsButton {
    font-size: 16px;
    padding: 16px;
  }

  .cta-sub-text {
    font-size: 12px;
  }

  .cta-secondary {
    font-size: 14px;
  }

  .scarcity-bar,
  .timer-bar.coupon-timer {
    font-size: 14px;
    padding: 10px;
  }
}