/* News page styles */
.news-hero {
  background: linear-gradient(135deg, #0a1e1c 0%, #08a6a0 200%);
  color: #fff;
  padding: 100px 0 60px;
  text-align: center;
}
.news-hero h1 { font-size: 2.8rem; margin-bottom: 12px; font-weight: 800; }
.news-hero p { font-size: 1.2rem; opacity: 0.9; max-width: 700px; margin: 0 auto; }
.news-hero .news-date { font-size: 0.95rem; opacity: 0.7; margin-top: 16px; }

.news-main { padding: 40px 0 80px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.news-topics { display: flex; flex-direction: column; gap: 60px; }

.news-topic {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.news-topic-header {
  padding: 32px 40px 20px;
  border-bottom: 1px solid #f0f0f0;
}
.news-badge {
  display: inline-block;
  background: var(--color-accent, #08A6A0);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.news-topic-header h2 { font-size: 2rem; margin-bottom: 8px; font-weight: 800; color: var(--color-dark, #2B2A29); }
.news-topic-header .news-topic-sub { font-size: 1.1rem; color: var(--color-text-secondary, #898989); }

.news-section { padding: 32px 40px; }
.news-section:nth-child(even) { background: #fafafa; }
.news-section h3 { font-size: 1.5rem; font-weight: 700; color: var(--color-dark, #2B2A29); margin-bottom: 12px; }
.news-section p { font-size: 1.05rem; line-height: 1.7; color: var(--color-text, #2B2A29); margin-bottom: 16px; }
.news-section img {
  width: 100%;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.news-section--intro img { max-height: 500px; object-fit: cover; }

.news-specs { background: #f5f5f5; padding: 32px 40px; }
.news-specs h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; }
.news-specs table { width: 100%; border-collapse: collapse; }
.news-specs td { padding: 10px 0; border-bottom: 1px solid #e0e0e0; font-size: 0.95rem; }
.news-specs td:first-child { font-weight: 600; color: var(--color-text-secondary, #898989); width: 35%; }
.news-specs td:last-child { color: var(--color-text, #2B2A29); }

.news-source {
  padding: 20px 40px 32px;
  font-size: 0.85rem;
  color: var(--color-text-secondary, #898989);
}
.news-source a { color: var(--color-accent, #08A6A0); text-decoration: none; }
.news-source a:hover { text-decoration: underline; }

/* Quick request form */
.news-quick-request {
  background: linear-gradient(135deg, #08a6a0 0%, #068580 100%);
  color: #fff;
  padding: 32px 40px;
}
.news-quick-request h3 { color: #fff; font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.news-quick-request p { opacity: 0.9; margin-bottom: 20px; font-size: 0.95rem; }
.news-qr-form { display: flex; flex-direction: column; gap: 16px; max-width: 600px; }
.news-qr-row { display: flex; gap: 16px; }
.news-qr-row .news-qr-field { flex: 1 1 0; }
.news-qr-field { display: flex; flex-direction: column; }
.news-qr-field label { font-size: 0.85rem; opacity: 0.85; margin-bottom: 4px; }
.news-qr-field input,
.news-qr-field textarea {
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  background: rgba(255,255,255,0.95);
  color: #2B2A29;
  width: 100%;
  box-sizing: border-box;
}
.news-qr-field textarea { resize: vertical; min-height: 44px; }
.news-qr-btn {
  background: #2B2A29;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  align-self: flex-start;
}
.news-qr-btn:hover { background: #1a1a1a; }
.news-qr-btn:disabled { opacity: 0.6; cursor: wait; }
.news-qr-status {
  margin-top: 4px;
  font-size: 0.9rem;
  display: none;
}
.news-qr-status.success { display: block; color: #d4f7d4; }
.news-qr-status.error { display: block; color: #ffd4d4; }

/* CTA */
.news-cta { background: var(--color-dark, #2B2A29); color: #fff; padding: 48px 0; text-align: center; }
.news-cta h2 { color: #fff; font-size: 2rem; margin-bottom: 12px; }
.news-cta p { opacity: 0.8; margin-bottom: 24px; }
.news-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.news-cta-btns a {
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.2s;
}
.news-cta-btns a:hover { opacity: 0.9; }
.news-cta-btns .btn-primary { background: var(--color-accent, #08A6A0); color: #fff; }
.news-cta-btns .btn-whatsapp { background: #25D366; color: #fff; }

@media (max-width: 768px) {
  .news-hero h1 { font-size: 2rem; }
  .news-hero p { font-size: 1rem; }
  .news-topic-header { padding: 24px 20px 16px; }
  .news-section { padding: 24px 20px; }
  .news-specs { padding: 24px 20px; }
  .news-source { padding: 16px 20px 24px; }
  .news-quick-request { padding: 24px 20px; }
  .news-qr-row { flex-direction: column; }
  .news-qr-btn { width: 100%; }
}