/* Definir a fonte Poppins */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
}

.video-container {
  max-height: 1240px;
  overflow-y: auto;
  position: relative;
}

.video-container::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}

/* Clientes */
.clientes-page {
  text-align: center;
  padding: 40px 20px;
}

.clientes-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    color: var(--primary-red);
    margin-bottom: 30px;
}

.clientes-separator {
  width: 1000px;
  max-width: 100%;
  border: 1px solid #000;
  margin: 0 auto 40px auto;
}

/* Container principal */
.clientes-videos {
  display: flex;
  justify-content: center;
  gap: 8px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Cada coluna */
.coluna-menor,
.coluna-maior {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

/* Blocos de vídeo */
.video-placeholder {
  width: 100%;
  height: 100%;
  background-color: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video {
  background: #d9d9d9;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  overflow: hidden;
}

.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tamanhos fixos */
.coluna-menor .video {
  height: 374px;
}

.coluna-maior .video {
  height: 532px;
}

/* Status da ordem */
.order-status {
  margin-top: 20px;
  padding: 10px;
  background-color: #f5f5f5;
  border-radius: 4px;
  display: inline-block;
}

/* Responsividade */
@media (max-width: 1024px) {
  .clientes-videos {
    flex-wrap: wrap;
  }

  .coluna-menor,
  .coluna-maior {
    flex: 1 1 calc(50% - 15px);
  }
}

/* ====== Versão Mobile (Celulares) ====== */
@media (max-width: 680px) {

  /* ===== CONFIGURAÇÃO GERAL ===== */
  html,
  body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  main {
    width: 100%;
  }

  #header,
  #footer {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 680px) {

  .coluna-menor .video {
    height: 618px;
  }

  .clientes-videos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .coluna-menor,
  .coluna-maior {
    flex: none;
    width: 335px;
  }

  .video {
    width: 335px;
    height: 618px;
  }

  .video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}