/* ============================================
   LANDING PAGE - STYLES.CSS
   Kit 2.600 Atividades - Alta Conversão
   ============================================ */

:root {
  --color-bg: #FFF8F0;
  --color-bg-light: #FFF5E6;
  --color-text-primary: #0a1628;
  --color-accent-green: #27AE60;
  --color-accent-orange: #F39C12;
  --color-accent-red: #E63946;
  --color-white: #FFFFFF;
  --color-gray-light: #F5F5F5;
  --color-gray-dark: #666666;
  --font-family: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-light) 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 40px 16px;
}

section h2 {
  margin-bottom: 16px;
}

/* ========== URGENCY BAR ========== */
.urgency-bar {
  background: linear-gradient(90deg, var(--color-accent-orange) 0%, #E74C3C 100%);
  color: white;
  text-align: center;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.urgency-content {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* ========== HERO SECTION ========== */
.hero {
  padding: 40px 20px 32px 20px;
  text-align: center;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge {
  display: inline-block;
  background: var(--color-white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent-green);
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hero-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin: 20px 0;
  color: var(--color-text-primary);
}

.hero-title .highlight {
  color: var(--color-accent-green);
}

.hero-subtitle {
  font-size: 16px;
  color: var(--color-gray-dark);
  margin: 20px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image {
  margin: 40px 0;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.badges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 340px;
  margin: 16px auto;
}

.badge-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 10px 16px;
  font-size: 13px;
  color: #333;
  white-space: nowrap;
}

.hero-trust-line {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin: 16px 0 30px 0;
  line-height: 1.5;
}

.seals {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0;
}

.seal {
  background: var(--color-white);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cta-button {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-primary {
  background: var(--color-accent-green);
  color: white;
  margin: 20px 0;
}

.cta-primary:hover {
  background: #229954;
  transform: scale(1.05);
}

.cta-secondary {
  background: var(--color-white);
  color: var(--color-text-primary);
  border: 2px solid var(--color-text-primary);
  margin-top: 16px;
}

.cta-secondary:hover {
  background: var(--color-text-primary);
  color: white;
}

.cta-orange {
  background: var(--color-accent-orange);
  color: white;
  margin-top: 16px;
}

.cta-orange:hover {
  background: #D68910;
  transform: scale(1.05);
}

.cta-green {
  background: var(--color-accent-green);
  color: white;
}

.cta-gray {
  background: #CCCCCC;
  color: var(--color-text-primary);
}

.cta-large {
  font-size: 16px;
  padding: 18px 40px;
}

/* Timer */
.timer-container {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  padding: 20px 32px;
  text-align: center;
  margin: 12px auto;
  max-width: 280px;
}

.timer-label {
  font-size: 14px;
  color: #666;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.timer-numeros {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.timer-bloco {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-numero {
  font-size: 48px;
  font-weight: 800;
  color: #E74C3C;
  line-height: 1;
  display: block;
}

.timer-texto {
  font-size: 11px;
  color: #999;
  margin-top: 4px;
  display: block;
}

.timer-separador {
  font-size: 40px;
  font-weight: 800;
  color: #E74C3C;
  margin-bottom: 12px;
}

.social-proof-hero {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-top: 20px;
}

.hero-pricing {
  margin-top: 16px;
  padding: 16px;
  background: rgba(243, 156, 18, 0.1);
  border-radius: 8px;
}

.pricing-highlight {
  font-size: 15px;
  font-weight: 600;
  color: #0a1628;
}

.highlight-orange {
  color: var(--color-accent-orange);
  font-weight: 700;
  font-size: 18px;
}

/* ========== PROVA SOCIAL (4 CARDS) ========== */
.social-proof {
  padding: 40px 20px;
  background: var(--color-white);
  margin: 40px 0;
  border-radius: 12px;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.proof-card {
  text-align: center;
  padding: 20px;
  background: var(--color-gray-light);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.proof-card:hover {
  transform: translateY(-4px);
}

.proof-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.proof-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-accent-green);
  margin: 10px 0;
}

.proof-text {
  font-size: 14px;
  color: var(--color-gray-dark);
}

/* ========== SITUAÇÕES SECTION ========== */
.situations {
  padding: 60px 20px;
  background: var(--color-white);
  margin: 40px 0;
  border-radius: 12px;
}

.situations-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--color-text-primary);
}

.situations-subtitle {
  font-size: 15px;
  text-align: center;
  color: #666;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.situations-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.situation-card {
  background: white;
  border-left: 4px solid var(--color-accent-orange);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.situation-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.situation-card p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
  margin: 0;
}

.transicao-kit {
  font-size: 18px;
  font-weight: 600;
  color: #0a1628;
  text-align: center;
  margin: 24px auto;
  max-width: 500px;
  line-height: 1.5;
}

.situations-cta-box {
  background: #E8F8F5;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.situations-check {
  font-size: 32px;
}

.situations-cta-text {
  font-size: 15px;
  color: var(--color-text-primary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0;
}

/* ========== COMO FUNCIONA - 4 FASES ========== */
.how-it-works {
  padding: 60px 20px;
  background: var(--color-white);
  margin: 40px 0;
  border-radius: 12px;
}

.how-it-works-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--color-text-primary);
}

.how-it-works-subtitle {
  font-size: 15px;
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.phases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

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

.phase-card {
  background: white;
  border: 2px solid var(--color-accent-green);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(39, 174, 96, 0.15);
}

.phase-number {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-accent-green);
  margin-bottom: 8px;
}

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

.phase-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.phase-materials {
  font-size: 13px;
  color: var(--color-accent-green);
  font-weight: 600;
  background: rgba(39, 174, 96, 0.1);
  padding: 12px;
  border-radius: 8px;
}

.guide-box {
  background: #E8F8F5;
  padding: 24px;
  border-radius: 12px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.guide-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.guide-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.guide-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ========== EMPILHAMENTO DE VALOR ========== */
.value-stack {
  background: linear-gradient(135deg, var(--color-text-primary) 0%, #1a2a3a 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin: 40px 0;
  border-radius: 12px;
}

.value-stack h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  color: white;
}

.value-list {
  max-width: 600px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-item {
  font-size: 14px;
  color: #ddd;
  line-height: 1.6;
  text-align: left;
}

.value-total {
  background: rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 32px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.value-total-line {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 8px;
}

.value-total-highlight {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.value-total-price {
  font-size: 56px;
  font-weight: 800;
  color: var(--color-accent-orange);
  margin: 16px 0;
}

.value-total-installments {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 12px;
}

.value-total-savings {
  font-size: 14px;
  color: #ddd;
  font-weight: 600;
}

/* ========== DOIS PÚBLICOS SECTION ========== */
.two-audiences {
  padding: 60px 20px;
  background: var(--color-gray-light);
  margin: 40px 0;
  border-radius: 12px;
}

.two-audiences-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--color-text-primary);
}

.two-audiences-subtitle {
  font-size: 15px;
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.audiences-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.audience-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.audience-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

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

.audience-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.audience-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.audience-benefits li {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

/* ========== WHAT YOU GET SUBTITLE ========== */
.what-you-get-subtitle {
  font-size: 15px;
  text-align: center;
  color: #666;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.what-you-get-subsection {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 32px 0 24px 0;
  text-align: center;
}

/* ========== O QUE VOCÊ RECEBE ========== */
.what-you-get {
  padding: 60px 20px;
  background: var(--color-white);
  margin: 40px 0;
  border-radius: 12px;
}

.what-you-get h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.kit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 16px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .kit-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 0;
  }
}

.kit-card {
  background: white;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.kit-image {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 8px;
}

.kit-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.kit-subtitle {
  font-size: 12px;
  color: #666;
  margin: 0;
}


/* ========== PREÇOS ========== */
.pricing {
  padding: 60px 20px;
}

.pricing h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-basic {
  background: white;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.pricing-complete {
  background: #0a1628;
  border: 2px solid var(--color-accent-orange);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.best-seller-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent-orange);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  z-index: 10;
}

.pricing-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 16px 0;
}

.pricing-basic .pricing-title {
  color: var(--color-text-primary);
}

.pricing-complete .pricing-title {
  color: white;
}

.price-old {
  text-align: center;
  font-size: 14px;
  color: #aaa;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pricing-complete .price-old {
  color: #999;
}

.pricing-value {
  text-align: center;
  margin: 16px 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.currency {
  font-size: 20px;
  font-weight: 700;
}

.pricing-basic .currency {
  color: var(--color-text-primary);
}

.pricing-complete .currency {
  color: var(--color-accent-orange);
}

.amount {
  font-size: 48px;
  font-weight: 700;
}

.pricing-basic .amount {
  color: var(--color-accent-green);
}

.pricing-complete .amount {
  color: var(--color-accent-orange);
}

.pricing-period {
  text-align: center;
  font-size: 13px;
  margin: 8px 0 16px 0;
}

.pricing-basic .pricing-period {
  color: #999;
}

.pricing-complete .pricing-period {
  color: #aaa;
}

.pricing-quantity {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 16px 0;
  padding: 12px;
  border-radius: 8px;
}

.pricing-basic .pricing-quantity {
  background: #f5f5f5;
  color: var(--color-text-primary);
}

.pricing-complete .pricing-quantity {
  background: rgba(255,255,255,0.1);
  color: white;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
  flex: 1;
}

.feature-item {
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-basic .feature-item {
  color: #333;
}

.pricing-complete .feature-item {
  color: #ddd;
}

.pricing-warning {
  text-align: center;
  color: var(--color-accent-orange);
  font-size: 13px;
  font-weight: 600;
  background: rgba(243, 156, 18, 0.1);
  padding: 12px;
  border-radius: 8px;
  margin: 16px 0;
}

.bonus-header {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: var(--color-accent-orange);
  margin: 24px 0 12px 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.bonus-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 20px 0;
}

.bonus-item {
  font-size: 14px;
  font-weight: 400;
  color: #ddd;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.savings-box {
  background: rgba(243, 156, 18, 0.2);
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin: 20px 0;
}

.pricing-footer {
  text-align: center;
  font-size: 12px;
  color: #999;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-top: auto;
}

.pricing-complete .pricing-footer {
  color: #777;
  border-top-color: rgba(255,255,255,0.1);
}

.cta-dark {
  background: #0a1628;
  color: white;
  border: 2px solid #0a1628;
  margin-top: 16px;
}

.cta-dark:hover {
  background: #1a2a3a;
  border-color: #1a2a3a;
}

/* ========== BÔNUS SECTION ========== */
.bonus-separator {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 50px 0 30px 0;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.bonus-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: flex;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.bonus-cover {
  width: 120px;
  background: #f9f9f9;
  border-radius: 8px;
  flex-shrink: 0;
  margin: 16px 16px 16px 16px;
  padding: 8px;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
  font-weight: 600;
}

.bonus-content {
  padding: 16px 16px 16px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bonus-badge {
  display: inline-block;
  background: #FFF3CD;
  color: var(--color-accent-orange);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  width: fit-content;
}

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

.bonus-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  flex: 1;
  line-height: 1.5;
}

.bonus-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.original-price {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}

.bonus-free {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent-green);
}

.bonus-total-box {
  background: #E8F8F5;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.bonus-total-icon {
  font-size: 24px;
}

.bonus-total-text {
  font-size: 15px;
  color: var(--color-text-primary);
  line-height: 1.5;
}

/* ========== UPSELL POPUP ========== */
#popup-upsell {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#popup-upsell.show {
  display: flex;
}

.upsell-modal {
  background: white;
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  overflow: hidden;
  position: relative;
}

.upsell-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  z-index: 10;
}

.upsell-close:hover {
  transform: scale(1.1);
}

.upsell-header {
  background: linear-gradient(135deg, var(--color-accent-orange) 0%, #E63946 100%);
  padding: 40px 30px 30px 30px;
  text-align: center;
}

.upsell-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.upsell-main-title {
  font-size: 20px;
  font-weight: 700;
  color: #0a1628;
  line-height: 1.4;
}

.upsell-body {
  padding: 30px;
}

.upsell-intro {
  font-size: 14px;
  color: var(--color-gray-dark);
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: center;
}

.upsell-extras {
  background: #f9f9f9;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.extra-item {
  font-size: 13px;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.extra-bonus {
  font-weight: 600;
  color: var(--color-accent-green);
  margin-top: 4px;
}

.extra-more {
  color: #999;
  font-style: italic;
  margin-top: 4px;
}

.upsell-price-box {
  background: white;
  border: 2px solid var(--color-accent-orange);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 24px;
}

.price-crossed {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 8px;
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.price-currency {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent-orange);
}

.price-amount {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-accent-green);
}

.price-subtitle {
  font-size: 12px;
  color: #999;
}

.upsell-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.upsell-secondary-btn {
  display: block;
  text-align: center;
  padding: 12px 20px;
  font-size: 13px;
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.upsell-secondary-btn:hover {
  color: var(--color-text-primary);
}

/* ========== UPSELL POPUP TABLET ========== */
@media (max-width: 768px) {
  section {
    padding: 32px 16px;
  }

  .upsell-modal {
    max-width: 100%;
  }

  .upsell-header {
    padding: 32px 24px 24px 24px;
  }

  .upsell-main-title {
    font-size: 18px;
    line-height: 1.3;
  }

  .upsell-body {
    padding: 24px;
  }

  .upsell-intro {
    font-size: 13px;
  }

  .extra-item {
    font-size: 12px;
  }

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

  .price-currency {
    font-size: 16px;
  }
}

/* ========== UPSELL POPUP MOBILE ========== */
@media (max-width: 480px) {
  #popup-upsell {
    padding: 16px;
  }

  .upsell-modal {
    width: 100%;
    max-width: none;
  }

  .upsell-close {
    top: 12px;
    right: 12px;
    font-size: 20px;
  }

  .upsell-header {
    padding: 24px 20px 20px 20px;
  }

  .upsell-badge {
    font-size: 11px;
    padding: 6px 12px;
    margin-bottom: 12px;
  }

  .upsell-main-title {
    font-size: 16px;
    line-height: 1.3;
  }

  .upsell-body {
    padding: 20px;
  }

  .upsell-intro {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .upsell-extras {
    padding: 12px;
    margin-bottom: 20px;
    gap: 6px;
  }

  .extra-item {
    font-size: 11px;
    gap: 6px;
  }

  .upsell-price-box {
    padding: 16px;
    margin-bottom: 20px;
  }

  .price-crossed {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .price-main {
    margin-bottom: 6px;
    gap: 2px;
  }

  .price-currency {
    font-size: 14px;
  }

  .price-amount {
    font-size: 32px;
  }

  .price-subtitle {
    font-size: 11px;
  }

  .upsell-buttons {
    gap: 10px;
  }

  .upsell-secondary-btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  .cta-green {
    font-size: 12px;
    padding: 14px 16px;
  }
}

/* ========== DEPOIMENTOS ========== */
.testimonials {
  padding: 60px 20px;
  background: var(--color-white);
  margin: 40px 0;
  border-radius: 12px;
}

.testimonials h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--color-text-primary);
}

.testimonials-subtitle {
  font-size: 15px;
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.testimonial-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.testimonial-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #27AE60;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 4px 0;
}

.testimonial-role {
  font-size: 12px;
  color: #999;
  margin: 0;
}

.testimonial-stars {
  font-size: 14px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 13px;
  color: var(--color-gray-dark);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

/* ========== NOTIFICAÇÕES ========== */
.notification-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1500;
}

.notification {
  background: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin-bottom: 10px;
  max-width: 300px;
  font-size: 13px;
  line-height: 1.4;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-120%);
    opacity: 0;
  }
}

.notificacao-venda {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 12px 16px;
  max-width: 280px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  z-index: 9999;
  animation: slideIn 0.4s ease;
}

.notificacao-icone {
  background: #e8f5e9;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.notificacao-conteudo {
  flex: 1;
}

.notificacao-topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.notificacao-status {
  font-size: 12px;
  font-weight: 600;
  color: #333;
}

.notificacao-check {
  color: #27AE60;
  font-weight: bold;
  font-size: 14px;
}

.notificacao-texto {
  font-size: 13px;
  color: #333;
  margin: 0 0 4px 0;
  line-height: 1.4;
}

.notificacao-produto {
  color: #1a73e8;
}

.notificacao-rodape {
  font-size: 11px;
  color: #999;
  margin: 0;
}

/* ========== GARANTIA ========== */
.guarantee {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E8F8F5 0%, #D5F4E6 100%);
  margin: 40px 0;
  border-radius: 12px;
}

.guarantee-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.guarantee-seal {
  font-size: 48px;
  margin-bottom: 20px;
}

.guarantee-seal-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  display: block;
}

.guarantee h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 15px;
}

.guarantee p {
  font-size: 15px;
  color: var(--color-gray-dark);
  margin-bottom: 12px;
  line-height: 1.6;
}

.guarantee-highlight {
  font-weight: 600;
  color: var(--color-accent-green);
}

/* ========== FAQ ========== */
.faq {
  padding: 60px 20px;
}

.faq h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.faq-question:hover {
  background: var(--color-gray-light);
}

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

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 18px 18px 18px;
  max-height: 500px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--color-gray-dark);
  line-height: 1.6;
}

