:root {
  --color-blue: #1F5FAF;
  --color-orange: #F58220;
  --color-green: #4CAF50;
  --color-bg: #F9FAFB;
  --color-text-dark: #1f2937;
  --color-text-light: #6b7280;
  --radius-card: 16px;
  --radius-pill: 30px;
  --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.05);
  --shadow-button: 0 4px 14px rgba(245, 130, 32, 0.4);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--color-blue);
  line-height: 1.3;
}

#app {
  max-width: 600px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  background: white;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
}

.page {
  display: none;
  flex-direction: column;
  padding: 40px 24px;
  min-height: 100vh;
  animation: fadeIn 0.4s ease-out;
}

.page.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-card);
  margin-bottom: 32px;
  box-shadow: var(--shadow-card);
}

.title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.subtitle {
  font-size: 16px;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: 24px;
}

.text-left {
  text-align: left !important;
}

.options-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-bottom: 32px;
}

.option-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-card);
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.option-card:hover {
  border-color: var(--color-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 95, 175, 0.1);
}

.info-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-card);
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.option-card.selected {
  background-color: var(--color-blue);
  border-color: var(--color-blue);
  color: white;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 18px 24px;
  border-radius: var(--radius-pill);
  background-color: var(--color-orange);
  color: white;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: var(--shadow-button);
  transition: all 0.3s ease;
}

.btn-animated {
  animation: breathing 2.5s infinite ease-in-out;
}

@keyframes breathing {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 14px rgba(245, 130, 32, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(245, 130, 32, 0.6);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 14px rgba(245, 130, 32, 0.4);
  }
}

.btn:active {
  transform: scale(0.98) !important;
}

.bullet-points {
  list-style: none;
  margin: 16px 0 32px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bullet-points li {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
}

.bullet-points li::before {
  content: '✔';
  color: var(--color-green);
  font-size: 20px;
  margin-right: 12px;
}

.mt-auto {
  margin-top: auto;
}

.mb-8 {
  margin-bottom: 32px;
}

.mt-4 {
  margin-top: 16px;
}

.center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 16px;
}

/* Global Progress Bar */
.quiz-progress-container {
  width: 100%;
  height: 6px;
  background-color: #E5E7EB;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.quiz-progress-bar {
  height: 100%;
  background-color: var(--color-blue);
  transition: width 0.4s ease;
}

/* Footer */
.quiz-footer {
  text-align: center;
  padding: 32px 24px 24px;
  margin-top: auto;
}

.quiz-footer p {
  font-size: 13px;
  color: var(--color-text-light);
  margin: 0;
}

/* Pre-Sales Page specifics */
.pre-sales-block {
  width: 100%;
}

