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

:root {
  --rosa:       #c4607a;
  --rosa-dark:  #9c4b5e;
  --rosa-light: #faeaec;
  --rosa-pale:  #fff5f7;
  --dourado:    #c5a059;
  --dourado-bg: #fdf8ed;
  --cinza:      #444;
  --cinza-claro:#f7f7f7;
  --branco:     #ffffff;
  --preto:      #1a1a1a;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(156,75,94,.12);
  --shadow-lg:  0 8px 40px rgba(156,75,94,.18);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Lato', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--cinza);
  background: var(--branco);
  line-height: 1.7;
  overflow-x: hidden;
}

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

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════════════════════
   TIPOGRAFIA
═══════════════════════════════════════════════════════ */
h1, h2, h3 { font-family: var(--font-serif); color: var(--preto); line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: .5rem; }
p  { margin-bottom: .8rem; }

.section-eyebrow {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: .5rem;
}

/* ═══════════════════════════════════════════════════════
   BOTÕES
═══════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--rosa), var(--rosa-dark));
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(156,75,94,.35);
  transition: transform .2s, box-shadow .2s;
  text-align: center;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(156,75,94,.45);
}
.btn-large { font-size: 1.2rem; padding: 20px 48px; }

@keyframes pulse-btn {
  0%,100% { box-shadow: 0 6px 20px rgba(156,75,94,.35); }
  50%      { box-shadow: 0 6px 32px rgba(156,75,94,.65); }
}
.pulse { animation: pulse-btn 2.4s ease-in-out infinite; }

/* ═══════════════════════════════════════════════════════
   HEADER COM LOGO
═══════════════════════════════════════════════════════ */
.site-header {
  background: var(--branco);
  padding: 14px 0;
  border-bottom: 1px solid #f0e0e4;
  text-align: center;
}
.site-logo {
  height: 80px;
  width: auto;
  margin: 0 auto;
  display: inline-block;
}

/* ═══════════════════════════════════════════════════════
   BARRA DE URGÊNCIA
═══════════════════════════════════════════════════════ */
.urgency-bar {
  background: linear-gradient(90deg, var(--rosa-dark), var(--rosa));
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: .92rem;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 1000;
}
#countdown {
  font-weight: 700;
  background: rgba(255,255,255,.2);
  padding: 2px 10px;
  border-radius: 20px;
  margin-left: 6px;
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--rosa-pale) 0%, var(--dourado-bg) 100%);
  padding: 70px 0 60px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-eyebrow {
  font-size: .95rem;
  font-weight: 700;
  color: var(--rosa);
  margin-bottom: .8rem;
}
.hero h1 { margin-bottom: 1rem; }
.hero h1 em { color: var(--rosa); font-style: italic; }
.hero-sub { font-size: 1.05rem; color: #555; margin-bottom: 1.4rem; }

.hero-checks { list-style: none; margin-bottom: 2rem; }
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: .55rem;
  font-size: 1rem;
}
.hero-checks li i { color: var(--rosa); font-size: 1.1rem; flex-shrink: 0; }

.hero-cta-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.hero-cta-sub { font-size: .85rem; color: #777; margin: 0; }
.hero-cta-sub i { color: var(--rosa); }

/* Imagem hero */
.hero-image { position: relative; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.book-wrap { position: relative; display: inline-block; }
.book-cover {
  width: 260px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
  transition: transform .3s;
}
.book-cover:hover { transform: rotate(0deg) scale(1.03); }
.book-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--dourado);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(197,160,89,.4);
}
.hero-devices { width: 100%; max-width: 420px; border-radius: var(--radius); }

