/* ═══════════════════════════════════════════════════════
   KIT MOVIMENTO LIVRE - LOW TICKET STYLESHEET
   Público-Alvo: 55+ anos.
   Conceito: Humanizado, Letras grandes, Legível, Alta Conversão.
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Open+Sans:wght@400;600;700&display=swap');

/* ═══════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1E3A5F;     /* Azul Marinho Confiante */
  --highlight: #F4A623;   /* Âmbar Dourado */
  --cta: #E84C3D;         /* Vermelho Aceso / Urgência */
  --cta-dark: #C0392B;
  --bg-color: #F8F5F0;    /* Creme Claro e Acolhedor */
  --success: #2ECC71;     /* Verde Saúde e Checks */
  --dark: #1A202C;
  --text: #2C3E50;
  --gray: #5A6A7D;
  --gray-light: #EEEEEE;
  --white: #FFFFFF;
  
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 30px rgba(30, 58, 95, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --max-w: 800px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-color);
  font-size: 18px; /* Ideal para público maduro */
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-head {
  font-family: var(--font-head);
  line-height: 1.25;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-highlight { color: var(--highlight); }
.text-cta { color: var(--cta); }
.text-white { color: var(--white) !important; }
.strike { text-decoration: line-through; opacity: 0.7; }
.bold { font-weight: 700; }

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL E ANIMAÇÕES
═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* ═══════════════════════════════════════════════════════
   11. UPSELL MODAL (POPUP)
═══════════════════════════════════════════════════════ */
.upsell-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.upsell-modal.active {
  display: flex;
  opacity: 1;
}
.upsell-content {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius);
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: 4px solid var(--highlight);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.upsell-modal.active .upsell-content {
  transform: translateY(0);
}
.upsell-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.upsell-decline {
  display: block;
  font-size: 13px;
  color: var(--gray);
  text-decoration: underline;
  cursor: pointer;
  margin-top: 10px;
}
.upsell-decline:hover {
  color: var(--cta);
}
body.no-scroll {
  overflow: hidden;
}

.popup-seals {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  font-size: 11px;
  color: var(--gray);
  opacity: 0.8;
}
.popup-seals span { display: flex; align-items: center; gap: 4px; }

.footer-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.footer-links a {
  font-size: 12px;
  color: var(--gray);
  text-decoration: none;
}
.footer-links a:hover { text-decoration: underline; }

.reveal.visible { opacity: 1; transform: none; }

@keyframes pulse-btn {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(232, 76, 61, 0.4); }
  50% { transform: scale(1.02); box-shadow: 0 8px 25px rgba(232, 76, 61, 0.6); }
}

