.bg-g {
    background-color: #132330; /* Ou a cor que você estiver usando */
}

.bg-yellow {
    color: #ffc107;
}

.btn-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.btn-play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.video-thumbnail img {
    object-fit: cover;
    height: auto;
}

.custom-hero {
  position: relative;
  min-height: 100vh;
  background-image: url('preview/img/.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.custom-hero .highlight {
  color: #ffc107; /* ajuste conforme sua identidade visual */
}

/* Garante que o texto fique legível se a imagem for clara */
.custom-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* escurece a imagem de fundo */
  z-index: 0;
}

.custom-hero .container {
  position: relative;
  z-index: 2;
}


.object-fit-cover {
    object-fit: cover;
}

/*@media (max-width: 768px) {*/
    /*.object-fit-cover {*/
        /*object-fit: contain;*/
    /*}*/
/*}*/