/* ═══════════════════════════════════════════════════════
   PROBLEMA
═══════════════════════════════════════════════════════ */
.problem {
  background: var(--rosa-dark);
  padding: 70px 0;
  color: #fff;
  text-align: center;
}
.problem h2 { color: #fff; margin-bottom: 2rem; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 2.5rem;
}
.problem-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 28px 20px;
  transition: background .2s;
}
.problem-card:hover { background: rgba(255,255,255,.18); }
.problem-emoji { font-size: 2.4rem; display: block; margin-bottom: .8rem; }
.problem-card p { font-size: .97rem; color: rgba(255,255,255,.9); margin: 0; }
.problem-conclusion {
  font-size: 1.15rem;
  color: rgba(255,255,255,.95);
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════ */
.features {
  padding: 80px 0;
  background: var(--branco);
  text-align: center;
}
.features > .container > h2 { margin-bottom: 2.5rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  text-align: left;
}
.feature-card {
  background: var(--rosa-pale);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 4px solid var(--rosa);
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--rosa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature-icon i { color: #fff; font-size: 1.3rem; }
.feature-card h3 { color: var(--rosa-dark); }
.feature-card p { font-size: .95rem; color: #555; margin: 0; }

/* ═══════════════════════════════════════════════════════
   PARA QUEM É
═══════════════════════════════════════════════════════ */
.for-who {
  padding: 80px 0;
  background: var(--dourado-bg);
  text-align: center;
}
.for-who h2 { margin-bottom: 2rem; }
.for-who-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}
.for-who-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--branco);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.for-who-item i { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.for-who-item.yes i { color: #2ecc71; }
.for-who-item.no  i { color: #e74c3c; }
.for-who-item span { font-size: .97rem; }

/* ═══════════════════════════════════════════════════════
   DEPOIMENTOS
═══════════════════════════════════════════════════════ */
.testimonials {
  padding: 80px 0;
  background: var(--rosa-pale);
  text-align: center;
}
.testimonials h2 { margin-bottom: 2.5rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  text-align: left;
}
.testimonial-card {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--rosa);
}
.stars { color: #f39c12; font-size: 1.1rem; margin-bottom: .6rem; }
.testimonial-card p { font-size: .95rem; color: #555; font-style: italic; margin-bottom: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--rosa), var(--rosa-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .95rem; }
.testimonial-author span { font-size: .82rem; color: #999; }

/* ═══════════════════════════════════════════════════════
   OFERTA
═══════════════════════════════════════════════════════ */
.offer {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--rosa-dark) 0%, #7a2d40 100%);
  text-align: center;
}
.offer .section-eyebrow { color: var(--dourado); }
.offer h2 { color: #fff; margin-bottom: 2.5rem; }

.offer-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  background: var(--branco);
  border-radius: 20px;
  padding: 40px;
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
  box-shadow: var(--shadow-lg);
}
.offer-left img {
  width: 220px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.offer-right h3 { font-size: 1.5rem; color: var(--rosa-dark); margin-bottom: 1.2rem; }
.offer-list { list-style: none; margin-bottom: 1.6rem; }
.offer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: .5rem;
  font-size: .97rem;
}
.offer-list li i { color: var(--rosa); }

.price-box {
  background: var(--rosa-pale);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 1.6rem;
  display: inline-block;
}
.price-from {
  display: block;
  font-size: .9rem;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 4px;
}
.price-main { display: flex; align-items: baseline; gap: 6px; }
.price-label { font-size: .9rem; color: var(--cinza); }
.price-value {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--rosa-dark);
  line-height: 1;
}
.price-value sup { font-size: 1.3rem; vertical-align: super; }
.price-note { display: block; font-size: .82rem; color: #888; margin-top: 4px; }

.secure-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1rem;
  font-size: .85rem;
  color: #777;
}
.secure-badges span { display: flex; align-items: center; gap: 5px; }
.secure-badges i { color: var(--rosa); }

/* ═══════════════════════════════════════════════════════
   GARANTIA
═══════════════════════════════════════════════════════ */
.guarantee {
  padding: 70px 0;
  background: var(--dourado-bg);
}
.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  background: var(--branco);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.guarantee-badge { width: 130px; flex-shrink: 0; }
.guarantee-text h2 { font-size: 1.8rem; color: var(--rosa-dark); margin-bottom: .8rem; }
.guarantee-text p { font-size: .97rem; color: #555; margin: 0; }

/* ═══════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════ */
.faq {
  padding: 80px 0;
  background: var(--branco);
  text-align: center;
}
.faq h2 { margin-bottom: 2.5rem; }
.faq-list { max-width: 750px; margin: 0 auto; text-align: left; }
.faq-item {
  border-bottom: 1px solid #eee;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--preto);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-align: left;
  transition: color .2s;
}
.faq-question:hover { color: var(--rosa); }
.faq-question i { color: var(--rosa); transition: transform .3s; flex-shrink: 0; }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer.open { max-height: 300px; padding-bottom: 16px; }
.faq-answer p { font-size: .97rem; color: #555; margin: 0; }

/* ═══════════════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════════════ */
.cta-final {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--rosa-pale), var(--dourado-bg));
  text-align: center;
}
.cta-final h2 { margin-bottom: 1rem; }
.cta-final p { font-size: 1.05rem; color: #555; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-final-sub { font-size: .88rem; color: #888; margin-top: 1rem; margin-bottom: 0; }
.cta-final-sub i { color: var(--rosa); }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  background: var(--preto);
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 36px 20px;
  font-size: .85rem;
}
.footer p { margin-bottom: .5rem; }
.footer a { color: rgba(255,255,255,.7); transition: color .2s; }
.footer a:hover { color: var(--rosa); }
.footer-disclaimer { font-size: .78rem; max-width: 600px; margin: 1rem auto 0; color: rgba(255,255,255,.4); }



/* ═══════════════════════════════════════════════════════
   RESPONSIVO
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 2; }
  .hero-image { order: 1; }
  .hero-cta-wrap { align-items: center; }
  .hero-checks li { justify-content: flex-start; text-align: left; }
  .book-cover { width: 200px; }

  .offer-box { grid-template-columns: 1fr; text-align: center; }
  .offer-left { display: flex; justify-content: center; }
  .offer-list li { justify-content: flex-start; }
  .price-box { display: block; }

  .guarantee-inner { flex-direction: column; text-align: center; }
  .guarantee-badge { width: 100px; }

  .for-who-list { grid-template-columns: 1fr; }

  .btn-large { font-size: 1rem; padding: 16px 28px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.5rem; }
  .urgency-bar { font-size: .8rem; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
