/* ── CARDS FLUTUANTES DE NOTÍCIAS/PUBLICAÇÕES ── */
.news-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 48px 0 32px 0;
}
.news-float-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(13,140,120,0.08);
  padding: 32px 32px 24px 32px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.news-float-card:hover {
  box-shadow: 0 8px 40px rgba(13,140,120,0.13);
  transform: translateY(-4px) scale(1.012);
}
.news-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 14px;
  margin-top: 6px;
  font-size: 13px;
  color: var(--ink-soft);
}
.news-badge {
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-weight: 500;
  border-radius: 6px;
  padding: 2px 10px;
  font-size: 12px;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 0;
}
.news-badge-green {
  background: #e6f5e9;
  color: #1a7f3c;
}
.news-date {
  font-size: 12px;
  color: var(--ink-soft);
}
.news-author {
  font-size: 12px;
  color: var(--ink-soft);
}
.news-float-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.news-float-excerpt {
  color: var(--ink-mid);
  font-size: 1rem;
  margin-bottom: 18px;
}
.news-float-link {
  color: var(--teal-dark);
  font-weight: 500;
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 10px;
  transition: color 0.2s;
  cursor: pointer;
}
.news-float-link:hover {
  color: var(--teal);
  text-decoration: underline;
}
.news-float-full {
  margin-top: 18px;
  font-size: 15px;
  color: var(--ink-mid);
  background: #f7f9f8;
  border-radius: 10px;
  padding: 18px 18px 10px 18px;
  box-shadow: 0 2px 12px rgba(13,140,120,0.06);
}

@media (max-width: 900px) {
  .news-cards-grid { grid-template-columns: 1fr; }
  .news-float-card { padding: 22px 12px 18px 12px; }
}
/* ── NOVIDADES ── */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.news-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: var(--white);
  transition: box-shadow 0.2s, transform 0.2s;
}
.news-card:hover { box-shadow: 0 6px 32px rgba(13,140,120,0.1); transform: translateY(-3px); }
.news-thumb {
  height: 180px; background: linear-gradient(135deg, var(--teal-pale), #b8e6de);
  display: flex; align-items: center; justify-content: center; font-size: 40px;
}
.news-body    { padding: 20px 22px; }
.news-date    { font-size: 12px; color: var(--ink-soft); margin-bottom: 8px; }
.news-title   { 
  font-weight: 500; 
  color: var(--ink); 
  font-size: 15px; 
  line-height: 1.4; 
  margin-bottom: 20px; 
}

.news-excerpt { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }

.instagram-section { background: var(--cream); padding: 60px 8vw; }

.insta-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 8px; margin-top: 32px;
}
.insta-cell {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--teal-pale), #b8e6de);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 24px; cursor: pointer;
  transition: opacity 0.2s;
}
.insta-cell:hover { opacity: 0.85; }

@media (max-width: 900px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}