/* ═══════════════════════════════════════════════════════
   URGENCY BAR (TOP BAR)
═══════════════════════════════════════════════════════ */
.urgency-bar {
  background: var(--cta);
  color: var(--white);
  padding: 12px 16px;
  position: sticky;
  top: 0;
  z-index: 1000;
  text-align: center;
  font-size: 14px;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.urgency-bar span { display: inline-block; vertical-align: middle; }

/* Timer Analógico Vintage (dentro das seções) */
.analog-timer {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin: 16px 0;
}
.timer-box {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  text-align: center;
  min-width: 60px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.2);
}
.timer-num {
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}
.timer-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--highlight);
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.timer-sep {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  margin-top: -15px;
}
.timer-warning {
  font-size: 13px;
  color: var(--cta);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   BOTÃO CTA GLOBAL
═══════════════════════════════════════════════════════ */
.btn-cta {
  display: block;
  width: 100%;
  background: var(--cta);
  color: var(--white);
  text-align: center;
  padding: 24px 20px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: clamp(16px, 4vw, 22px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin: 24px auto 16px;
  max-width: 580px;
  box-shadow: 0 6px 0 var(--cta-dark), 0 10px 20px rgba(232, 76, 61, 0.4);
}
.btn-cta:hover { background: #E74C3C; transform: translateY(-2px); }
.btn-cta:active { transform: translateY(4px); box-shadow: 0 2px 0 var(--cta-dark); }
.btn-cta--pulse { animation: pulse-btn 2.5s infinite; }

/* ═══════════════════════════════════════════════════════
   ESTRUTURA DE SEÇÕES
═══════════════════════════════════════════════════════ */
section { padding: 60px 0; }
.section-blue { background: var(--primary); color: var(--white); }
.section-white { background: var(--white); }
.section-creme { background: var(--bg-color); }

.title { margin-bottom: 24px; }
.title-xl { font-size: clamp(28px, 6vw, 44px); color: var(--primary); }
.title-lg { font-size: clamp(24px, 5vw, 36px); color: var(--primary); }
.title-md { font-size: clamp(20px, 4vw, 26px); color: var(--primary); }
.title-w { color: var(--white); }

.subtitle {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════════════
   1. HERO / HEADLINE
═══════════════════════════════════════════════════════ */
.hero-wrapper {
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-color) 100%);
  padding: 40px 0 60px;
}
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
  max-width: 540px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 600;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.hero-icon { font-size: 24px; flex-shrink: 0; }

.proof-mini {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0;
  background: rgba(30, 58, 95, 0.05);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
}
.proof-faces { display: flex; align-items: center; }
.proof-face { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--white); margin-left: -10px; background: #ddd; }
.proof-face:first-child { margin-left: 0; }

.mockup-ebook-hero {
  max-width: 320px;
  margin: 40px auto 0;
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  overflow: hidden;
  border: 4px solid var(--white);
}

/* ═══════════════════════════════════════════════════════
   2. DORES (AGITAÇÃO)
═══════════════════════════════════════════════════════ */
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pain-card {
  background: var(--white);
  border-left: 5px solid var(--cta);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pain-emoji { font-size: 28px; line-height: 1; flex-shrink: 0; }
.pain-text { font-size: 17px; color: var(--text); }

/* ═══════════════════════════════════════════════════════
   3. SOLUÇÃO (PDF EBOOK)
═══════════════════════════════════════════════════════ */
.ebook-focus { background: var(--primary); padding: 50px; border-radius: var(--radius); text-align: center; margin: 40px 0; }
.ebook-focus p { font-size: 20px; color: var(--white); line-height: 1.6; }
.ebook-highlight { font-size: 26px; color: var(--highlight); font-family: var(--font-head); font-weight: 800; display: block; margin: 16px 0; }
.ebook-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.ebook-badge { background: rgba(255,255,255,0.1); color: var(--white); font-size: 14px; font-weight: 600; padding: 8px 16px; border-radius: 50px; }

/* ═══════════════════════════════════════════════════════
   4. BENEFÍCIOS (GRADE)
═══════════════════════════════════════════════════════ */
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 600px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-card { background: var(--bg-color); padding: 24px; border-radius: var(--radius); border: 1px solid var(--gray-light); text-align: left; }
.benefit-card h3 { color: var(--primary); font-size: 18px; margin: 12px 0 8px; }
.benefit-card p { font-size: 16px; color: var(--gray); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   5. BÔNUS
═══════════════════════════════════════════════════════ */
.bonus-list { display: flex; flex-direction: column; gap: 24px; }
.bonus-item { background: var(--white); border: 2px solid var(--highlight); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 12px; position: relative; }
.bonus-tag { position: absolute; top: -14px; left: 24px; background: var(--highlight); color: var(--dark); font-family: var(--font-head); font-weight: 800; font-size: 12px; padding: 4px 16px; border-radius: 50px; text-transform: uppercase;}
.bonus-item h3 { font-size: 18px; color: var(--primary); margin-top: 8px; }
.bonus-item p { font-size: 16px; color: var(--gray); }

/* ═══════════════════════════════════════════════════════
   6. OFERTA / PLANO (DUPLO EM MOBILE)
═══════════════════════════════════════════════════════ */
.pricing-wrapper { text-align: center; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  align-items: end;
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
}

.price-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; border: 1px solid var(--gray-light); box-shadow: var(--shadow); position: relative; }
.price-basic { border-color: var(--gray-light); box-shadow: none; }
.price-basic .btn-cta { background: var(--gray); box-shadow: none; }
.price-basic .btn-cta:hover { background: #4A5568; }

.price-premium { border: 3px solid var(--highlight); box-shadow: var(--shadow-hover); transform: scale(1.03); z-index: 2; }
@media (max-width: 768px) { .price-premium { transform: scale(1); } }

.price-best { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); background: var(--highlight); color: var(--dark); font-family: var(--font-head); font-weight: 800; font-size: 13px; padding: 6px 20px; border-radius: 50px; width: max-content; }
.price-value { margin: 24px 0; }
.price-value strike { font-size: 18px; color: var(--gray); }
.price-value h2 { font-size: 50px; color: var(--primary); line-height: 1; }
.price-value h2 span { font-size: 24px; vertical-align: super; }
.price-ul { text-align: left; margin-bottom: 24px; font-size: 16px; color: var(--text); }
.price-ul li { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; }
.price-ul .check { color: var(--success); font-weight: 800; }
.price-ul .cross { color: var(--cta); font-weight: 800; }
.seals { display: flex; justify-content: center; gap: 16px; font-size: 13px; color: var(--gray); font-weight: 600; margin-top: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════
   6-B. IMAGENS E MOCKUPS
═══════════════════════════════════════════════════════ */
.mockup-main { display: block; max-width: 500px; width: 100%; margin: 32px auto; border-radius: 12px; }

/* ═══════════════════════════════════════════════════════
   7. AUTORIDADE (AUTORA)
═══════════════════════════════════════════════════════ */
.author-box { display: flex; align-items: center; gap: 24px; background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); max-width: 800px; margin: 0 auto; text-align: left;}
.author-img { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; border: 4px solid var(--bg-color); flex-shrink: 0; box-shadow: var(--shadow); }
.author-content h3 { font-size: 24px; color: var(--primary); margin-bottom: 8px; }
.author-content p { font-size: 16px; color: var(--text); }
@media (max-width: 600px) {
  .author-box { flex-direction: column; text-align: center; padding: 24px; }
  .author-img { width: 140px; height: 140px; }
}

/* ═══════════════════════════════════════════════════════
   7. GARANTIA
═══════════════════════════════════════════════════════ */
.guarantee-box { border: 2px dashed rgba(255,255,255,0.4); border-radius: var(--radius); padding: 40px; text-align: center; max-width: 600px; margin: 0 auto; }
.guarantee-box h3 { font-size: 24px; margin: 16px 0; }

/* ═══════════════════════════════════════════════════════
   8. FAQ
═══════════════════════════════════════════════════════ */
.faq-box { margin-bottom: 16px; background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--gray-light); box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 20px; font-size: 17px; font-weight: 700; color: var(--primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-a { padding: 0 20px 20px; font-size: 16px; color: var(--gray); display: none; }
.faq-a.open { display: block; }
.faq-icon { font-size: 24px; color: var(--highlight); font-weight: 400; transition: transform 0.3s; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

/* FOOTER */
.footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 40px 0 100px; text-align: center; font-size: 14px; }
.footer p { margin-bottom: 8px; }
.footer-disclaimer { font-size: 11px; max-width: 600px; margin: 24px auto 0; opacity: 0.5; }

/* ═══════════════════════════════════════════════════════
   13. SALES PROOF NOTIFICATIONS (TOASTS)
═══════════════════════════════════════════════════════ */
#sales-notification-container {
  position: fixed;
  top: 80px; /* Abaixo da Urgency Bar */
  right: 20px;
  z-index: 9999;
  pointer-events: none;
}
.sales-toast {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-left: 4px solid var(--success);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  transform: translateX(120%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s;
  opacity: 0;
  max-width: 280px;
}
.sales-toast.active {
  transform: translateX(0);
  opacity: 1;
}
.sales-toast-icon {
  background: var(--success);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.sales-toast-content {
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
}
.sales-toast-content strong {
  display: block;
  color: var(--primary);
}
.sales-toast-content span {
  font-size: 11px;
  color: var(--gray);
}

@media (max-width: 768px) {
  #sales-notification-container {
    top: auto;
    bottom: 100px; /* Acima do Sticky CTA no mobile */
    right: 10px;
    left: 10px;
  }
  .sales-toast {
    max-width: none;
  }
}
