/* ==================================================
   BASTIDORES & PROJETOS
   Arquivo dedicado para conteúdos editoriais visuais
   ================================================== */

/* --------------------------
   BASTIDORES
   -------------------------- */

.bastidores-section {
  padding: 100px 0;
  background: #ffffff;
}

.bastidores-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.bastidores-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bastidores-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.1);
}

.bastidores-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.bastidores-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.bastidores-card h3 {
  font-size: 20px;
  margin: 20px;
  font-weight: 700;
  line-height: 1.35;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bastidores-card p {
  margin: 0 20px 25px;
  color: #555;
  line-height: 1.6;
}

/* --------------------------
   PROJETOS (BASE – será expandido)
   -------------------------- */

.projetos-section {
  padding: 100px 0;
  background: #f7f9fc;
}

.projetos-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.projeto-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.projeto-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #005bab;
}

.projeto-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* --------------------------
   RESPONSIVO
   -------------------------- */

@media (max-width: 900px) {
  .bastidores-container {
    grid-template-columns: 1fr;
  }

  .projetos-container {
    grid-template-columns: 1fr;
  }
}
