.section-depoimentos-dark {  background: #000000;  padding-left: 60px;  padding-right: 60px;  padding-top: 50px;  padding-bottom: 150px;  color: white;}.section-depoimentos-dark h2 {  font-size: 2.4rem;  color: white;}.depoimentos-grid {  display: grid;  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));  gap: 40px;}.depoimento-card {  background-color: #141414;  border: 1px solid rgba(255,255,255,0.06);  border-radius: 16px;  padding: 32px;  box-shadow: 0 8px 24px rgba(0,0,0,0.4);  opacity: 0;  transform: translateY(40px);  animation: fadeInUp 1s ease forwards;}.depoimento-card.delay-1 {  animation-delay: 0.3s;}.depoimento-card.delay-2 {  animation-delay: 0.6s;}.depoimento-texto {  font-size: 1.1rem;  color: rgba(255,255,255,0.85);  margin-bottom: 16px;  line-height: 1.6;}.depoimento-autor {  font-size: 0.95rem;  color: rgba(255,255,255,0.6);  font-style: italic;}/* Animação */@keyframes fadeInUp {  to {    opacity: 1;    transform: translateY(0);  }}/* Responsivo */@media (max-width: 768px) {  .section-depoimentos-dark h2 {    font-size: 1.8rem;  }  .depoimento-texto {    font-size: 1rem;  }  .depoimento-card {    padding: 24px;  }}/* ------------------------------- PARTE DO VÍDEO -------------------------------  */.videos-depoimentos {  margin-top: 80px;  text-align: center;}.videos-depoimentos h3 {  font-size: 1.8rem;  color: white;}.video-grid {  display: flex;  justify-content: center;  gap: 30px;  margin-top: 20px;  flex-wrap: wrap;}.video-thumb {  width: 380px; /* Tamanho mais compacto */  max-width: 100%;  position: relative;  border-radius: 12px;  overflow: hidden;  box-shadow: 0 6px 20px rgba(0,0,0,0.4);  transition: transform 0.3s ease;  cursor: pointer;}.video-thumb:hover {  transform: scale(1.03);}.video-thumb img {  width: 100%;  height: auto;  display: block;  opacity: 0.9;}.play-overlay {  position: absolute;  top: 50%;  left: 50%;  transform: translate(-50%, -50%);  background: rgba(0,0,0,0.6);  border-radius: 50%;  padding: 12px 16px;}.play-icon {  font-size: 1.5rem;  color: white;}/* Responsivo */@media (max-width: 768px) {  .videos-depoimentos h3 {    font-size: 1.4rem;  }  .play-icon {    font-size: 1.3rem;  }  .video-thumb {    max-width: 100%;  }}.video-player {  width: 100%;  height: auto;  border-radius: 12px;  display: block;  box-shadow: 0 6px 20px rgba(0,0,0,0.4);  transition: transform 0.3s ease;}.video-player:hover {  transform: scale(1.03);}