.depoimentos-google {
  background: #050A30;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.depoimentos-google h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.depoimentos-google p {
  font-size: 18px;
  margin-bottom: 40px;
}

.carousel {
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.video-card {
  flex: 0 1 300px;
  max-width: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: scale(1.03);
}

/* Formato 9:16 padrão */
.video-card video {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
  background-color: #000;
}