body {
  background-color: #ffffff;
}

/* Regra de mídia para larguras a partir de 1000px */
@media (min-width: 1000px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1100px;
  }
}

.categoria-btn {
  margin: 4px;
}

.custom-navbar {
  background: #1f1f1f;
}
.custom-navbar .nav-link,
.custom-navbar .navbar-brand {
  color: #fff;
}
.custom-navbar .nav-link:hover {
  color: #0dcaf0;
}

.quick-search-input {
  width: 230px;
  height: 36px;
  font-weight: bold;
  color: #919191;
  border: 2px solid #333;
  border-radius: 20px;
  padding: 4px 30px;
  background: #1d1d1d url(../images/website/icon-search.svg) no-repeat 9px 8px;
}

.card-hover {
  position: relative;
  overflow: hidden;
}
.card-hover img {
  transition: transform 0.9s ease;
  display: block;
  width: 100%;
}
.card-hover:hover img {
  transform: scale(1.1);
}

.card-info-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  padding: 10px;
  font-size: 14px;
}
.card-hover:hover .card-info-overlay {
  opacity: 1;
}
.card-info-overlay p {
  margin-bottom: 0.5rem;
  font-size: 13px;
  color: #f0f0f0;
}
.card-info-overlay .sinopse {
  font-style: normal;
  font-size: 12px;
  color: #ccc;
}
.sinopse-box {
  background-color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  border-radius: 10px;
  max-height: 70px;
  overflow: hidden;
  text-align: center;
}
.card-body {
  padding: 0;
}
.col-md-3 {
  flex: 0 0 auto;
  width: 20%;
}
.fonte-titulo {
  font-family: "Tilt Warp", sans-serif;
  font-size: 35px;
  text-align: left;
}

/* Filtro box */
.filtro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1051;
}
.filtro-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Toast */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #333;
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(-20px);
  z-index: 9999;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}
.toast.error {
  background-color: #e74c3c;
}
.toast.success {
  background-color: #2ecc71;
}

/* Vídeo */
.video-wrapper {
  display: flex;
  justify-content: center;
}
.video-frame {
  padding: 5px;
  background: linear-gradient(135deg, #0bc3bb, #6f42c1);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.video-frame:hover {
  transform: scale(1.03);
}
.video-frame iframe {
  display: block;
  border-radius: 16px;
}

/* Outros estilos */
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.navbar {
  background-color: #222;
  font-size: 16px;
}
.navbar a {
  color: #fff;
}
.navbar a:hover {
  color: rgb(6, 133, 80);
}
a:hover {
  text-decoration: underline;
}

.imagem-p {
  margin: 0 -9px 0;
  width: 259px;
  float: right;
}
.sinopse {
  float: right;
  margin-left: 27px;
  margin-bottom: 10px;
  background: rgba(0, 19, 16, 0.822);
  padding: 10px 15px;
  border-left: 3px solid #00f767;
  border-radius: 8px;
  color: #ddd;
  font-style: italic;
  font-size: 15px;
  text-align: left;
  line-height: 1.5;
  transition: background 0.3s ease;
}
.sinopse:hover {
  background: rgba(0, 255, 195, 0.1);
}

.sinopsepost {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 10px;
  border-left: 7px solid #6ac045;
  border-radius: 29px;
  color: #000000;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 37px;
  transition: background 0.3s ease;
}

.trailer-movie {
  display: flex;
  justify-content: center;
  padding: .5rem .7rem;
  width: 100%;
  border-radius: .3rem;
  background-color: rgb(4, 109, 44);
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 0;
  transition: transform .2s ease-in-out;
}

.trailer-box {
  background: #fefefe;
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  max-width: 280px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-trailer {
  background: linear-gradient(135deg, #e83e8c, #ff69b4);
  border: none;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-trailer:hover {
  background: linear-gradient(135deg, #ff69b4, #e83e8c);
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(232, 62, 140, 0.5);
}

.genero-box {
  display: none;
  position: absolute;
  top: 45px;
  left: 0;
  min-width: 362px;
  max-height: 300px;
  width: 420px;
  overflow-y: auto;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px #000000;
  background-color: #141e2d;
  font-size: 14px;
  z-index: 50000;
}

.label-genero,
.label-formato,
.label-idioma,
.label-tamanho {
  color: #046d1b;
  text-align: left;
}

.texth2 {
  font-size: 10px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: #242424;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
}

.texth1 {
  font-size: 25px;
  font-family: Arial, Helvetica, sans-serif;
}

.texth4 {
  font-size: 18px;
  font-family: Georgia, 'Times New Roman', Times, serif;
}
