/* Import da fonte Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

/* Seção de depoimentos */
.depoimentos {
  text-align: center;
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Montserrat', sans-serif;
}

.depoimentos h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.depoimentos .subtitulo {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

/* Grid responsivo */
.grid-depoimentos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-items: center;
}

/* Estilo dos cards */
.grid-depoimentos img {
  width: 100%;
  max-width: 280px;
  border-radius: 8px;
  border: 2px solid var(--amarelo); /* moldura amarela */
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-depoimentos img:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* Responsividade */
@media (max-width: 1024px) {
  .depoimentos h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .depoimentos {
    padding: 40px 10px;
  }
  .grid-depoimentos {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .grid-depoimentos img {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .depoimentos h2 {
    font-size: 1.5rem;
  }
  .depoimentos .subtitulo {
    font-size: 0.9rem;
  }
}
