/* Banner */
.banner {
  background-image: url('/images/design-interiores-banner.png');
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: white;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 0;
  border-radius: 0 0 12px 12px;
}

.banner h1 {
  font-size: 2.4rem;
  text-transform: uppercase;
  margin: 0;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px;
  background-color: #f3ede3;
  border-radius: 12px;
  color: #333;
  text-align: center;
}

.descricao {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #5b4433;
}

/* Filtros */
.filtros {
  margin-bottom: 30px;
}

.filtro-btn {
  background-color: transparent;
  border: 2px solid #ff8000;
  color: #ff8000;
  padding: 8px 16px;
  margin: 0 8px 10px 0;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.filtro-btn.ativo,
.filtro-btn:hover {
  background-color: #ff8000;
  color: white;
}

/* Galeria */
.galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.galeria-item {
  width: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.galeria-img {
  background-size: cover;
  background-position: center;
  height: 200px;
  transition: transform 0.3s ease;
}

.galeria-img:hover {
  transform: scale(1.05);
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.overlay h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.overlay p {
  font-size: 0.85rem;
  margin: 4px 0 0;
}

/* CTA */
.cta {
  background-color: #d17842;
  color: white;
  padding: 14px 30px;
  font-size: 1.1rem;
  border-radius: 8px;
  margin-top: 40px;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta:hover {
  background-color: #a8582d;
}

/* Video */
.video-box {
  margin-top: 40px;
}

.video-box video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Testemunhos */
.testemunhos {
  margin-top: 60px;
  background-color: #2a3e4e;
  color: white;
  padding: 30px;
  border-radius: 12px;
}

.testemunhos h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.testemunhos blockquote {
  font-style: italic;
  margin: 10px auto;
  max-width: 800px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .galeria-item {
    width: 100%;
  }

  .banner h1 {
    font-size: 1.6rem;
  }

  .filtro-btn {
    margin-bottom: 8px;
  }
}
