/* ============================================
   professoras.css
   ============================================ */
.hero-prof {
  background: linear-gradient(135deg, #FBE9DC 0%, #EEEDFE 100%);
  padding: 72px 5% 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-prof .tag { margin-bottom: 18px; }
.hero-prof h1 {
  font-size: clamp(26px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--roxo-escuro);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.hero-prof h1 span { color: var(--laranja); }
.hero-prof p {
  font-size: 15px;
  color: var(--roxo);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.conteudos-section { padding: 80px 5%; background: var(--branco); }
.filtros {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filtro-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1.5px solid var(--borda);
  background: var(--branco);
  font-size: 13px;
  font-weight: 600;
  color: var(--txt2);
  cursor: pointer;
  transition: all 0.2s;
}
.filtro-btn:hover, .filtro-btn.ativo {
  background: var(--laranja);
  border-color: var(--laranja);
  color: #fff;
}
.conteudos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.conteudo-card {
  border: 1.5px solid var(--borda);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  background: var(--branco);
}
.conteudo-card:hover { transform: translateY(-4px); box-shadow: var(--sombra); }
.conteudo-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  overflow: hidden;
}
.conteudo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}
.conteudo-body { padding: 14px 16px; }
.conteudo-tag { margin-bottom: 8px; }
.conteudo-titulo {
  font-size: 14px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 6px;
  line-height: 1.4;
}
.conteudo-desc { font-size: 12px; color: var(--txt2); line-height: 1.6; margin-bottom: 10px; }
.conteudo-link {
  font-size: 12px;
  color: var(--laranja);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: gap 0.2s;
}
.conteudo-link:hover { gap: 7px; }

.agenda-banner-section { padding: 0 5% 80px; }
.newsletter-section { padding: 72px 5%; background: var(--creme); text-align: center; }
.newsletter-section .nl-icon {
  width: 56px; height: 56px;
  background: var(--laranja);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}
.newsletter-section h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--roxo-escuro);
  margin-bottom: 8px;
}
.newsletter-section p { font-size: 14px; color: var(--txt2); margin-bottom: 24px; }
.nl-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}
.nl-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--borda);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  background: var(--branco);
  transition: border-color 0.2s;
}
.nl-form input:focus { border-color: var(--laranja); }
.nl-form button {
  padding: 12px 22px;
  background: var(--laranja);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.nl-form button:hover { background: #c9541a; }

@media (max-width: 768px) {
  .conteudos-grid { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
}
