.video-grid-section {
  max-width: 1200px;
  margin: 0 auto 20px auto; /* centraliza a coluna */
  /* padding: 20px; */
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  /* padding: 20px; */
  gap: 20px;
}

.video-card {
  width: 100%;
  max-width: 285px;
  height: 670px;
  /* margin: 10px; */
  border-radius: 30px;
  overflow: hidden;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.video-card video {
  width: 265px;
  margin: 10px 10px 0 10px;
  /* padding-top: 177.78%; 9:16 aspect ratio */
  height: auto;
  border-radius: 20px;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.image-preview {
  width: 265px;
  margin: 10px 10px 0 10px;
  /* padding-top: 177.78%; 9:16 aspect ratio */
  height: auto;
  border-radius: 20px;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.video-card h3 {
  margin: 15px 10px 0 10px;
  /* color: var(--text-color); */
  font-family: 'montserrat-variable', sans-serif;
  font-size: 18px;
}

.video-grid a {
  /* font-size: 1.2em;
  color: var(--text-color); */
  display: block;
  color: inherit;
  text-decoration: none;
}

.video-grid a:visited {
  color: inherit;
}

.video-card p {
  margin: 10px;
  /* font-size: 1em; */
  /* color: var(--text-color); */
  /* height: 50px; */
  font-family: 'inter-variable', sans-serif;
  font-size: 16px;
}

/* .video-card video:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
} */

/* .video-card video::before {
  content: "";
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 1);
} */

.video-container {
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
  /* height: 100vh; */
  /* padding: 20px; */
  position: relative;
  width: 100%;
  padding-top: 177.78%; /* 9:16 aspect ratio */
  height: 0;
  /* height: 100%; */
  /* padding-left: 56.25%; 9:16 aspect ratio */
  /* width: 0; */
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
