/* ═══════════════════════════════════════════════
   ES Tracking 2 — Article Pages
   Estilos específicos para páginas de artigo
   ═══════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   ARTICLE MAIN
   ───────────────────────────────────────────── */
.article-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px 32px;
  width: 100%;
}

/* ─────────────────────────────────────────────
   BREADCRUMB
   ───────────────────────────────────────────── */
.breadcrumb {
  font-size: 14px;
  color: #64748b;
  margin: 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.breadcrumb a {
  color: #64748b;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #1f8fff;
  text-decoration: underline;
}

.breadcrumb span {
  color: #94a3b8;
}

/* ─────────────────────────────────────────────
   ARTICLE CONTENT
   ───────────────────────────────────────────── */
.article-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 32px;
}

.article-cover {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 24px;
  display: block;
}

.article-content h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
  margin-bottom: 8px;
}

@media (min-width: 600px) {
  .article-content h1 {
    font-size: 28px;
  }
}

.article-meta {
  display: block;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 24px;
}

.article-content p {
  font-size: 17px;
  line-height: 1.75;
  color: #1e293b;
  margin-bottom: 16px;
}

.article-content strong {
  font-weight: 600;
}

.article-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 32px;
  margin-bottom: 12px;
  line-height: 1.3;
}

@media (min-width: 600px) {
  .article-content h2 {
    font-size: 22px;
  }
}

.article-content ul,
.article-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.article-content li {
  font-size: 17px;
  line-height: 1.75;
  color: #1e293b;
  margin-bottom: 8px;
}

.article-content .inarticle-ad-wrap {
  margin: 32px 0;
}

/* ─────────────────────────────────────────────
   ARTICLE BANNER ZONE
   ───────────────────────────────────────────── */
.article-banner-zone {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}

/* ─────────────────────────────────────────────
   RELATED ARTICLES
   ───────────────────────────────────────────── */
.related-articles {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e2e8f0;
  margin-bottom: 0;
}

.related-articles > h2 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

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

@media (min-width: 600px) {
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-card {
  display: block;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.related-card:hover {
  border-color: #1f8fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.related-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
  display: block;
}

.related-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
  line-height: 1.4;
}

.related-card p {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 10px;
  line-height: 1.5;
}

.related-link {
  font-size: 13px;
  font-weight: 600;
  color: #1f8fff;
}

/* ─────────────────────────────────────────────
   BACK TO TRACKING
   ───────────────────────────────────────────── */
.back-to-tracking {
  margin: 32px 0;
  text-align: center;
}

.back-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: #1f8fff;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}

.back-cta:hover {
  background: #1673d9;
}

.back-cta:active {
  transform: scale(0.97);
}

/* ─────────────────────────────────────────────
   DICAS INDEX PAGE
   ───────────────────────────────────────────── */
.dicas-hero {
  background: linear-gradient(145deg, #1f8fff 0%, #0d5fb5 100%);
  padding: 40px 16px;
  text-align: center;
  color: #ffffff;
}

.dicas-hero h1 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}

@media (min-width: 600px) {
  .dicas-hero h1 {
    font-size: 32px;
  }
}

.dicas-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.dicas-grid-section {
  max-width: 720px;
  margin: 32px auto;
  padding: 0 16px 48px;
}

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

@media (min-width: 600px) {
  .dicas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dica-card {
  display: block;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.dica-card:hover {
  border-color: #1f8fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.dica-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.dica-card-body {
  padding: 20px;
}

.dica-card-body h2 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.4;
}

.dica-card-body p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 14px;
}

.dica-card-link {
  font-size: 14px;
  font-weight: 600;
  color: #1f8fff;
}
