.section-videos {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  margin: 2rem 0 4rem;
}

.content-videos {
  max-width: var(--width-size);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.videos {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  flex-wrap: wrap;
  background: var(--color-03);
  gap: 3rem;
}

.video {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.frame-video {
  width: 100%;
  padding: 0;
}

.video-titulo {
  font-size: 1.8rem;
  color: var(--color-05);
  padding: 1rem 0.25rem;
}

.responsive-iframe-video {
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px 15px 0 0;
  aspect-ratio: 16/9;
}

@media screen and (min-width: 576px) and (max-width: 767px) {
  .videos {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media screen and (max-width: 575px) {
  .videos {
    grid-template-columns: minmax(0, 1fr);
  }
}