.small-text-blue {
  color: var(--color-blue);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.progress-bar-container {
  width: 100%;
  height: 8px;
  background-color: #E5E7EB;
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background-color: var(--color-blue);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.authority-card {
  background-color: #EEF5FB;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  width: 100%;
}

.authority-title {
  font-size: 22px;
  margin-bottom: 8px;
}

.authority-subtitle {
  font-size: 15px;
  color: var(--color-text-dark);
  margin-bottom: 20px;
  font-weight: 500;
}

.authority-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.authority-list li {
  font-size: 15px;
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.authority-list li::before {
  content: "•";
  color: var(--color-blue);
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: -2px;
}

.authority-text {
  font-size: 15px;
  line-height: 1.6;
}

.green-title {
  color: var(--color-green);
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
}

.emotional-relief {
  width: 100%;
}

.emotional-relief p {
  font-size: 17px;
  line-height: 1.5;
}

.transition-block {
  width: 100%;
}

.transition-block p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.w-100 {
  width: 100%;
}

.w-90 {
  width: 90%;
  max-width: 400px;
}

.subtext-cta {
  font-size: 13px;
  color: var(--color-text-light);
  margin-top: 12px;
}

/* --- PREMIUM SALES PAGE SPECIFICS --- */
.sales-page-premium {
  padding: 0 !important;
  /* Reset padding to handle sections */
  background: white;
}

.sales-section {
  padding: 48px 24px;
  width: 100%;
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-light-blue {
  background-color: #EEF5FB;
}

.mt-8 {
  margin-top: 32px;
}

.mt-12 {
  margin-top: 48px;
}

.mb-8 {
  margin-bottom: 32px;
}

.pt-8 {
  padding-top: 32px;
}

.pb-12 {
  padding-bottom: 48px;
}

/* Block 1: Hero */
.top-accent-line {
  width: 60px;
  height: 4px;
  background-color: var(--color-blue);
  border-radius: 4px;
  margin: 0 auto 24px auto;
}

.premium-title {
  font-size: 32px;
  line-height: 1.3;
  color: var(--color-blue);
  text-align: center;
  margin-bottom: 16px;
}

.premium-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-light);
  text-align: center;
  margin: 0 auto 32px auto;
  max-width: 90%;
}

.premium-video {
  margin-bottom: 0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Premium Button */
.btn-premium {
  border-radius: 999px;
  min-height: 56px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: var(--color-orange);
  color: white;
  box-shadow: 0 4px 14px rgba(245, 130, 32, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: breathingPremium 2.5s infinite ease-in-out;
}

@keyframes breathingPremium {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 14px rgba(245, 130, 32, 0.3);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 12px 24px rgba(245, 130, 32, 0.5);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 14px rgba(245, 130, 32, 0.3);
  }
}

.btn-premium:hover {
  transform: scale(1.06) !important;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.3), 0 12px 24px rgba(245, 130, 32, 0.6);
  animation: none;
  /* stop breathing on hover to show true hover */
}

/* Typography Base */
.section-title {
  font-size: 26px;
  color: var(--color-blue);
}

.premium-text {
  font-size: 16px;
  color: var(--color-text-dark);
  line-height: 1.6;
}

/* Cards Generic */
.premium-card {
  background: white;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.premium-card:hover {
  transform: translateY(-3px);
}

/* Block 2: What You Get List */
.premium-check-list {
  list-style: none;
  padding: 0;
}

.premium-check-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.5;
}

.premium-check-list li:last-child {
  margin-bottom: 0;
}

.icon-circle {
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(76, 175, 80, 0.1);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  font-size: 12px;
  margin-top: 2px;
}

/* Block 3: Bonuses (Updated Style) */
.bg-light-green {
  background-color: #F0FDF4;
}

.bonus-card {
  border: 2px solid rgba(76, 175, 80, 0.3);
  box-shadow: 0 8px 30px rgba(76, 175, 80, 0.08);
}

.bonus-badge {
  background: rgba(76, 175, 80, 0.1);
  color: var(--color-green);
  padding: 8px 16px;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
}

.bonus-check-list {
  text-align: left;
}

.bonus-icon {
  background-color: rgba(245, 130, 32, 0.1);
  color: var(--color-orange);
  font-size: 14px;
}

/* Block 4: Imagens do Método */
.method-images-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.method-practical-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  display: block;
}

/* Block 5 & 6: Urgency & Social Proof */
.divider-line {
  height: 1px;
  background-color: rgba(31, 95, 175, 0.1);
  width: 60%;
  margin: 0 auto;
}

.emotional-title {
  font-size: 28px;
  color: var(--color-blue);
  line-height: 1.4;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.proof-box {
  aspect-ratio: 1/1;
  background-color: var(--color-bg);
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

.snippet-1 {
  background-image: url('assets/mosaic_1.png');
}

.snippet-2 {
  background-image: url('assets/mosaic_2.png');
}

.snippet-3 {
  background-image: url('assets/mosaic_3.png');
}

.snippet-4 {
  background-image: url('assets/mosaic_4.png');
}

/* Block 7: Offer */
.offer-card {
  background: white;
  border-radius: 20px;
  padding: 40px 24px;
  box-shadow: 0 10px 40px rgba(31, 95, 175, 0.08);
  /* slightly stronger */
}

.old-price {
  font-size: 15px;
  color: var(--color-text-light);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.price-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  color: var(--color-blue);
  margin-bottom: 8px;
}

.currency {
  font-size: 20px;
  font-weight: 600;
}

.price {
  font-size: 42px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.cash-price {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-dark);
}

.payment-info {
  font-size: 13px;
  color: var(--color-text-light);
}

/* Block 8: Guarantee */
.guarantee-card {
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 20px;
  padding: 32px 24px;
}

.shield-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.guarantee-title {
  font-size: 20px;
  margin-bottom: 16px;
}

.guarantee-text {
  font-size: 14px;
  color: var(--color-text-dark);
  line-height: 1.6;
}

/* Block 9: FAQ */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.faq-item {
  background: white;
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid #E5E7EB;
  cursor: pointer;
  transition: all 0.2s;
}

.faq-item:hover {
  border-color: var(--color-blue);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-header h4 {
  font-size: 15px;
  color: var(--color-text-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin: 0;
  padding-right: 16px;
}

.faq-icon {
  font-size: 20px;
  color: var(--color-blue);
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-body {
  max-height: 150px;
  margin-top: 12px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-body p {
  font-size: 14px;
  color: var(--color-text-light);
  margin: 0;
}

/* Animations */
.fade-in-section {
  animation: fadeInSlow 0.8s ease-out forwards;
}

@keyframes fadeInSlow {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}