/* ========== CTA FINAL ========== */
.final-cta {
  background: linear-gradient(135deg, var(--color-text-primary) 0%, #1a2a3a 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin: 40px 0 0 0;
  border-radius: 0;
}

.final-cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.final-cta-subtitle {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.final-cta-pricing {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-accent-orange);
}

.final-cta-trust {
  font-size: 14px;
  margin-top: 20px;
  opacity: 0.8;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--color-text-primary);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.copyright {
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-accent-green);
}

.separator {
  opacity: 0.5;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .kit-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-button {
    min-height: 56px;
    font-size: 13px;
    padding: 14px 24px;
  }

  .timer-numero {
    font-size: 40px;
  }

  .timer-separador {
    font-size: 32px;
  }

  body {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 16px;
  }

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

  .badges-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-width: 100%;
    margin: 16px 0;
  }

  .badge-item {
    font-size: 12px;
    padding: 8px 12px;
  }

  .hero-trust-line {
    font-size: 11px;
    margin: 12px 0 20px 0;
  }

  .situations {
    padding: 40px 20px;
    margin: 30px 0;
  }

  .situations-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .situations-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .situations-list {
    gap: 10px;
    margin-bottom: 24px;
  }

  .situation-card {
    padding: 14px;
    gap: 10px;
  }

  .situation-card p {
    font-size: 13px;
  }

  .situations-cta-box {
    padding: 24px;
    gap: 12px;
  }

  .situations-check {
    font-size: 28px;
  }

  .situations-cta-text {
    font-size: 13px;
  }

  .two-audiences {
    padding: 40px 20px;
    margin: 30px 0;
  }

  .two-audiences-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .two-audiences-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }

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

  .audience-card {
    padding: 24px;
  }

  .audience-icon {
    font-size: 40px;
    margin-bottom: 12px;
  }

  .audience-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .audience-description {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .audience-benefits li {
    font-size: 13px;
  }

  .testimonials {
    padding: 40px 20px;
    margin: 30px 0;
  }

  .testimonials h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .testimonials-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }

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

  .testimonial-card {
    padding: 16px;
  }

  .testimonial-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

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

  .testimonial-role {
    font-size: 11px;
  }

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

  .seals {
    flex-direction: column;
    gap: 10px;
  }

  .seal {
    width: 100%;
    text-align: center;
  }

  .cta-button {
    min-height: 56px;
    width: 100%;
    font-size: 13px;
    padding: 14px 20px;
  }

  .social-proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timer-numero {
    font-size: 36px;
  }

  .timer-separador {
    font-size: 28px;
  }

  .notebooks-grid {
    grid-template-columns: 1fr;
  }

  .notebook-card {
    padding: 12px;
    gap: 12px;
  }

  .kit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0;
  }

  .kit-card {
    padding: 10px;
  }

  .kit-image {
    max-height: 100px;
    margin-bottom: 6px;
  }

  .kit-title {
    font-size: 13px;
    margin-bottom: 3px;
  }

  .kit-subtitle {
    font-size: 11px;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .bonus-card {
    flex-direction: column;
  }

  .bonus-cover {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 16px auto;
    border-radius: 8px;
  }

  .bonus-content {
    padding: 16px;
  }

  .bonus-total-box {
    flex-direction: column;
    gap: 8px;
  }

  .pricing-card {
    padding: 20px;
  }

  .pricing-title {
    font-size: 18px;
    margin: 8px 0 12px 0;
  }

  .amount {
    font-size: 40px;
  }

  .currency {
    font-size: 18px;
  }

  .pricing-features {
    gap: 10px;
    margin: 16px 0;
  }

  .feature-item {
    font-size: 13px;
  }

  .bonus-header {
    font-size: 13px;
    margin: 20px 0 10px 0;
    padding-top: 12px;
  }

  .bonus-item {
    font-size: 13px;
  }

  .notification-container {
    left: 10px;
    right: 10px;
  }

  body {
    font-size: 14px;
  }
}
