/* Container principal do vídeo/foto */
#video-container, #photo-container {
  width: 100%;
  
  position: relative;
  overflow: hidden;
  border-radius: 30px;
 border: 5px solid #ff8330;
  margin-top: 5%;
}

/* Vídeo - preenche todo o container */
#video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Foto - mantém as mesmas propriedades do vídeo */
#photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Canvas - escondido mas com dimensões reais */
#canvas {
  display: none;
  position: absolute;
  top: -9999px;
}
linha_BTNSFOTO {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 20px;
  margin-top: 15px;
  justify-content: center;
}  