/* ─── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── Header ─────────────────────────────────────────────────────────────────── */
#site-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 0;
}
#site-header .inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#site-header .logo {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.5px;
}
#site-header .logo span { color: #f9974c; }
#site-header nav { font-size: 13px; color: #6b7280; }
#site-header nav a { margin-left: 16px; }
#site-header nav a:hover { color: #f9974c; }

/* ─── Wrapper ────────────────────────────────────────────────────────────────── */
.article-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 16px 48px;
}

/* ─── Breadcrumb ─────────────────────────────────────────────────────────────── */
.breadcrumb {
  font-size: 13px;
  color: #585858;
  padding: 14px 0 0;
  margin-bottom: 10px;
}

/* ─── Título principal ───────────────────────────────────────────────────────── */
.article-title {
  font-size: clamp(24px, 4vw, 35px);
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  margin-bottom: 16px;
}

/* ─── Linha do autor ─────────────────────────────────────────────────────────── */
.author-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0 14px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 20px;
}
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-divider {
  width: 1px;
  height: 36px;
  background: #e5e7eb;
  flex-shrink: 0;
}
.author-name {
  font-size: 16px;
  font-weight: 700;
  color: #f9974c;
}
.author-date { font-size: 13px; color: #555; margin-top: 2px; }

/* ─── Intro box (laranja) ────────────────────────────────────────────────────── */
.intro-box {
  background: #fee9da;
  border-radius: 4px;
  padding: 16px 20px;
  font-size: 17px;
  color: #000;
  margin-bottom: 24px;
  line-height: 1.65;
}
.intro-box strong { font-weight: 700; }

/* ─── Imagem do artigo ───────────────────────────────────────────────────────── */
.article-img-link {
  display: block;
  margin: 24px 0;
  border-radius: 6px;
  overflow: hidden;
}
.article-img-link img { width: 100%; border-radius: 6px; }

/* ─── Seção do artigo (numerada) ─────────────────────────────────────────────── */
.article-section { margin-bottom: 32px; }
.section-number {
  font-size: 18px;
  font-weight: 700;
  color: #f9974c;
  margin-bottom: 6px;
}
.section-title {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
  line-height: 1.3;
}
.section-text {
  font-size: 17px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 16px;
}
.section-img {
  border-radius: 6px;
  margin-bottom: 16px;
  width: 100%;
}

/* ─── Depoimento em destaque ─────────────────────────────────────────────────── */
.testimonial-block {
  background: #f9f9f9;
  border-left: 4px solid #f9974c;
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 17px;
  font-style: italic;
  color: #333;
  line-height: 1.65;
}
.testimonial-author {
  margin-top: 10px;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: #666;
}

/* ─── GIF / banner animado ───────────────────────────────────────────────────── */
.gif-wrap {
  margin: 24px 0;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
}
.gif-wrap img { margin: 0 auto; border-radius: 8px; }

/* ─── Depoimento principal (com avatar) ──────────────────────────────────────── */
.main-testimonial {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff9f5;
  border: 1px solid #fde8d1;
  border-radius: 8px;
  padding: 20px;
  margin: 28px 0;
}
.main-testimonial .avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.main-testimonial blockquote {
  font-size: 17px;
  color: #333;
  font-style: italic;
  line-height: 1.65;
}
.main-testimonial cite {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  color: #888;
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #eefae9;
  color: #4caf50;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 6px;
}

/* ─── Estatística central ────────────────────────────────────────────────────── */
.stat-banner {
  text-align: center;
  background: #111;
  color: #fff;
  padding: 28px 20px;
  border-radius: 8px;
  margin: 28px 0;
}
.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #f9974c;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 16px; color: #ccc; }

/* ─── Destaque de recursos ───────────────────────────────────────────────────── */
.features-intro {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
  color: #333;
}
.feature-item:last-child { border-bottom: none; }
.feature-item img { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }
.feature-note { font-size: 12px; color: #999; margin-top: 6px; }

/* ─── Passo-a-passo ──────────────────────────────────────────────────────────── */
.steps-section {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 28px 24px;
  margin: 28px 0;
}
.steps-title {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 24px;
  text-align: center;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step-card { text-align: center; }
.step-num {
  font-size: 32px;
  font-weight: 800;
  color: #f9974c;
  line-height: 1;
  margin-bottom: 8px;
}
.step-action {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.step-desc { font-size: 14px; color: #555; line-height: 1.5; }

/* ─── Tabela comparativa ─────────────────────────────────────────────────────── */
.compare-section { margin: 28px 0; }
.compare-title {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
  text-align: center;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.compare-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 2px solid #e5e7eb;
}
.compare-table th:nth-child(2) { background: #f0fae8; color: #4caf50; }
.compare-table th:nth-child(3) { background: #fff5f5; color: #ef4444; }
.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: top;
  line-height: 1.5;
}
.compare-table td:first-child { font-weight: 600; color: #555; }
.compare-table td:nth-child(2) { background: #fafff7; }
.compare-table td:nth-child(3) { background: #fff9f9; color: #777; }
.compare-table tr:last-child td { border-bottom: none; }
.tick { color: #4caf50; font-size: 16px; margin-right: 4px; }
.cross { color: #ef4444; font-size: 16px; margin-right: 4px; }

/* ─── CTA principal ──────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #fff8f3 0%, #fff 100%);
  border: 2px solid #f9974c;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  margin: 32px 0;
}
.cta-urgency {
  background: #f9974c;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.cta-headline {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  line-height: 1.3;
  margin-bottom: 8px;
}
.cta-subline {
  font-size: 15px;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.5;
}
.cta-img { margin: 0 auto 24px; max-width: 320px; }
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #71c358;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 6px;
  box-shadow: 0 4px 0 #57ab3d;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-cta:hover { background: #65b34e; }
.btn-cta:active { transform: translateY(2px); box-shadow: 0 2px 0 #57ab3d; }
.cta-guarantee {
  margin-top: 16px;
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ─── Card do produto recentemente comprado ──────────────────────────────────── */
.product-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 20px;
  margin: 24px 0;
  display: flex;
  gap: 20px;
  align-items: center;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.product-card img { width: 100px; border-radius: 6px; flex-shrink: 0; }
.product-card-body .product-card-name {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}
.product-card-body .product-card-desc { font-size: 13px; color: #666; margin-bottom: 10px; line-height: 1.5; }
.btn-card-cta {
  display: inline-block;
  background: #71c358;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0 3px 0 #57ab3d;
}

/* ─── Notificação de compra recente ──────────────────────────────────────────── */
.recent-purchase {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.recent-purchase img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.recent-purchase strong { color: #111; }
.recent-purchase .when { font-size: 12px; color: #999; display: block; margin-top: 2px; }

/* ─── Badges de confiança ────────────────────────────────────────────────────── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 24px 0;
}
.trust-badges img { height: 42px; width: auto; }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
#footer {
  background: #111;
  color: #ccc;
  padding: 28px 16px;
  margin-top: 40px;
}
#footer .footer-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
#footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 16px;
  font-size: 13px;
}
#footer .footer-links a { color: #aaa; }
#footer .footer-links a:hover { color: #f9974c; }
#footer .footer-email { font-size: 13px; color: #999; margin-bottom: 12px; }
#footer .footer-copy { font-size: 12px; color: #666; }

/* ─── Responsivo ─────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .steps-grid { grid-template-columns: 1fr; }
  .compare-table th, .compare-table td { padding: 8px 10px; font-size: 13px; }
  .product-card { flex-direction: column; }
  .main-testimonial { flex-direction: column; }
  .article-title { font-size: 24px; }
}
