/* ============================================
   RESET 30 — artigo.css
   ============================================ */

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

body {
  font-family: 'Open Sans', sans-serif;
  background: #f9f9f9;
  color: #1a1a1a;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  background: #1a5c2a;
  padding: 14px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.nav-logo {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
}
.nav-logo span { color: #8bc34a; }

.nav-cta {
  background: #8bc34a;
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  padding: 9px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: #7cb342; transform: scale(1.04); }

/* ── LAYOUT ── */
.page-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  max-width: 1100px;
  margin: 48px auto;
  padding: 0 20px;
}

@media (max-width: 860px) {
  .page-wrapper { grid-template-columns: 1fr; }
  aside { display: none; }
}

/* ── ARTICLE ── */
article {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

.article-tag {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

article h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #888;
  font-size: .85rem;
  margin-bottom: 28px;
}
.article-meta i { color: #4caf50; margin-right: 5px; }

.article-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 32px;
}

/* ── CONTEÚDO ── */
article h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #1a5c2a;
  margin: 32px 0 12px;
  padding-left: 12px;
  border-left: 4px solid #8bc34a;
}

article p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.8;
}

article ul {
  margin: 12px 0 20px 20px;
}
article ul li {
  margin-bottom: 8px;
  font-size: .97rem;
  color: #444;
  line-height: 1.6;
}
article ul li::marker { color: #4caf50; }

/* ── ADSENSE ── */
.adsense-slot {
  margin: 28px 0;
  text-align: center;
  min-height: 90px;
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
}

/* ── CTA WHATSAPP ── */
.cta-whatsapp {
  background: linear-gradient(135deg, #1a5c2a 0%, #2e7d32 100%);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin: 36px 0;
  color: #fff;
}
.cta-whatsapp h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.cta-whatsapp p {
  color: rgba(255,255,255,.85);
  margin-bottom: 20px;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
}
.btn-whatsapp:hover { transform: scale(1.05); box-shadow: 0 6px 24px rgba(37,211,102,.5); }
.btn-whatsapp i { font-size: 1.2rem; }

/* ── FONTE ORIGINAL ── */
.fonte-original {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 24px;
  font-size: .9rem;
  color: #666;
}
.fonte-original a { color: #2e7d32; font-weight: 600; text-decoration: none; }
.fonte-original a:hover { text-decoration: underline; }

/* ── RELACIONADOS ── */
.relacionados { margin-top: 40px; }
.relacionados h2 {
  border-left: none;
  padding-left: 0;
  margin-bottom: 20px;
}
.rel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.rel-card {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 18px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.rel-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.rel-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}
.rel-card span { color: #2e7d32; font-size: .82rem; font-weight: 600; }

/* ── SIDEBAR ── */
aside { display: flex; flex-direction: column; gap: 24px; }

.sidebar-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}
.sidebar-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 16px;
  color: #1a5c2a;
}

.mini-form { display: flex; flex-direction: column; gap: 12px; }
.mini-form input {
  padding: 11px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: .9rem;
  font-family: 'Open Sans', sans-serif;
  outline: none;
  transition: border-color .2s;
}
.mini-form input:focus { border-color: #4caf50; }
.btn-mini {
  background: linear-gradient(135deg, #2e7d32, #4caf50);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: opacity .2s;
}
.btn-mini:hover { opacity: .9; }

/* ── FOOTER ── */
footer {
  background: #1a5c2a;
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 36px 20px;
  font-size: .85rem;
  margin-top: 60px;
}
.footer-logo {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.footer-logo span { color: #8bc34a; }

/* ── RESPONSIVO ── */
@media (max-width: 600px) {
  article { padding: 24px 18px; }
  article h1 { font-size: 1.5rem; }
  .article-img { height: 220px; }
  .cta-whatsapp { padding: 24px 18px; }
}
