/* RevistaEconômica - Main Stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #9f1239;
  --primary-dark: #881337;
  --bg: #fff1f2;
  --bg2: #ffe4e6;
  --text: #1a1a1a;
  --text-light: #666;
  --white: #fff;
  --border: #e5e7eb;
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --radius: 12px;
}
body { font-family: 'Playfair Display', sans-serif; color: var(--text); background: #f9fafb; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #111; color: #fff; padding: 16px 20px; z-index: 9999; }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-content p { flex: 1; font-size: 13px; }
.cookie-content a { color: #9f1239; }
.btn-cookie { background: #9f1239; color: #fff; border: none; padding: 8px 20px; border-radius: 6px; cursor: pointer; font-weight: 700; font-size: 13px; }
.header { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.header .container { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; font-size: 22px; font-weight: 800; color: #9f1239; }
.logo span { color: var(--text); }
.nav { display: flex; gap: 28px; }
.nav a { text-decoration: none; color: var(--text-light); font-weight: 600; font-size: 15px; transition: color 0.2s; }
.nav a:hover { color: #9f1239; }
.btn-primary { background: #9f1239; color: #fff; padding: 12px 26px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 15px; transition: all 0.2s; display: inline-block; border: none; cursor: pointer; }
.btn-primary:hover { background: #881337; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: #9f1239; padding: 12px 26px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 15px; border: 2px solid #9f1239; transition: all 0.2s; display: inline-block; }
.btn-secondary:hover { background: #9f1239; color: #fff; }
.hero { background: linear-gradient(135deg, #fff1f2, #ffe4e6); padding: 72px 0; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero h1 { font-size: 44px; font-weight: 800; line-height: 1.2; margin-bottom: 18px; }
.hero h1 span { color: #9f1239; }
.hero p { font-size: 17px; color: var(--text-light); margin-bottom: 24px; }
.proof-banner { background: #fff; border-left: 4px solid #9f1239; padding: 14px 18px; border-radius: 0 8px 8px 0; margin-bottom: 24px; }
.proof-banner strong { display: block; color: #9f1239; font-size: 16px; margin-bottom: 4px; }
.proof-banner span { font-size: 13px; color: var(--text-light); }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image img { width: 100%; border-radius: 16px; box-shadow: var(--shadow-lg); }
.stats { background: #9f1239; padding: 28px 0; }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 20px; }
.stat strong { display: block; font-size: 28px; font-weight: 800; color: #fff; }
.stat span { font-size: 13px; color: rgba(255,255,255,0.8); }
.section { padding: 64px 0; }
.section-title { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.section-subtitle { color: var(--text-light); font-size: 16px; margin-bottom: 36px; }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s; }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-card .img-wrap { position: relative; overflow: hidden; }
.article-card .img-wrap img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.3s; }
.article-card:hover .img-wrap img { transform: scale(1.05); }
.article-tag { position: absolute; top: 12px; left: 12px; background: #9f1239; color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.article-body { padding: 20px; }
.article-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.article-body p { color: var(--text-light); font-size: 13px; margin-bottom: 12px; }
.article-meta { font-size: 12px; color: var(--text-light); margin-bottom: 12px; }
.read-more { color: #9f1239; font-weight: 700; text-decoration: none; font-size: 13px; }
.tips-section { background: #fff1f2; }
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tip-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); border-top: 4px solid #9f1239; }
.tip-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.tip-card p { font-size: 14px; color: var(--text-light); }
.testimonials { background: #f9fafb; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.testimonial-header img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testimonial-header strong { display: block; font-size: 15px; }
.testimonial-header span { font-size: 12px; color: var(--text-light); }
.testimonial p { color: var(--text-light); font-style: italic; font-size: 14px; margin-bottom: 10px; }
.stars { color: #f59e0b; font-size: 16px; }
.newsletter { background: #9f1239; padding: 56px 0; text-align: center; }
.newsletter h2 { color: #fff; font-size: 30px; font-weight: 800; margin-bottom: 10px; }
.newsletter p { color: rgba(255,255,255,0.85); font-size: 15px; margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 13px 16px; border-radius: 8px; border: none; font-size: 14px; }
.footer { background: #111827; color: rgba(255,255,255,0.7); padding: 48px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; margin-bottom: 32px; }
.footer-brand p { font-size: 13px; margin-top: 10px; line-height: 1.6; }
.footer-links h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.footer-links a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; margin-bottom: 8px; transition: color 0.2s; }
.footer-links a:hover { color: #9f1239; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 18px; text-align: center; font-size: 12px; }
.page-hero { background: linear-gradient(135deg, #fff1f2, #ffe4e6); padding: 52px 0; }
.page-hero h1 { font-size: 38px; font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 16px; color: var(--text-light); max-width: 560px; }
.page-content { padding: 52px 0; }
.articles-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 52px 0; }
.about-layout img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-text h2 { font-size: 30px; font-weight: 800; margin-bottom: 14px; }
.about-text p { color: var(--text-light); font-size: 15px; margin-bottom: 14px; line-height: 1.7; }
.legal-content { padding: 52px 0; }
.legal-box { max-width: 800px; margin: 0 auto; background: #fff; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.legal-box h2 { font-size: 20px; font-weight: 700; color: #9f1239; margin: 24px 0 10px; }
.legal-box p { color: var(--text-light); font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.legal-box ul { margin: 10px 0 14px 20px; color: var(--text-light); font-size: 14px; }
.legal-box ul li { margin-bottom: 6px; }
.legal-box a { color: #9f1239; }
.contact-form { max-width: 560px; margin: 0 auto; background: #fff; padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: 13px; margin-bottom: 6px; }
.form-group input, .form-group textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; font-family: inherit; }
.form-group textarea { resize: vertical; }
.btn-submit { width: 100%; background: #9f1239; color: #fff; border: none; padding: 12px; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; }
@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .hero-image { display: none; }
  .stats .container { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .articles-list { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
}
