/*================================================
[  Table of contents  ]
================================================
==> Fonts
==> Import css
==> Moz Selection
==> General
==> HTML Tages
==> Section 
==> Container
==> Loading
==> Back to Top
==> Button Core
==> Single Tv Season
==> Quote From
==> Table
==> Login, Register
==> Pricing Plan
==> Blog Sidebar
==> Blog
==> Pagination
==> Home Blog
==> Breadcrum
==> Header
==> Footer
==> Team
==> Video Popup
==> OWL Carousel
==> Gen Slick
==> Carousel Movies
==> Movies Single
==> Banner
==> Banner 2
==> Banner 3
==> Play Button
==> Icon-Box
================================================*/

/*=============================================
Fonts
==============================================*/
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap");

/*==============================================
Import css
===============================================*/

@import url("all.min.css");
@import url("fontawesome.min.css");
@import url("ionicons.min.css");
@import url("slick.min.css");
@import url("owl.carousel.min.css");
@import url("magnific-popup.min.css");

/*================================================
Moz Selection
================================================*/
:root {
  --primary-color: #ff9800;
  --primarydark-color: #d47a04;
  --black-color: #141b29;
  --dark-color: #0a0e16;
  --secondary-color: #bbb8b4;
  --grey-color: #f5f5f1;
  --white-color: #ffffff;
  --body-fonts: "Roboto", sans-serif;
  --title-fonts: "Jost", sans-serif;
}

::-moz-selection {
  text-shadow: none;
  background: var(--primary-color);
  color: #fff;
}

::-moz-selection {
  text-shadow: none;
  background: var(--primary-color);
  color: #fff;
}

::selection {
  text-shadow: none;
  background: var(--primary-color);
  color: #fff;
}

/*================================================
General
================================================*/
body {
  background: var(--dark-color);
  font-family: var(--body-fonts);
  font-size: 1rem;
  font-style: normal;
  font-weight: normal;
  line-height: 2;
  color: var(--secondary-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-fonts);
  color: var(--white-color);
  font-style: normal;
  text-transform: capitalize;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.02em;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 40px;
  font-style: normal;
  line-height: 48px;
}

h2 {
  font-size: 36px;
  font-style: normal;
  line-height: 44px;
}

h3 {
  font-size: 32px;
  font-style: normal;
  line-height: 40px;
}

h4 {
  font-size: 28px;
  font-style: normal;
  line-height: 36px;
}

h5 {
  font-size: 24px;
  font-style: normal;
  line-height: 32px;
}

h6 {
  font-size: 20px;
  font-style: normal;
  line-height: 28px;
}

/*=============================================== 
HTML Tags 
=================================================*/

/* Estilo da div de mensagem de erro */
/* Estilo da div de mensagem de erro */
/* Estilo da div do container de erro */
.success-container {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 255, 0, 0.8); /* Cor verde para sucesso */
  color: white;
  padding: 20px;
  border-radius: 5px;
  z-index: 1000;
  width: 80%;
  max-width: 500px;
}

.success-message {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.success-text {
  flex: 1;
}

.close-button {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  margin-left: 10px;
}

.close-button:hover {
  color: #ddd;
}

.error-container {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 0, 0, 0.8);
  color: white;
  padding: 20px;
  border-radius: 5px;
  z-index: 1000;
  width: 80%;
  max-width: 500px;
}

.error-message {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.error-text {
  flex: 1;
}

.close-button {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  margin-left: 10px;
}

.close-button:hover {
  color: #ddd;
}
/* Estilos para o formulário de pesquisa */
#search-form {
  position: fixed;
  top: 60px; /* Ajuste de acordo com a altura do seu header */
  right: 20px;
  z-index: 1000;
  display: none;
  /* Outros estilos necessários */
}

#search-form.active {
  display: block;
}

a,
.button {
  color: var(--primary-color);
  outline: none !important;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

a:focus,
a:hover {
  color: var(--primary-color);
  outline: none;
  text-decoration: none !important;
}

p {
  margin-bottom: 30px;
}

img {
  max-width: 100%;
  height: auto;
}

pre {
  background: var(--white-color);
  padding: 15px;
  border: 1px solid var(--grey-color);
}

hr {
  margin: 0;
  padding: 0px;
  border-bottom: 1px solid #e0e0e0;
  border-top: 0px;
}

b,
strong {
  font-weight: 600;
}

/*===== Lists (Nested) =====*/
ol,
ul {
  padding-left: 25px;
  margin-bottom: 1em;
}

ol li {
  list-style: decimal;
}

ol ol {
  padding-left: 25px;
}

ul li {
  list-style: inherit;
}

/*===== Definition Lists =====*/
dl dd {
  margin-bottom: 15px;
}

dl dd:last-child {
  margin-bottom: 0px;
}

/*===== Table =====*/
table {
  border: 2px solid #3f2d13;
  width: 100%;
  margin-bottom: 20px;
}

table td,
table th {
  border: 2px solid #362c1e;
  padding: 8px;
  text-align: center;
}

/*===== Input Textarea =====*/
input,
input.form-control {
  background: var(--black-color);
  border: 1px solid var(--black-color);
  color: var(--white-color);
  width: 100%;
  float: left;
  font-size: 16px;
  padding: 0 15px;
  height: 54px;
  line-height: 54px;
  outline: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

input:focus,
input:hover,
textarea:focus,
textarea:hover,
.form-control:focus {
  border-color: var(--primarydark-color);
  outline: none;
}

input[type="radio"],
input[type="checkbox"] {
  width: auto;
  height: auto;
  float: none;
  margin-right: 5px;
}

textarea {
  background: var(--black-color);
  border: 1px solid var(--black-color);
  color: var(--white-color);
  width: 100%;
  float: left;
  padding: 10px 15px;
  outline: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

input::placeholder,
textarea::placeholder {
  color: var(--secondary-color);
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--secondary-color);
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: var(--secondary-color);
}

/*===== Select =====*/
select,
select.form-control {
  border: 1px solid var(--black-color);
  color: var(--white-color);
  background: var(--black-color);
  width: 100%;
  float: left;
  padding: 0 30px 0 30px;
  height: 51px;
  line-height: 48px;
  outline: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23999999' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px bottom 50%;
  background-size: 20px 20px;
}

/*======= Library ========*/

.gen-library form input {
  margin-bottom: 30px;
}

.gen-library form label {
  display: block;
}

.gen-library form .form-button {
  margin-bottom: 30px;
}

/*============================================ 
Section 
==============================================*/
section,
.gen-section-padding {
  padding: 30px 0; /* Reduzido para um espaçamento mais equilibrado */
}

.gen-section-padding-2 {
  padding: 60px 0 40px; /* Ajustado para espaçamento consistente, sem exagero */
}

.gen-section-padding-3 {
  padding: 80px 0 80px; /* Mantendo proporcionalidade */
}

@media (max-width: 1200px) {
  section,
  .gen-section-padding {
    padding: 25px 0; /* Reduzido para telas médias */
  }

  .gen-section-padding-2 {
    padding: 50px 0 30px; /* Ajustado para telas médias */
  }

  .gen-section-padding-3 {
    padding: 60px 0 60px; /* Espaçamento proporcional */
  }
}

@media (max-width: 768px) {
  section,
  .gen-section-padding {
    padding: 20px 0; /* Mais compacto para telas pequenas */
  }

  .gen-section-padding-2 {
    padding: 40px 0 20px; /* Reduzido para telas menores */
  }

  .gen-section-padding-3 {
    padding: 50px 0 50px; /* Ajuste uniforme */
  }
}

@media (max-width: 480px) {
  section,
  .gen-section-padding {
    padding: 15px 0; /* Bem compacto para telas muito pequenas */
  }

  .gen-section-padding-2 {
    padding: 30px 0 15px; /* Ajustado para telas muito pequenas */
  }

  .gen-section-padding-3 {
    padding: 40px 0 40px; /* Proporcional */
  }
}

/*========================================= 
Container 
===========================================*/

.container {
  max-width: 1710px;
}

@media (max-width: 1699px) {
  .container {
    max-width: 95%;
  }
}

@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 1023px) {
  .container {
    max-width: 100%;
  }
}

.container-2 {
  max-width: 1300px;
}

/*======Border=======*/

.gen-top-border {
  border-top: 1px solid #302618;
}

/*================================================
Loading
================================================*/
#gen-loading {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: var(--dark-color);
}

#gen-loading img {
  height: 75px;
}

@media (max-width: 479px) {
  #gen-loading img {
    height: 60px;
  }
}

/*================================================
Back to Top
================================================*/
#back-to-top .top {
  position: fixed;
  bottom: 75px;
  right: 30px;
  margin: 0px;
  color: var(--white-color);
  background: var(--primary-color);
  z-index: 999;
  border: 1px solid var(--primary-color);
  font-size: 26px;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  -webkit-border-radius: 00px;
  -moz-border-radius: 00px;
  border-radius: 10px;
}

#back-to-top .top:hover {
  background: var(--primarydark-color);
  color: var(--white-color);
  border: 1px solid var(--primarydark-color);
}

/*================================================
Go to Bottom
================================================*/
#go-to-bottom .bottom {
  position: fixed;
  bottom: 15px; /* Posiciona o botão um pouco abaixo do 'back-to-top' */
  right: 30px;
  margin: 0px;
  color: var(--white-color);
  background: var(--primary-color);
  z-index: 999;
  border: 1px solid var(--primary-color);
  font-size: 26px;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 10px;
}

#go-to-bottom .bottom:hover {
  background: var(--primarydark-color);
  color: var(--white-color);
  border: 1px solid var(--primarydark-color);
}

/*================================================
Button Core
================================================*/
input[type="button"],
[type="reset"],
[type="submit"] {
  padding: 12px 30px;
  font-family: var(--title-fonts);
  font-size: 16px;
  background: var(--primary-color);
  color: var(--white-color);
  text-transform: capitalize;
  color: var(--white-color) !important;
  display: inline-block;
  border: none;
  width: auto;
  height: auto;
  line-height: 2;
  text-transform: uppercase;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover {
  color: var(--white-color) !important;
}

.gen-button {
  text-transform: uppercase;
  position: relative;
  width: auto;
  font-weight: 400;
  background: var(--primary-color);
  color: var(--white-color);
  font-family: var(--title-fonts);
  font-size: 16px;
  padding: 12px 30px;
  line-height: 2;
  vertical-align: middle;
  border: none;
  display: inline-block;
  overflow: hidden;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

/* Posicionamento específico dos botões */
#watch-movie-btn,
#download-movie-btn {
  padding: 10px 20px;
  position: absolute;
  bottom: 10px; /* Ambos os botões a 10px da parte inferior */
  transform: translateX(0); /* Remove centralização individual */
}

/* Botão "Watch Movie" alinhado à esquerda */
#watch-movie-btn {
  left: 10%; /* Alinhado à esquerda com margem de 10% */
}

/* Botão "Download Movie" alinhado à direita */
#download-movie-btn {
  right: 10%; /* Alinhado à direita com margem de 10% */
}

/* Ajustes de responsividade para telas menores */
@media (max-width: 768px) {
  #watch-movie-btn,
  #download-movie-btn {
    padding: 8px 15px; /* Reduz padding em telas menores */
    font-size: 14px; /* Reduz tamanho da fonte */
  }

  #watch-movie-btn {
    left: 8%; /* Ajusta alinhamento à esquerda */
  }

  #download-movie-btn {
    right: 8%; /* Ajusta alinhamento à direita */
  }
}

@media (max-width: 480px) {
  #watch-movie-btn,
  #download-movie-btn {
    padding: 6px 10px; /* Padding ainda menor para telas muito pequenas */
    font-size: 12px; /* Tamanho da fonte ainda menor */
  }

  #watch-movie-btn {
    left: 5%; /* Alinha mais próximo do centro */
  }

  #download-movie-btn {
    right: 5%; /* Alinha mais próximo do centro */
  }
}
.gen-button-dark {
  background: #ff9800;
}

.gen-button-flat {
  padding: 5px 30px;
}

.gen-button span {
  z-index: 9;
  position: relative;
}

.gen-button i {
  margin-right: 10px;
}

.gen-button:hover,
.gen-button:focus {
  color: var(--white-color);
  background: var(--primarydark-color);
}

/*===== Button link =====*/
.gen-button.gen-button-link {
  padding: 0;
  background: transparent;
  color: var(--white-color);
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

.gen-button.gen-button-link:hover {
  color: var(--white-color);
}

.gen-button.gen-button-link i {
  margin-right: 10px;
  height: 56px;
  width: 56px;
  display: inline-block;
  line-height: 56px;
  background: var(--white-color);
  color: var(--primary-color);
  text-align: center;
  -webkit-border-radius: 900px;
  -moz-border-radius: 900px;
  border-radius: 900px;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.gen-button.gen-button-link:hover i {
  background: var(--primary-color);
  color: var(--white-color);
}

/*===== Button outline =====*/
.gen-button.gen-button-outline {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.gen-button.gen-button-outline:hover {
  color: var(--blue-color);
  border: 1px solid var(--blue-color);
}

/*================================================
Single Tv Show
===============================================*/
.gen-tv-show-top {
  margin: 90px 0;
}

.gen-season-holder {
  margin-bottom: 60px;
}

.gen-season-holder .nav {
  margin: 0 0 30px 0;
}

.gen-season-holder .nav li {
  margin: 0 15px 0 0;
}

.gen-season-holder .nav li:last-child {
  margin-right: 0;
}

.gen-season-holder .nav li a {
  background: var(--black-color);
  color: var(--white-color);
  padding: 12px 45px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.gen-season-holder .nav li a.active {
  background: var(--primary-color);
  color: var(--white-color);
}

@media (max-width: 1023px) {
  .gen-season-holder .nav {
    margin: 30px 0;
  }
}

/*================================================
Single Tv Season
===============================================*/
.single-episode .gen-single-tv-show-info,
.single-video .gen-single-video-info {
  margin-bottom: 60px;
  margin-top: 30px;
  display: inline-block;
  width: 100%;
}

.gen-episode-contain .gen-episode-img {
  position: relative;
  overflow: hidden;
}

.gen-episode-contain .gen-episode-img:before {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: 9;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  opacity: 0.4;
  background: rgb(27, 18, 12);
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.gen-episode-contain:hover .gen-episode-img:before {
  opacity: 0.9;
}

.gen-episode-contain:hover .gen-info-contain {
  border-bottom: 3px solid var(--primary-color);
}

.gen-episode-contain .gen-episode-img img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.gen-episode-contain:hover .gen-episode-img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.gen-episode-contain .gen-episode-img .gen-movie-action {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 9;
}

.gen-episode-contain .gen-episode-img .gen-movie-action .gen-button {
  border-radius: 900px;
  padding: 0;
  width: 60px;
  height: 60px;
  opacity: 0;
  display: inline-block;
  line-height: 60px;
  text-align: center;
}

.gen-episode-contain .gen-episode-img .gen-movie-action .gen-button i {
  margin: 0;
  padding: 0;
}

.gen-episode-contain:hover .gen-episode-img .gen-movie-action .gen-button {
  opacity: 1;
}

.gen-episode-contain .gen-episode-info h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tab-content .gen-single-meta-holder ul {
  margin: 0 0 0;
  padding: 0;
  display: flex;
  list-style: none;
}

.tab-content .gen-single-meta-holder ul li {
  list-style: none;
  margin: 10px 15px 0px 0;
  padding: 0;
  font-size: 10px;
  line-height: normal;
  display: flex;
  align-items: center;
  color: var(--white-color);
}

.tab-content .gen-single-meta-holder ul li.release-date {
  color: var(--white-color);
  background: var(--primary-color);
  padding: 2px 5px;
}

.tab-content .gen-single-meta-holder ul li:last-child {
  border-right: 0;
  margin-right: 0;
}

/*================================================
Quote From
===============================================*/
.gen-form input[type="text"],
.gen-form textarea,
.gen-form input[type="email"] {
  width: 100%;
  margin-bottom: 30px;
} /*================================================
Table
===============================================*/
.gen-comparison-table .table.table-striped {
  margin: 0;
  width: 100%; /* A tabela ocupa toda a largura disponível */
  table-layout: fixed; /* Impede que as colunas se expandam excessivamente */
  overflow-x: auto; /* Garante que a tabela seja rolável horizontalmente se necessário */
}

.gen-comparison-table .table th,
.gen-comparison-table .table td {
  padding: 10px 5px; /* Reduzido para melhorar responsividade */
  color: var(--white-color);
  word-wrap: break-word; /* Impede que o texto ultrapasse os limites da célula */
  text-align: center; /* Centraliza o texto nas células */
  font-size: 16px; /* Ajuste de tamanho de fonte para facilitar a leitura */
}

.gen-comparison-table .table-bordered th,
.gen-comparison-table .table-bordered td {
  border: 1px solid #222d42;
  background: var(--black-color);
}

.gen-comparison-table .table-bordered thead th {
  background-color: #1f80e0;
}

.gen-comparison-table .table-bordered thead th,
.gen-comparison-table .table-bordered thead td {
  border-color: #222d42;
}

.gen-comparison-table .table-striped tbody tr:nth-of-type(odd) {
  background: #222d42;
}

.gen-comparison-table .table-striped tbody tr td:first-child {
  font-weight: 600;
  font-family: var(--title-fonts);
}

.gen-comparison-table .table-striped thead tr th {
  font-weight: 600;
  font-family: var(--title-fonts);
  font-size: 22px; /* Ajusta para telas grandes */
  line-height: 28px;
  text-transform: uppercase;
}

.gen-comparison-table .table-striped tbody tr:first-child td span:first-child {
  font-weight: 600;
  font-family: var(--title-fonts);
  font-size: 26px; /* Ajusta o tamanho da fonte para maior legibilidade */
  line-height: 32px;
}

.gen-comparison-table .gen-button {
  white-space: nowrap;
}

.gen-comparison-table .cell-inner i {
  font-size: 22px;
  line-height: 30px;
}

/* Responsividade para telas médias (até 1023px) */
@media (max-width: 1023px) {
  .gen-comparison-table .table th,
  .gen-comparison-table .table td {
    padding: 12px 6px; /* Reduz o padding para telas médias */
    font-size: 12px; /* Ajuste de tamanho da fonte */
  }

  .gen-comparison-table .table-striped thead tr th {
    font-size: 12px; /* Ajuste para telas médias */
  }

  .gen-comparison-table
    .table-striped
    tbody
    tr:first-child
    td
    span:first-child {
    font-size: 28px; /* Ajusta o tamanho da fonte para o primeiro item */
  }

  .gen-comparison-table .table-bordered thead th:first-child {
    min-width: 180px; /* Diminui a largura mínima para telas médias */
    line-height: normal;
    display: inline-block;
    min-height: 50px; /* Ajusta a altura mínima da célula */
  }
}

/* Responsividade para telas pequenas (menos de 600px) */
@media (max-width: 600px) {
  .gen-comparison-table .table th,
  .gen-comparison-table .table td {
    padding: 8px 4px; /* Reduz o padding em telas menores */
    font-size: 8px; /* Diminui o tamanho da fonte */
  }

  .gen-comparison-table .table-striped thead tr th {
    font-size: 8px; /* Ajusta o tamanho da fonte do cabeçalho para telas pequenas */
  }

  .gen-comparison-table
    .table-striped
    tbody
    tr:first-child
    td
    span:first-child {
    font-size: 24px; /* Ajusta o tamanho da fonte do primeiro item para telas pequenas */
  }

  .gen-comparison-table .table {
    width: 100%; /* Garante que a tabela ocupe toda a largura */
    overflow-x: auto; /* Permite rolagem horizontal, se necessário */
  }
}

/*================================================
Login, Register
===============================================*/
.gen-login-page-background,
.gen-register-page-background,
.recover-password-page-background {
  filter: blur(6px);
  -webkit-filter: blur(6px);
  background-size: cover !important;
  background-position: center center !important;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 10px;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.gen-login-page-background:before,
.gen-register-page-background:before,
.recover-password-page-background:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  background: rgb(10, 14, 23);
  background: linear-gradient(
    90deg,
    rgba(10, 14, 23, 0.6) 0%,
    rgba(10, 14, 23, 0.6) 100%
  );
  z-index: 9;
}

.gen-pms-login .content-area .site-main,
.gen-pms-login .content-area .site-main,
.gen-pms-recover-password .content-area .site-main {
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
}

#pms_login {
  border-radius: 15px;
  padding: 30px;
  background: var(--dark-color);
  position: relative;
  z-index: 9;
  width: 500px;
  display: inline-block;
  text-align: left;
}

#pms_login strong {
  font-weight: 400;
}

#pms_login h4,
#pms_register-form h4,
#pms_recover_password_form h4 {
  border-bottom: 1px solid var(--black-color);
  position: relative;
  margin: 0px 0 20px 0;
  padding: 0 0 10px 0;
  text-transform: uppercase;
}

#pms_login h4:before,
#pms_register-form h4:before,
#pms_recover_password_form h4:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  display: inline-block;
  width: 100px;
  height: 3px;
  background: var(--primary-color);
}

#pms_login p {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}

#pms_login p.login-submit {
  margin-bottom: 0;
}

#pms_login p label {
  margin: 0;
  font-family: var(--title-fonts);
  color: var(--white-color);
  font-weight: 400;
  line-height: 26px;
  font-size: 18px;
}

#pms_login p input {
  border-radius: 15px;
}

/*==========*/
.gen-pms-register .content-area .site-main {
  display: flex;
  align-items: center;
  text-align: center;
  height: 100vh;
}

#pms_register-form {
  padding: 30px;
  background: var(--dark-color);
  position: relative;
  border-radius: 15px;
  z-index: 9;
  width: 750px;
  display: inline-block;
  text-align: left;
}

form#pms_register-form.pms-form ul.pms-form-fields-wrapper li label {
  margin: 0;
  font-family: var(--title-fonts);
  color: var(--white-color);
  font-weight: 400;
  line-height: 26px;
  font-size: 18px;
}

form#pms_register-form.pms-form input {
  border-radius: 10px;
}

form#pms_register-form.pms-form ul.pms-form-fields-wrapper li {
  display: inline-block;
  width: 48%;
  float: left;
  margin-bottom: 15px;
  position: relative;
}

form#pms_register-form.pms-form ul.pms-form-fields-wrapper li:nth-child(even) {
  float: right;
}

form#pms_register-form.pms-form
  ul.pms-form-fields-wrapper
  li.pms-field.pms-field-subscriptions {
  width: 100%;
}

#pms_register-form .pms-subscription-plan {
  margin-bottom: 0;
  margin-top: 15px;
}

#pms_register-form #pms-paygates-wrapper {
  margin-bottom: 0;
  margin-top: 15px;
}

#pms_register-form #pms-paygates-inner label input.pms_pay_gate {
  margin-left: 15px;
}

.pms_field-errors-wrapper {
  position: absolute;
  left: 15px;
  bottom: 15px;
}

.pms_field-errors-wrapper p {
  margin: 0;
}

/*==========*/
#pms_recover_password_form {
  padding: 30px;
  background: var(--dark-color);
  position: relative;
  z-index: 9;
  width: 500px;
  display: inline-block;
  text-align: left;
}

#pms_recover_password_form ul.pms-form-fields-wrapper li {
  display: inline-block;
  width: 100%;
}

#pms_recover_password_form ul.pms-form-fields-wrapper li label {
  margin: 0;
  font-family: var(--title-fonts);
  color: var(--white-color);
  font-weight: 400;
  line-height: 26px;
  font-size: 18px;
}

/*==========*/
.gentechtreethemes-contain .pms-account-navigation ul {
  margin: 0 0 30px 0 !important;
}

.gentechtreethemes-contain .pms-account-navigation ul li a {
  background: var(--black-color);
  font-family: var(--title-fonts);
  font-weight: normal;
  color: var(--white-color);
  padding: 12px 45px;
  box-shadow: none !important;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.gentechtreethemes-contain
  .pms-account-navigation
  ul
  li
  a.pms-account-navigation-link--active {
  box-shadow: none !important;
  background: var(--primary-color);
  color: var(--white-color);
}

#pms_new_subscription-form {
  padding: 30px;
  background: var(--black-color);
  position: relative;
  z-index: 9;
  width: 500px;
  display: inline-block;
  text-align: left;
}

#pms_new_subscription-form ul.pms-form-fields-wrapper li {
  margin: 0;
}

#pms_new_subscription-form
  ul.pms-form-fields-wrapper
  li
  .pms-subscription-plan {
  margin-bottom: 15px;
}

/*==========*/
form#pms_edit-profile-form.pms-form ul.pms-form-fields-wrapper li {
  width: 32.1111%;
  float: left;
  display: inline-block;
  margin-right: 30px;
}

form#pms_edit-profile-form.pms-form ul.pms-form-fields-wrapper li:nth-child(3),
form#pms_edit-profile-form.pms-form ul.pms-form-fields-wrapper li:nth-child(6) {
  margin-right: 0;
}

@media (max-width: 1399px) {
  form#pms_edit-profile-form.pms-form ul.pms-form-fields-wrapper li {
    width: 31%;
  }
}

@media (max-width: 1023px) {
  #pms_register-form {
    width: 100%;
  }
}

@media (max-width: 979px) {
  form#pms_edit-profile-form.pms-form ul.pms-form-fields-wrapper li {
    width: 30.66%;
  }
}

@media (max-width: 767px) {
  .gen-pms-login .content-area .site-main,
  .gen-pms-register .content-area .site-main {
    height: inherit;
  }

  #pms_login,
  #pms_register-form,
  #pms_recover_password_form,
  #pms_new_subscription-form {
    width: 100%;
    padding: 30px 15px;
  }

  form#pms_register-form.pms-form ul.pms-form-fields-wrapper li {
    width: 100%;
  }

  #pms_login h4,
  #pms_register-form h4,
  #pms_recover_password_form h4 {
    font-size: 20px;
    line-height: 28px;
  }

  form#pms_edit-profile-form.pms-form ul.pms-form-fields-wrapper li {
    width: 100%;
    margin-right: 0;
  }

  .gentechtreethemes-contain .pms-account-navigation ul li a {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
}

.nav-link:focus,
.nav-link.active {
  color: --primary-color; /* Cor do texto ao focar */ /* Cor de fundo ao focar */
  outline: none; /* Remove o contorno padrão */
}

/*================================================
Pricing Plan
================================================*/
.gen-price-block {
  background: var(--black-color);
  overflow: hidden;
}

.gen-price-block.active .gen-price-detail {
  background: var(--primary-color);
}

.gen-price-block .gen-price-detail {
  position: relative;
  padding: 30px;
  background: var(--black-color);
  z-index: 9;
  color: var(--white-color);
}

.gen-price-block .gen-price-detail .gen-price-title {
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--white-color);
  font-family: var(--title-fonts);
}

.gen-price-block .gen-price-detail .price {
  color: var(--white-color);
  font-size: 60px;
  line-height: normal;
}

.gen-price-block .gen-price-detail .gen-price-duration {
  font-size: 18px;
  line-height: 26px;
  color: var(--white-color);
  font-weight: normal;
  margin-bottom: 0;
}

.gen-price-block .gen-bg-effect {
  position: absolute;
  left: 0;
  bottom: 0;
  margin-bottom: 0 !important;
  z-index: -1;
  opacity: 0.2;
}

.gen-price-block .gen-list-info {
  margin: 0;
  padding: 30px;
}

.gen-price-block .gen-list-info li {
  list-style: none;
  line-height: 45px;
  color: var(--white-color);
  font-size: 18px;
}

.gen-price-block .gen-list-info li del {
  color: var(--secondary-color);
}

.gen-price-block .gen-button {
  margin-bottom: 30px;
}

@media (max-width: 1190px) {
  .gen-price-block .gen-price-detail .price {
    font-size: 54px;
  }
}

@media (max-width: 979px) {
  .gen-price-block .gen-price-detail .price {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .gen-price-block .gen-list-info li {
    line-height: 24px;
    font-size: 16px;
    margin-bottom: 15px;
  }

  .gen-price-block .gen-list-info li:last-child {
    margin-bottom: 0;
  }

  .gen-price-block .gen-list-info {
    padding: 30px 15px;
  }

  .gen-price-block .gen-price-detail .price {
    font-size: 40px;
  }

  .gen-price-block .gen-price-detail {
    padding: 15px;
  }
}

/*================================================
Blog Sidebar
================================================*/
.widget {
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
  float: left;
  position: relative;
  padding: 30px;
  background: var(--black-color);
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.widget:last-child {
  margin-bottom: 0;
}

/*+++++ Widget Title +++++*/
.widget .widget-title {
  margin-bottom: 15px;
  padding: 0;
  font-size: 24px;
  position: relative;
  line-height: 32px;
}

/*+++++ SideBar - Search +++++*/
.widget.widget_search .widget-title {
  color: var(--white-color);
}

.widget.widget_search .widget-title:before {
  background: var(--white-color);
}

.widget.widget_search input {
  border: 1px solid transparent;
  color: var(--dark-color);
  background: var(--white-color);
}

.widget.widget_search input:focus,
.widget.widget_search input:hover {
  border: 1px solid transparent;
  color: var(--primary-color);
}

.widget.widget_search input::placeholder {
  color: var(--dark-color);
}

.widget.widget_search input:-ms-input-placeholder {
  color: var(--dark-color);
}

.widget.widget_search input::-ms-input-placeholder {
  color: var(--dark-color);
}

.search-form {
  position: relative;
}

.search-form label {
  width: 100%;
  margin-bottom: 0;
  float: left;
  width: 100%;
}

.search-submit {
  border: none;
  padding: 0;
  position: absolute;
  text-align: center;
  color: var(--white-color) !important;
  line-height: 54px;
  height: 54px;
  width: 54px;
  top: 0;
  right: 0;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.search-submit:before {
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
}

.search-submit:hover {
  color: var(--white-color) !important;
  background: var(--primarydark-color);
  outline: none;
}

/*+++++ widget-menu +++++*/
.widget ul {
  padding: 0;
  margin: 0;
}

.widget ul li {
  list-style: none;
  margin: 0 0 15px 0;
}

.widget ul li:last-child {
  margin-bottom: 0;
}

.widget ul ul.children {
  padding-left: 25px;
  margin-top: 15px;
}

.widget ul li a {
  padding: 0 0 0 20px;
  color: var(--white-color);
  position: relative;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  position: relative;
}

.widget ul li a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.widget.widget_archive ul li > a:before,
.widget.widget_categories ul li > a:before,
.widget.widget_meta ul li a:before,
.widget.widget_recent_comments ul li:before,
.widget.widget_recent_entries ul li > a:before,
.widget.widget_nav_menu ul li > a:before,
.widget.widget_pages ul li a:before {
  position: absolute;
  content: "\f054";
  left: 0;
  font-size: 12px;
  top: 3px;
  color: inherit;
  font-family: "Font Awesome 5 Free";
  line-height: normal;
  font-weight: 900;
}

/*+++++ SideBar - Recent Comments +++++*/
.widget.widget_recent_comments #recentcomments li,
.widget.widget_recent_comments ul li {
  padding-left: 20px;
  position: relative;
}

.widget.widget_recent_comments #recentcomments li.recentcomments span a,
.widget.widget_recent_comments ul li.recentcomments span a {
  color: var(--white-color);
}

.widget.widget_recent_comments #recentcomments li.recentcomments a:before,
.widget.widget_recent_comments ul li.recentcomments a:before {
  display: none;
}

.widget.widget_recent_comments #recentcomments li.recentcomments a,
.widget.widget_recent_comments ul li.recentcomments a {
  color: var(--primary-color);
}

.widget.widget_recent_comments #recentcomments li.recentcomments a:hover,
.widget.widget_recent_comments ul li.recentcomments a:hover {
  color: var(--primary-color);
  text-decoration: underline !important;
}

.widget.widget_recent_comments ul li:before,
.widget.widget_recent_comments ul li:before {
  content: "\f27a";
  font-size: 12px;
  top: 10px;
  font-weight: 600;
}

.widget.widget_archive ul > li a:before {
  left: 0;
  top: 5px;
  font-size: 10px;
}

.widget.widget_archive ul li {
  font-weight: 400;
  color: var(--primary-color);
}

/*+++++  SideBar Calendar  +++++*/
.widget_calendar table caption {
  caption-side: inherit;
  padding: 0 0 10px;
  color: var(--white-color);
  font-weight: 600;
}

.widget_calendar table#wp-calendar {
  width: 100%;
  text-align: center;
  margin-bottom: 0;
  margin-top: 0;
  background: var(--dark-color);
}

.widget_calendar .calendar_wrap td#today {
  background: var(--primary-color);
  color: var(--white-color);
}

.widget_calendar .calendar_wrap td#today a {
  color: var(--white-color);
}

.widget_calendar .calendar_wrap table th {
  background: var(--dark-color);
  color: var(--white-color);
}

.widget_calendar .calendar_wrap table th,
.widget_calendar .calendar_wrap table td {
  padding: 8px;
  text-align: center;
}

/*+++++  widget_categories  +++++*/
.widget.widget_categories ul li > a {
  padding-left: 30px;
}

.widget.widget_categories ul > li a:before {
  left: 0;
  top: 4px;
  content: "\f07c";
  font-weight: 400;
  font-size: 14px;
}

.widget_categories ul > li:last-child {
  margin-bottom: 0;
}

/*+++++  Meta - widget RSS +++++*/
.widget.widget_rss ul li {
  margin-bottom: 30px;
}

.widget.widget_rss ul li:last-child {
  margin-bottom: 0;
}

.widget.widget_rss ul li a {
  padding-left: 0;
  font-size: 16px;
  color: var(--white-color);
  font-weight: 600;
  font-family: var(--title-fonts);
}

.widget.widget_rss ul li a:hover {
  color: var(--primary-color);
}

.widget.widget_rss ul li a:before {
  display: none;
}

.widget.widget_rss ul li cite {
  font-weight: 600;
  margin-top: 5px;
  display: inline-block;
  width: 100%;
}

.widget.widget_rss ul li .rss-date {
  font-size: 14px;
  color: var(--primary-color);
  line-height: 1;
  float: left;
  display: inline-block;
  width: 100%;
  margin: 5px 0;
}

/*+++++ widget Nav Menu +++++*/
.widget.widget_nav_menu ul li .sub-menu,
.widget ul.menu li .sub-menu {
  display: block !important;
  padding-left: 15px;
  margin-top: 15px;
}

/*+++++  SideBar - widget Recent Entries +++++*/
.widget_recent_entries ul li .post-date {
  font-weight: 600;
  color: var(--dark-color);
}

/*+++++ SideBar - Tags +++++*/
.widget_tag_cloud .tag-cloud-link {
  font-size: 14px !important;
  background: var(--dark-color);
  margin: 0 10px 10px 0;
  display: inline-block;
  float: left;
  color: var(--white-color);
  padding: 2px 12px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: 1px solid var(--dark-color);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}

.widget_tag_cloud .tag-cloud-link:hover {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: var(--white-color);
}

/*+++++ widget Dropdown +++++*/
.widget select,
.widget select.form-control {
  background-color: var(--dark-color);
  border-color: var(--dark-color);
}

@media (max-width: 1023px) {
  .sidebar.widget-area {
    margin-top: 45px;
  }
}

/*===== Comments Box =====*/
.comment-respond {
  margin-top: 0;
  display: inline-block;
  width: 100%;
}

.commentlist .comment .comment-respond {
  margin-bottom: 15px;
}

.gen-comment-area .comments-title,
.comment-respond .comment-reply-title {
  padding-top: 45px;
  position: relative;
  margin: 0;
  padding-bottom: 0;
}

.comment-respond .comment-reply-title a {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 60%;
  margin-left: 30px;
}

.comment-respond .comment-reply-title a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.commentlist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.commentlist .comment {
  margin-top: 30px;
  margin-bottom: 0;
  vertical-align: top;
  padding: 0;
  list-style: none;
}

.commentlist .gen-comment-info {
  padding: 30px;
  border: 1px solid var(--black-color);
  position: relative;
  background: var(--black-color);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.commentlist ol.children {
  padding-left: 60px;
}

.commentlist .gen-comment-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.commentlist .gen-comment-avatar {
  padding-right: 15px;
}

.commentlist .gen-comment-avatar img {
  -webkit-border-radius: 900px;
  -moz-border-radius: 900px;
  border-radius: 900px;
}

.commentlist .gen-comment-box {
  position: relative;
  display: inline-block;
  width: 100%;
}

.commentlist .gen-comment-box .title:hover {
  text-decoration: none;
  color: var(--primary-color);
}

.commentlist .comment-content p {
  margin: 0;
}

.commentlist .gen-comment-info .reply a {
  position: absolute;
  right: 30px;
  top: 30px;
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
}

.commentlist .gen-comment-info .reply a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.no-comments,
.comment-awaiting-moderation {
  font-style: italic;
  margin: 15px 0;
}

/*===== Comments Form =====*/
.comment-respond .comment-notes,
.comment-respond .logged-in-as {
  padding: 0;
  margin: 0 0 30px;
}

.comment-respond .comment-form-comment {
  margin-top: 0;
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
  float: left;
}

.comment-respond .comment-form-author,
.comment-respond .comment-form-email,
.comment-respond .comment-form-url {
  float: left;
  width: 33.11111%;
  display: inline-block;
  margin: 0 15px 30px 0;
  width: 100% !important;
}

.comment-respond .comment-form-url {
  margin-right: 0;
}

.comment-respond .form-submit {
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
  float: left;
}

.commentlist .comment-respond .comment-form-author,
.comment-respond .comment-form-email,
.comment-respond .comment-form-url {
  width: 32.2222%;
  float: left;
}

/*===== Comments Form =====*/
ol.commentlist .pingback,
ol.commentlist .trackback {
  margin-left: 25px;
}

/*================================================
Blog
================================================*/
.gen-blog-contain .wp-block-group.has-background {
  color: var(--black-color);
  padding: 30px;
}

.gen-blog-contain .wp-block-media-text.has-background {
  color: var(--black-color);
}

.single-post .gen-blog-post {
  margin-bottom: 0;
}

.gen-blog-post {
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
  background: var(--black-color);
}

.gen-blog-post .gen-post-media {
  overflow: hidden;
  margin-bottom: 0;
  position: relative;
}

.gen-blog-post .gen-post-media img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.gen-blog-post:hover .gen-post-media img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.gen-blog-post .gen-blog-contain {
  padding: 30px;
  display: inline-block;
  position: relative;
  width: 100%;
}

.gen-blog-col-3 .gen-blog-post .gen-blog-contain .gen-blog-title {
  font-size: 22px;
  line-height: 30px;
}

.gen-blog-post .gen-blog-contain .gen-blog-title {
  font-size: 28px;
  line-height: 36px;
  margin: 0 0 5px;
}

.gen-blog-post .gen-post-meta ul {
  margin: 0 0 15px;
  padding: 0;
  width: 100%;
  display: -ms-flexbox !important;
  display: flex !important;
}

.gen-blog-post .gen-post-meta ul li {
  list-style: none;
  float: left;
  display: inline-block;
  margin-right: 20px;
  align-self: center !important;
  font-family: var(--title-fonts);
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
}

.gen-blog-post .gen-post-meta ul li:last-child {
  margin-right: 0;
}

.gen-blog-post .gen-post-meta ul li a {
  color: var(--white-color);
}

.gen-blog-post .gen-post-meta ul li a:hover {
  color: var(--primary-color);
}

.gen-blog-post .gen-post-meta ul li i {
  margin-right: 10px;
  color: var(--primary-color);
}

@media (max-width: 1399px) {
  .comment-respond .comment-form-author,
  .comment-respond .comment-form-email,
  .comment-respond .comment-form-url {
    float: left;
    width: 31.66%;
  }
}

@media (max-width: 767px) {
  .commentlist ol.children {
    padding-left: 30px;
  }

  .commentlist .gen-comment-info {
    padding: 15px;
  }

  .commentlist .gen-comment-info .reply a {
    right: 15px;
    top: 15px;
  }

  .comment-respond .comment-form-author,
  .comment-respond .comment-form-email,
  .comment-respond .comment-form-url {
    width: 100%;
    margin-right: 0;
  }

  .commentlist .gen-comment-avatar {
    width: 90px;
  }
}

@media (max-width: 479px) {
  .commentlist .gen-comment-wrap {
    display: -ms-flexbox;
    display: inline-block;
    -ms-flex-align: start;
    align-items: inherit;
    width: 100%;
  }

  .commentlist .gen-comment-avatar {
    margin: 0 0 15px 0;
  }

  .gen-blog-post .gen-blog-contain {
    padding: 15px;
  }

  .gen-blog-post .gen-post-meta ul {
    display: inline-block !important;
    margin-bottom: 5px;
  }

  .gen-blog-post .gen-post-meta ul li {
    font-size: 14px;
    margin-bottom: 5px;
  }
}

/*================================================
Pagination
================================================*/
.gen-pagination .page-numbers {
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.gen-pagination .page-numbers li:first-child .page-numbers {
  margin-left: 0;
}

.gen-pagination .page-numbers li .page-numbers {
  position: relative;
  display: block;
  padding: 0px 15px;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 46px;
  margin: 0 5px;
  color: var(--white-color);
  background-color: var(--black-color);
  border: 2px solid var(--black-color);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.gen-pagination .page-numbers li .page-numbers:hover {
  color: var(--white-color);
  text-decoration: none;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  z-index: 2;
}

.gen-pagination .page-numbers li .page-numbers:focus {
  box-shadow: none;
  outline: 0;
  z-index: 2;
}

.gen-pagination .page-numbers li .page-numbers:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.gen-pagination .page-numbers li .page-numbers.current {
  color: var(--white-color);
  background: var(--primary-color);
  border-color: var(--primary-color);
  z-index: 1;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.gen-pagination .page-numbers li .next.page-numbers,
.gen-pagination .page-numbers li .prev.page-numbers {
  width: auto;
}

@media (max-width: 767px) {
  .gen-pagination .page-numbers li .next.page-numbers,
  .gen-pagination .page-numbers li .prev.page-numbers {
    width: auto;
    display: none;
  }
}

@media (max-width: 767px) {
  .gen-pagination .page-numbers li .page-numbers {
    padding: 0px 10px;
    height: 45px;
    width: 45px;
    line-height: 42px;
  }
}

/*================================================
Home Blog
================================================*/
.gen-blog .swiper-container .gen-blog-post {
  margin-bottom: 0;
}

.gen-blog .swiper-container .gen-blog-post .gen-post-media .menu {
  display: none;
}

.gen-blog .gen-blog-post .gen-blog-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gen-blog .swiper-container .gen-blog-post .gen-blog-contain .gen-blog-title {
  font-size: 24px;
  line-height: 32px;
}

/*================================================
Breadcrum
================================================*/
.gen-breadcrumb {
  background: var(--black-color);
  color: var(--white-color);
  padding: 90px 0;
  text-align: center;
  position: relative;
  background-attachment: fixed !important;
  background-size: cover !important;
}

.gen-breadcrumb:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black-color);
  opacity: 0.9;
}

.gen-breadcrumb-container {
  display: inline-block;
}

.gen-breadcrumb .gen-breadcrumb-title h1 {
  font-size: 56px;
  line-height: 64px;
  margin-bottom: 15px;
  color: var(--white-color);
}

.gen-breadcrumb-container .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.gen-breadcrumb-container .breadcrumb li {
  text-transform: capitalize;
  list-style-type: none;
  margin-right: 15px;
  padding-left: 0;
  align-items: center;
}

.gen-breadcrumb-container .breadcrumb li.active {
  color: var(--primary-color);
}

.gen-breadcrumb-container .breadcrumb li a {
  color: var(--white-color);
}

.gen-breadcrumb-container .breadcrumb li a:hover {
  color: var(--primary-color);
}

.gen-breadcrumb-container
  .breadcrumb
  .breadcrumb-item
  + .breadcrumb-item::before {
  content: "\f125";
  font-size: 12px;
  font-family: "Ionicons";
  padding-right: 15px;
}

.gen-yoest-breadcumbs #breadcrumbs {
  margin: 0;
  padding: 0;
}

.gen-yoest-breadcumbs #breadcrumbs span {
  color: var(--dark-color);
}

.gen-yoest-breadcumbs #breadcrumbs span a {
  padding: 0 5px;
}

.gen-yoest-breadcumbs #breadcrumbs span strong {
  font-weight: 400;
  padding-left: 5px;
}

@media (max-width: 1023px) {
  .gen-breadcrumb {
    text-align: center;
  }

  .gen-breadcrumb .gen-breadcrumb-title h1 {
    font-size: 42px;
    line-height: 50px;
  }

  .gen-breadcrumb-container .breadcrumb {
    display: inline-flex;
  }

  .gen-breadcrumb-img.text-right {
    text-align: center !important;
  }
}

@media (max-width: 767px) {
  .gen-breadcrumb .gen-breadcrumb-title h1 {
    font-size: 34px;
    line-height: 42px;
  }

  .gen-breadcrumb-container .breadcrumb li,
  .gen-breadcrumb-container .breadcrumb li i {
    font-size: 14px;
  }

  .gen-breadcrumb-container .breadcrumb li {
    margin-right: 10px;
  }

  .gen-breadcrumb-container
    .breadcrumb
    .breadcrumb-item
    + .breadcrumb-item::before {
    padding-right: 10px;
    font-size: 12px;
  }
}

/*================================================
Header
================================================*/
.animated {
  -webkit-animation-duration: 1.25s;
  animation-duration: 1.25s;
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}
header#gen-header {
  position: relative;
  display: block; /* Mude para block para garantir a largura total */
  width: 100%;
  clear: both;
  background: var(--dark-color); /* Aplique a cor de fundo a todo o header */
  z-index: 99;
}

/* Estilo do header quando fixo */
header#gen-header.gen-header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  display: block; /* Mantenha block para a largura total */
  width: 100%;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
  -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
  box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
  background: var(--dark-color); /* Aplique a cor de fundo quando fixo */
  z-index: 99; /* Certifique-se de que está sobre outros elementos */
}

/* Estilo da barra superior do header */
header#gen-header .gen-top-header {
  background: var(--dark-color); /* Aplique a cor de fundo à barra superior */
  padding: 0;
  font-size: 14px;
}

header#gen-header .gen-top-header .gen-header-contact.text-right ul {
  float: right;
}

header#gen-header .gen-top-header .gen-header-contact ul {
  margin: 0;
  padding: 0;
}

header#gen-header .gen-top-header .gen-header-contact ul li {
  list-style: none;
  display: inline-block;
  color: var(--white-color);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  float: left;
}

header#gen-header .gen-top-header .gen-header-contact ul li:last-child {
  margin-right: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

header#gen-header .gen-top-header .gen-header-contact ul li i {
  margin-right: 10px;
}

header#gen-header .gen-top-header .gen-header-contact ul li a {
  color: var(--white-color);
}

header#gen-header .gen-top-header .gen-header-contact ul li a:hover {
  color: var(--white-color);
  background: transparent;
}

header#gen-header .gen-top-header .text-right .gen-header-social ul,
header#gen-header .gen-top-header .gen-header-social.text-right ul {
  float: right;
}

header#gen-header .gen-top-header .gen-header-social ul {
  margin: 0;
  padding: 0;
}

header#gen-header .gen-top-header .gen-header-social ul li {
  list-style: none;
  display: inline-block;
  float: left;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

header#gen-header .gen-top-header .gen-header-social ul li a {
  color: var(--white-color);
  padding: 10px 20px;
  display: inline-block;
}

header#gen-header .gen-top-header ul li a:hover {
  color: var(--white-color);
  background: var(--primary-color);
}

header#gen-header .gen-top-header .gen-header-social ul li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/*===== Logo =====*/ /* Estilo padrão */
header#gen-header .gen-bottom-header .navbar .navbar-brand {
  line-height: 60px; /* Alinhamento vertical da logo */
}

header#gen-header .gen-bottom-header .navbar .navbar-brand img {
  height: 40px; /* Altura padrão da logo */
  transition: height 0.3s ease, line-height 0.3s ease; /* Animação suave ao redimensionar */
}

/* Para telas menores (tablets) */
@media (max-width: 768px) {
  header#gen-header .gen-bottom-header .navbar .navbar-brand {
    line-height: 60px; /* Ajuste o alinhamento para a nova altura da logo */
  }

  header#gen-header .gen-bottom-header .navbar .navbar-brand img {
    height: 40px; /* Reduz a altura da logo */
  }
}

/* Para telas muito pequenas (celulares) */
@media (max-width: 576px) {
  header#gen-header .gen-bottom-header .navbar .navbar-brand {
    line-height: 50px; /* Ajusta o alinhamento novamente */
  }

  header#gen-header .gen-bottom-header .navbar .navbar-brand img {
    height: 30px; /* Reduz ainda mais a altura da logo */
  }
}

/* Para telas extremamente pequenas (micro celulares) */
@media (max-width: 360px) {
  header#gen-header .gen-bottom-header .navbar .navbar-brand {
    line-height: 40px; /* Linha reduzida para manter proporção */
  }

  header#gen-header .gen-bottom-header .navbar .navbar-brand img {
    height: 25px; /* Altura mínima da logo */
  }
}

/* Estilo padrão para telas grandes (Desktop) */
.col-xl-6.col-lg-6.col-md-6 h4.gen-heading-title {
  font-size: 24px;
  text-align: left;
  margin: 0;
}

/* Estilo para telas médias (Tablets) */
@media (max-width: 1024px) and (min-width: 768px) {
  .col-xl-6.col-lg-6.col-md-6 h4.gen-heading-title {
    font-size: 20px;
    text-align: center; /* Alinha o texto ao centro */
    margin: 10px 0; /* Adiciona um pouco de espaço ao redor */
  }
}

/* Estilo para telas pequenas (Smartphones) */
@media (max-width: 768px) {
  .col-xl-6.col-lg-6.col-md-6 h4.gen-heading-title {
    font-size: 18px; /* Reduz o tamanho da fonte */
    text-align: center; /* Centraliza o texto */
    margin: 15px 0; /* Mais espaço entre os elementos */
  }
}

/* Garantir que o botão não seja ocultado */
#bt-assine {
  /* display: block !important; */
  margin-left: auto;
}
/* Estilo padrão */
#bt-assine .gen-button {
  padding: 12px 24px; /* Tamanho padrão */
  font-size: 16px;
  transition: all 0.3s ease; /* Transição suave para mudanças */
}

/* Para telas menores (tablets e similares) */
@media (max-width: 768px) {
  #bt-assine .gen-button {
    padding: 8px 16px; /* Reduzido para tablets */
    font-size: 14px;
    border-radius: 6px; /* Ajusta bordas arredondadas */
  }
}

/* Para telas muito pequenas (celulares padrão) */
@media (max-width: 576px) {
  #bt-assine .gen-button {
    padding: 6px 12px; /* Redução maior para celulares */
    font-size: 12px;
    border-radius: 4px; /* Bordas mais suaves */
  }
}

/* Para telas extremamente pequenas (celulares pequenos e micro) */
@media (max-width: 360px) {
  #bt-assine .gen-button {
    padding: 4px 10px; /* Ajuste mínimo */
    font-size: 10px; /* Fonte menor */
    border-radius: 3px; /* Reduz bordas */
  }
}

/*===== Header Navbar Bar =====*/
header#gen-header .gen-bottom-header {
  min-height: 90px;
}

header#gen-header .gen-bottom-header .navbar {
  padding: 0;
}

header#gen-header .gen-bottom-header .navbar .gen-menu-contain {
  display: inline-block;
  width: 100%;
}

header#gen-header .gen-bottom-header .navbar .navbar-nav {
  float: right;
}

header#gen-header .gen-bottom-header .navbar .navbar-nav li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 30px;
  color: var(--white-color);
  line-height: 90px;
  font-weight: 400;
}

header#gen-header .gen-bottom-header .navbar .navbar-nav li:last-child {
  margin-right: 0;
}

header#gen-header .gen-bottom-header .navbar .navbar-nav li a {
  color: var(--white-color);
  font-family: var(--title-fonts);
}

header#gen-header .gen-bottom-header .navbar .navbar-nav li a:focus,
header#gen-header .gen-bottom-header .navbar .navbar-nav li a:hover,
header#gen-header .gen-bottom-header .navbar .navbar-nav li.current-menu-item a,
header#gen-header .gen-bottom-header .navbar .navbar-nav li.current_page_item a,
header#gen-header .gen-bottom-header .navbar .navbar-nav li:hover a,
header#gen-header
  .gen-bottom-header
  .navbar
  .navbar-nav
  li.current-menu-ancestor
  a {
  color: var(--primary-color);
}

/*===== Sub Menu Bar =====*/
header#gen-header .gen-bottom-header .navbar .navbar-nav li .sub-menu {
  display: none;
}

header#gen-header .gen-bottom-header .navbar .navbar-nav li:hover .sub-menu {
  display: block;
  background: var(--dark-color);
  position: absolute;
  top: 100%;
  left: 0;
  padding-left: 0;
  display: inline-block;
  width: 210px;
  z-index: 999;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
  -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
  box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}

header#gen-header .gen-bottom-header .navbar .navbar-nav li .sub-menu li {
  line-height: 2;
  padding: 0;
  margin: 0;
  display: inline-block;
  width: 100%;
  color: var(--white-color);
}

header#gen-header .gen-bottom-header .navbar .navbar-nav li i {
  margin-left: 10px;
  font-size: 12px;
  color: var(--white-color);
  opacity: 0.3;
}

header#gen-header .gen-bottom-header .navbar .navbar-nav li .sub-menu li a {
  line-height: 2;
  text-transform: capitalize;
  padding: 10px 15px;
  display: inline-block;
  width: 100%;
  color: var(--white-color);
  font-size: 14px;
}

header#gen-header
  .gen-bottom-header
  .navbar
  .navbar-nav
  li
  .sub-menu
  li
  a:focus,
header#gen-header
  .gen-bottom-header
  .navbar
  .navbar-nav
  li
  .sub-menu
  li
  a:hover,
header#gen-header
  .gen-bottom-header
  .navbar
  .navbar-nav
  li
  .sub-menu
  li.current-menu-item
  > a {
  background: var(--primary-color);
  color: var(--white-color);
}

@media screen and (max-width: 4000px) and (min-width: 1023px) {
  header#gen-header
    .gen-bottom-header
    .navbar
    .navbar-nav
    li:hover
    > .sub-menu {
    display: block !important;
  }
}

/*===== Navigation Sub Menu =====*/
header#gen-header
  .gen-bottom-header
  .navbar
  .navbar-nav
  li
  .sub-menu
  li
  > .sub-menu {
  display: none;
}

header#gen-header
  .gen-bottom-header
  .navbar
  .navbar-nav
  li
  .sub-menu
  li:hover
  > .sub-menu {
  position: absolute;
  top: 0;
  right: 100%;
  left: inherit;
  display: block;
  background: var(--dark-color);
  padding-left: 0;
  display: inline-block;
  width: 200px;
}

header#gen-header
  .gen-bottom-header
  .navbar
  .navbar-nav
  li:hover
  .sub-menu
  li.menu-item-has-children
  > .gen-submenu-icon {
  opacity: 1;
  position: absolute;
  top: 12px;
  right: 15px;
  line-height: 2;
  font-size: 12px;
  color: var(--white-color);
  -moz-transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

header#gen-header
  .gen-bottom-header
  .navbar
  .navbar-nav
  li
  .sub-menu
  > li.menu-item-has-children:hover
  > .gen-submenu-icon {
  color: var(--white-color);
}

header#gen-header
  .gen-bottom-header
  .navbar
  .navbar-nav
  li
  .sub-menu
  > li.menu-item-has-children:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

header#gen-header
  .gen-bottom-header
  .navbar
  .navbar-nav
  li
  .sub-menu
  li.menu-item-has-children:hover
  > a {
  color: var(--white-color);
  transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  -webkit-transition: all 0s ease-in-out;
}

/*===== Navigation search =====*/
header#gen-header .gen-menu-search-block {
  position: relative;
  margin: 0 30px 0 0;
}

header#gen-header .gen-menu-search-block a {
  color: var(--white-color);
  font-size: 16px;
  width: 18px;
  display: inline-block;

  right: 200px; /* Empurra o link para a direita */
}

header#gen-header .gen-search-form {
  position: absolute;
  top: 59px;
  right: -100px;
  width: 300px;
  padding: 15px;
  z-index: 999;
  display: none;
  background: var(--black-color);
  border-radius: 15px;
}
/* Ajuste para telas menores (tablets e celulares) */
@media (max-width: 768px) {
  header#gen-header .gen-search-form {
    top: 50px; /* Mantém uma posição adequada */
    right: 10px; /* Evita que o formulário ultrapasse o lado direito */
    width: 200px; /* Garante que a largura se ajuste à tela */
    max-width: 350px; /* Define uma largura máxima */
    padding: 10px; /* Reduz o padding */
    border-radius: 10px; /* Menor arredondamento */
  }
}

/* Ajuste para telas muito pequenas (celulares menores) */
@media (max-width: 480px) {
  header#gen-header .gen-search-form {
    top: 50px;

    /* Adiciona margem no lado esquerdo */
    width: 200px; /* Ocupa quase toda a largura disponível */
    padding: 8px; /* Ajusta o padding para economizar espaço */
    border-radius: 8px;
  }
}

header#gen-header .gen-button:hover .gen-button-line-left {
  width: calc(15px - 1px);
}

header#gen-header .gen-search-form .search-field {
  border-color: var(--dark-color);
  background: var(--dark-color);
  border-radius: 10px;
}

/*===== Header Default =====*/
header#gen-header.gen-header-default .gen-bottom-header.gen-header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
  -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
  box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
  background: var(--dark-color);
}

/*===== Header Style-1 =====*/
header#gen-header.gen-header-style-1.gen-has-sticky {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  background: transparent;
  z-index: 99;
  padding: 0;
  box-shadow: none;
  background: rgba(10, 14, 23, 0.4);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

header#gen-header.gen-header-style-1.gen-has-sticky.gen-header-sticky {
  position: fixed;
  background: #141b29;
  padding: 0;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
  -moz-box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
  box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
  z-index: 999;
}

header#gen-header.gen-header-style-1 .gen-bottom-header {
  min-height: 70px;
}

header#gen-header.gen-header-style-1 .gen-bottom-header .navbar .navbar-brand {
  line-height: 90px;
  background: transparent;
  padding: 0;
  position: relative;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

header#gen-header.gen-header-style-1 .gen-bottom-header .navbar .navbar-nav li {
  line-height: 90px;
}

header#gen-header.gen-header-style-1
  .gen-bottom-header
  .navbar
  .navbar-nav
  li.current-menu-ancestor
  > a {
  color: var(--primary-color);
}

header#gen-header.gen-header-style-1
  .gen-bottom-header
  .navbar
  .navbar-nav
  li
  i {
  color: var(--white-color);
}

header#gen-header.gen-header-style-1
  .gen-bottom-header
  .navbar
  .navbar-nav
  li:hover
  .sub-menu {
  top: 100%;
}

header#gen-header.gen-header-style-1 .gen-header-info-box {
  margin: 0 0 0 30px;
  display: flex;
  color: var(--white-color);
  align-items: center;
}

header#gen-header.gen-header-style-1 .gen-header-call {
  display: inline-block;
  float: left;
  margin-right: 30px;
  margin-top: 5px;
}

header#gen-header.gen-header-style-1 .gen-header-call a i {
  font-size: 48px;
  margin-right: 15px;
  line-height: 56px;
}

header#gen-header.gen-header-style-1 .gen-header-call a {
  display: flex;
  align-items: flex-start;
}

header#gen-header.gen-header-style-1 .gen-header-call a .gen-call-info {
  flex: 1;
  text-transform: capitalize;
  font-size: 14px;
  color: var(--dark-color);
}

header#gen-header.gen-header-style-1 .gen-header-call a .gen-call-info span {
  width: 100%;
  float: left;
  display: inline-block;
  color: var(--primary-color);
  line-height: normal;
  font-family: var(--title-fonts);
}

header#gen-header.gen-header-style-1 .gen-header-call a .gen-call-info h5 {
  font-weight: 600;
  line-height: 1;
  font-size: 18px;
  line-height: 26px;
  color: var(--dark-color);
}

header#gen-header.gen-header-style-1 .gen-button {
  background: var(--primary-color);
  padding: 5px 20px;
}

/*==========*/
header#gen-header.gen-header-default .gen-btn-container {
  margin: 0 0 0 30px;
}

header#gen-header.gen-header-default .gen-btn-container .gen-button {
  background: var(--blue-color);
}

header#gen-header.gen-header-default .gen-btn-container .gen-button:hover {
  background: var(--primary-color);
}

header#gen-header.gen-header-default .gen-toggle-btn {
  padding: 0;
  margin: 0 0 0 30px;
}

header#gen-header.gen-header-default .gen-toggle-btn a {
  position: relative;
  display: inline-block;
  padding: 0;
  font-size: 38px;
  background: var(--primary-color);
  color: #fff;
  line-height: 52px;
  width: 52px;
  height: 52px;
  text-align: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

header#gen-header.gen-header-default .gen-menu-search-block {
  margin: 0 0 0 30px;
}

.gen-account-holder {
  position: relative;
  margin-right: 30px;
  line-height: 90px;
}

.gen-account-holder a#gen-user-btn {
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  background: var(--primary-color);
  color: var(--white-color);
  display: inline-block;
  border-radius: 90px;
}

.gen-account-holder .gen-account-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 200px;
  display: none;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.gen-account-holder .gen-account-menu.gen-form-show {
  display: inline-block;
}

.gen-account-holder .gen-account-menu ul {
  margin: 0;
  padding: 0;
  background: var(--dark-color);
}

.gen-account-holder .gen-account-menu ul li {
  list-style: none;
}

.gen-account-holder .gen-account-menu ul li a {
  float: left;
  line-height: 2;
  text-transform: capitalize;
  padding: 10px 15px;
  display: inline-block;
  list-style: none;
  width: 100%;
  color: var(--white-color);
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.gen-account-holder .gen-account-menu ul li a i {
  margin-right: 8px;
}

.gen-account-holder .gen-account-menu ul li a:hover {
  background: var(--primary-color);
}

header#gen-header.gen-header-style-1
  .gen-bottom-header
  .navbar
  .navbar-nav
  li.active
  > a {
  color: var(--primary-color);
}

header#gen-header.gen-header-style-1
  .gen-bottom-header
  .navbar
  .navbar-nav
  li.active
  ul
  li.active
  > a {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/*===== Header Style-1 =====*/
.admin-bar header#gen-header.gen-header-sticky,
.admin-bar header#gen-header.gen-header-style-1 {
  top: 32px;
}

.admin-bar
  header#gen-header.gen-header-default
  .gen-bottom-header.gen-header-sticky {
  top: 32px;
}

@media (max-width: 767px) {
  .admin-bar header#gen-header.gen-header-sticky,
  .admin-bar header#gen-header {
    top: 0;
  }

  .admin-bar header#gen-header.gen-header-style-1.gen-header-sticky {
    top: 0;
  }
}

@media only screen and (min-device-width: 601px) and (max-device-width: 768px) {
  .admin-bar header#gen-header.gen-header-sticky,
  .admin-bar header#gen-header.gen-header-style-1,
  .admin-bar
    header#gen-header.gen-header-default
    .gen-bottom-header.gen-header-sticky {
    top: 46px;
  }

  .admin-bar
    header#gen-header.gen-header-style-1.gen-has-sticky.gen-header-sticky {
    top: 46px !important;
  }
}

@media (max-width: 1399px) {
  header#gen-header
    .gen-bottom-header
    .navbar
    .navbar-nav
    li
    .sub-menu
    li:hover
    > .sub-menu {
    left: inherit;
    right: 100%;
  }
}

@media (max-width: 1365px) {
  header#gen-header .gen-bottom-header .navbar .navbar-nav li {
    margin-right: 15px;
  }

  header#gen-header .gen-top-header .gen-header-social ul li a {
    font-size: 12px;
    padding: 10px 15px;
  }

  header#gen-header .gen-top-header .gen-header-contact ul li {
    font-size: 12px;
    padding: 10px 15px;
  }

  header#gen-header.gen-header-default .gen-btn-container {
    margin: 0 0 0 15px;
  }

  header#gen-header.gen-header-default .gen-toggle-btn {
    margin: 0 0 0 15px;
  }

  /*===== Header Style-1 =====*/
  header#gen-header.gen-header-style-1 .gen-header-call {
    display: none;
  }

  header#gen-header .gen-menu-search-block {
    position: relative;
    margin: 0 15px 0 0;
  }

  header#gen-header.gen-header-style-1 .gen-header-info-box {
    margin: 0 0 0 15px;
  }

  .gen-account-holder {
    margin-right: 15px;
  }
}

@media (max-width: 1023px) {
  /*===== Button Toggler =====*/
  header#gen-header .gen-bottom-header .navbar-toggler {
    font-size: 20px;
    padding: 12px 18px;
    line-height: normal;
    float: right;
    outline: none;
    margin: 0 15px 0 15px;
    background: var(--primary-color);
    border: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
  }

  header#gen-header .gen-bottom-header .navbar .navbar-collapse {
    width: 100%;
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--dark-color);
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    max-height: 430px;
    border-radius: 15px;
    overflow-y: scroll;
    overflow-x: hidden;
  }

  header#gen-header .gen-bottom-header .navbar .navbar-brand {
    line-height: 60px;
  }

  header#gen-header .gen-bottom-header {
    min-height: 60px;
  }

  header#gen-header .gen-search-form {
    top: 51px;
  }

  header#gen-header .gen-bottom-header .navbar .navbar-nav {
    float: left;
    width: 100%;
    display: inline-block;
  }

  header#gen-header .gen-bottom-header .navbar .navbar-nav li {
    float: left;
    width: 100%;
    display: inline-block;
    line-height: normal;
    position: relative;
    font-size: 16px;
    position: relative;
  }

  header#gen-header .gen-bottom-header .navbar .navbar-nav li a {
    width: 100%;
    display: inline-block;
    padding: 15px;
  }

  header#gen-header .gen-bottom-header .navbar .navbar-nav li i {
    margin-left: 0;
    opacity: 1;
    font-size: 12px;
    position: absolute;
    right: 0;
    margin-top: 0;
    top: 0;
    padding: 18px 25px;
    -moz-transform: none;
    -webkit-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
  }

  header#gen-header .gen-bottom-header .navbar .navbar-nav li:hover .sub-menu {
    position: relative;
    top: 0;
    left: 0;
    padding-left: 0;
    background: #f5f5f5;
    box-shadow: none;
    display: inline-block;
    width: 100%;
  }

  header#gen-header
    .gen-bottom-header
    .navbar
    .navbar-nav
    li
    .sub-menu
    li.menu-item-has-children:hover
    > a {
    background: var(--primary-color);
  }

  header#gen-header
    .gen-bottom-header
    .navbar
    .navbar-nav
    li:hover
    .sub-menu
    li.menu-item-has-children
    > .gen-submenu-icon {
    opacity: 1;
    position: absolute;
    top: 0;
    right: 0;
    line-height: 2;
    font-size: 12px;
    padding: 12px 30px;
    -moz-transform: none;
    -webkit-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
  }

  header#gen-header .gen-bottom-header .navbar .navbar-nav li .sub-menu li a {
    padding: 10px 30px;
  }

  header#gen-header .gen-bottom-header .navbar .navbar-nav li > a:hover,
  header#gen-header .gen-bottom-header .navbar .navbar-nav li:hover > a {
    background: var(--primary-color);
    color: var(--white-color);
  }

  header#gen-header
    .gen-bottom-header
    .navbar
    .navbar-nav
    li.current-menu-ancestor
    > a {
    background: var(--primary-color);
    color: var(--white-color);
  }

  header#gen-header
    .gen-bottom-header
    .navbar
    .navbar-nav
    li.current-menu-ancestor
    > .gen-submenu-icon,
  header#gen-header
    .gen-bottom-header
    .navbar
    .navbar-nav
    li:hover
    > .gen-submenu-icon {
    color: var(--white-color);
  }

  header#gen-header
    .gen-bottom-header
    .navbar
    .navbar-nav
    li
    .sub-menu
    li:hover
    > .sub-menu {
    position: relative;
    top: 0;
    left: 0;
    background: transparent;
    display: inline-block;
    width: 100%;
    float: left;
  }

  header#gen-header
    .gen-bottom-header
    .navbar
    .navbar-nav
    li
    .sub-menu
    > li
    > a {
    background: var(--dark-color);
    color: var(--white-color);
  }

  header#gen-header .gen-top-header .gen-header-contact ul li {
    padding: 10px 10px;
  }

  header#gen-header.gen-header-default .gen-menu-search-block {
    margin-left: auto !important;
  }

  header#gen-header.gen-header-default .gen-toggle-btn {
    display: none;
  }

  /*===== Header Style-1 =====*/
  header#gen-header.gen-header-style-1
    .gen-bottom-header
    .navbar
    .navbar-brand {
    line-height: 75px;
  }

  header#gen-header.gen-header-style-1.gen-has-sticky {
    top: 0;
    padding: 0;
    position: relative;
  }

  header#gen-header.gen-header-style-1.gen-has-sticky.gen-header-sticky {
    top: 0;
  }

  .admin-bar
    header#gen-header.gen-header-style-1.gen-has-sticky.gen-header-sticky {
    top: 32px;
  }

  header#gen-header.gen-header-style-1 .gen-header-call {
    margin-right: 30px;
    display: flex;
  }

  header#gen-header.gen-header-style-1 .gen-header-info-box {
    margin-left: auto;
  }

  header#gen-header.gen-header-style-1
    .gen-bottom-header
    .navbar
    .navbar-nav
    li.current-menu-ancestor
    > a {
    color: var(--white-color);
  }

  header#gen-header.gen-header-style-1
    .gen-bottom-header
    .navbar
    .navbar-nav
    li {
    line-height: normal;
  }

  header#gen-header.gen-header-style-1
    .gen-bottom-header
    .navbar
    .navbar-nav
    li
    > a,
  header#gen-header.gen-header-style-1
    .gen-bottom-header
    .navbar
    .navbar-nav
    li {
    color: var(--white-color);
  }

  header#gen-header.gen-header-style-1
    .gen-bottom-header
    .navbar
    .navbar-nav
    li:hover
    .sub-menu {
    top: 0;
  }

  header#gen-header.gen-header-style-1
    .gen-bottom-header
    .navbar
    .navbar-nav
    li
    > a:hover,
  header#gen-header.gen-header-style-1
    .gen-bottom-header
    .navbar
    .navbar-nav
    li:hover
    > a {
    color: var(--white-color);
  }

  header#gen-header.gen-header-style-1.gen-has-sticky.gen-header-sticky
    .gen-bottom-header
    .navbar
    .navbar-collapse {
    top: 100%;
  }
}

@media (max-width: 767px) {
  header#gen-header.gen-header-style-1 .gen-header-call,
  header#gen-header.gen-header-style-1 .gen-button {
    display: none;
  }

  header#gen-header.gen-header-default .gen-top-header,
  header#gen-header.gen-header-default .gen-btn-container {
    display: none !important;
  }

  .admin-bar
    header#gen-header.gen-header-style-1.gen-has-sticky.gen-header-sticky,
  .admin-bar
    header#gen-header.gen-header-default
    .gen-bottom-header.gen-header-sticky {
    top: 0;
  }

  .gen-account-holder {
    margin-right: 0;
  }
}

@media (max-width: 479px) {
  .gen-menu-search-block,
  .gen-sidebar,
  .gen-toggle-btn,
  header#gen-header.gen-header-style-1 .gen-header-info-box {
    /*display: none !important;*/
  }
}

@media (max-width: 479px) {
  header#gen-header .gen-bottom-header .navbar .navbar-brand img {
    height: 45px;
  }
}

/*================================================
Footer
================================================*/

footer#gen-footer {
  background: var(--black-color);
  display: inline-block;
  width: 100%;
  float: left;
}

footer#gen-footer .gen-footer-top {
  padding: 60px 0 0;
}

footer#gen-footer .gen-copyright-footer {
  padding: 15px 0;
  background: var(--primary-color);
}

footer#gen-footer .gen-copyright-footer .gen-copyright {
  text-align: center;
  display: inline-block;
  width: 100%;
}

footer#gen-footer .gen-copyright-footer .gen-copyright a {
  color: var(--white-color);
}

footer#gen-footer .gen-copyright-footer .gen-copyright a:hover {
  color: var(--white-color);
  text-decoration: underline;
}

/*===== Footer Widget =====*/
footer#gen-footer .widget {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border: none;
  margin-bottom: 45px;
}
footer#gen-footer .widget .footer-title {
  margin-bottom: 15px;
  padding: 0;
  font-size: 26px;
  position: relative;
  line-height: 34px;
}

@media (max-width: 768px) {
  footer#gen-footer .widget .footer-title {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 30px;
    text-align: center; /* Centraliza o título */
  }
}

@media (max-width: 480px) {
  footer#gen-footer .widget .footer-title {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 26px;
    text-align: center; /* Centraliza o título */
  }
}

footer#gen-footer .widget ul {
  padding: 0;
  margin: 0;
}

footer#gen-footer .widget ul li a {
  padding: 0;
}

footer#gen-footer .widget ul li a:hover {
  color: var(--primary-color);
}

footer#gen-footer table td,
footer#gen-footer table th {
  border: 1px solid #222d42;
}

footer#gen-footer .calendar_wrap table caption {
  caption-side: inherit;
  padding: 0 0 10px;
  font-weight: 600;
  color: var(--secondary-color);
}

footer#gen-footer .calendar_wrap td#today {
  background: var(--primary-color);
  color: var(--white-color);
}

footer#gen-footer .calendar_wrap td#today a {
  color: var(--white-color);
}

footer#gen-footer ul li a.rsswidget {
  padding-left: 0;
  font-size: 16px;
  color: var(--secondary-color);
  font-weight: 600;
  font-family: var(--title-fonts);
}

footer#gen-footer ul li .rss-date {
  font-size: 14px;
  color: var(--primary-color);
  line-height: 1;
  float: left;
  display: inline-block;
  width: 100%;
  margin: 5px 0;
}

footer#gen-footer ul li cite {
  font-weight: 600;
  margin-top: 5px;
  display: inline-block;
  width: 100%;
}

footer#gen-footer .search-form {
  position: relative;
}

footer#gen-footer .search-form .search-submit {
  background: var(--primary-color);
  border: none;
  position: absolute;
  text-align: center;
  line-height: 54px;
  height: 54px;
  width: 54px;
  top: 0;
  right: 0;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

footer#gen-footer .search-form .search-submit:before {
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  color: #ffffff;
}

footer#gen-footer .search-form .search-submit:hover {
  background: var(--dark-color);
}

footer#gen-footer .search-form input {
  background: var(--white-color);
  border-color: var(--white-color);
  color: var(--secondary-color);
}

footer#gen-footer .tagcloud .tag-cloud-link {
  font-size: 14px !important;
  color: var(--white-color);
  background: var(--dark-color);
  margin: 0 10px 10px 0;
  display: inline-block;
  float: left;
  padding: 2px 12px;
  border-radius: 0;
  border: 1px solid var(--dark-color);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}

footer#gen-footer .tagcloud .tag-cloud-link:hover {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: var(--white-color);
}

footer#gen-footer .widget ul.menu li a,
footer#gen-footer .gen-widget-menu .gen-service li a {
  position: relative;
  border: none;
  padding: 5px 0 5px 15px;
  display: inline-block;
  width: 100%;
}

footer#gen-footer .widget ul.menu li a:hover,
footer#gen-footer .gen-widget-menu .gen-service li a:hover {
  color: var(--primary-color);
}

footer#gen-footer .widget ul.menu li a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 5px;
  display: inline-block;
  background: var(--primary-color);
  margin: auto 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

footer#gen-footer .wp-calendar-nav .wp-calendar-nav-prev,
footer#gen-footer .wp-calendar-nav .wp-calendar-nav-next {
  background: transparent;
}

footer#gen-footer .wp-caption p.wp-caption-text {
  color: var(--secondary-color);
}

footer#gen-footer .gen-widget-menu .gen-service li a:before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 5px;
  display: inline-block;
  background: var(--primary-color);
  margin: 0;
}

footer#gen-footer .widget #recentcomments--1 li.recentcomments span a {
  color: var(--primary-color);
}
/* Estilos gerais */
footer#gen-footer .gen-footer-style-1 .widget .footer-title,
footer#gen-footer .gen-footer-style-1 .widget ul.menu li a,
footer#gen-footer .gen-footer-style-1 .gen-widget-menu .gen-service li a,
footer#gen-footer .gen-footer-style-1 .widget ul li a {
  color: var(--white-color);
}

footer#gen-footer .gen-footer-style-1 .widget ul li a:hover {
  color: var(--primary-color);
}

footer#gen-footer .gen-footer-style-1 .gen-copyright-footer {
  background: var(--primary-color);
}

#gen-footer .gen-footer-style-1 .widget:first-child {
  margin-bottom: 45px;
}

#gen-footer .gen-footer-style-1 .gen-footer-logo {
  height: 60px;
  margin-bottom: 15px;
}

/* Menu principal no footer */
footer#gen-footer .gen-footer-style-1 .widget ul.menu li {
  margin-bottom: 0;
  width: calc(50% - 2px);
  display: inline-block;
}

/* Texto e fontes gerais */
footer#gen-footer p {
  font-size: 12px;
}

/* Estilização das redes sociais */
#gen-footer .social-link {
  margin: 0 auto; /* Centralizado */
  padding: 0;
  text-align: center;
}

#gen-footer .social-link li {
  list-style: none;
  display: inline-block; /* Centraliza melhor em telas pequenas */
  margin-right: 15px;
}

#gen-footer .social-link li:last-child {
  margin-right: 0;
}

#gen-footer .social-link li a {
  color: var(--white-color);
  font-size: 18px;
  text-align: center;
  display: inline-block;
  margin-right: 0 !important;
  border-radius: 50%; /* Adicionado para destacar botões sociais */
  transition: all 0.3s ease;
}

#gen-footer .social-link li a:hover {
  color: var(--primary-color);
}

/* Logos de aplicativos */
.gen-playstore-logo,
.gen-appstore-logo {
  height: 45px;
  display: inline-block;
  margin: 0 auto;
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
  footer#gen-footer .gen-footer-style-1 .widget ul.menu li {
    width: 100%; /* Cada item ocupa 100% da largura */
    margin-bottom: 10px; /* Espaçamento entre os itens */
  }

  #gen-footer .gen-footer-style-1 .gen-footer-logo {
    height: 50px; /* Reduz tamanho da logo */
    margin-bottom: 10px;
  }

  #gen-footer .social-link li {
    margin-right: 10px; /* Reduz espaçamento entre ícones */
  }

  .gen-playstore-logo,
  .gen-appstore-logo {
    height: 40px; /* Reduz altura das logos de apps */
    margin: 5px auto; /* Adiciona espaçamento vertical */
  }
}

@media (max-width: 576px) {
  footer#gen-footer .gen-footer-style-1 .widget ul.menu li {
    text-align: center; /* Centraliza os itens do menu */
  }

  #gen-footer .social-link li {
    margin-right: 5px; /* Espaçamento menor para ícones sociais */
  }

  #gen-footer .gen-footer-style-1 .gen-footer-logo {
    height: 40px; /* Reduz ainda mais a logo */
  }

  .gen-playstore-logo,
  .gen-appstore-logo {
    height: 35px; /* Ajusta tamanho das logos em telas menores */
  }
}

@media (max-width: 360px) {
  footer#gen-footer p {
    font-size: 10px; /* Fonte menor para textos */
  }

  #gen-footer .social-link li {
    margin-right: 5px; /* Margem mínima entre ícones */
  }

  .gen-playstore-logo,
  .gen-appstore-logo {
    height: 30px; /* Logos ainda menores */
  }
}

/*================================================
Team
================================================*/
.gen-teambox-1 {
  position: relative;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.gen-teambox-1 .gen-team-img {
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 5px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius: 5px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  border-radius: 5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.gen-teambox-1 .gen-team-img .gen-team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  opacity: 0;
}

.gen-teambox-1:hover .gen-team-img .gen-team-social {
  bottom: 30px;
  opacity: 1;
}

.gen-teambox-1 .gen-team-img .gen-team-social ul {
  margin: 0;
  padding: 0;
}

.gen-teambox-1 .gen-team-img .gen-team-social ul li {
  list-style: none;
  margin: 0 2px;
  padding: 0;
  display: inline-block;
}

.gen-teambox-1 .gen-team-img .gen-team-social ul li a {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--dark-color);
  color: var(--white-color);
  -webkit-border-radius: 700px;
  -moz-border-radius: 700px;
  border-radius: 700px;
}

.gen-teambox-1 .gen-team-img .gen-team-social ul li a:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.gen-teambox-1 .gen-team-info {
  z-index: 99;
  background: var(--white-color);
  padding: 30px 15px;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -webkit-border-radius: 0;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius: 0;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-radius: 0;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.gen-teambox-1 .gen-team-info .gen-team-designation {
  color: var(--primary-color);
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
}

/*================================================
Video Popup
================================================*/
.gen-video-icon a {
  position: relative;
  text-decoration: none;
  color: var(--primary-color);
  font-size: 28px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  display: inline-block;
  background-color: var(--white-color);
  margin: 0 auto;
  border-radius: 90%;
  -webkit-animation: ripple 1s linear infinite;
  animation: ripple 1s linear infinite;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2),
      0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0.2),
      0 0 0 60px rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2),
      0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0.2),
      0 0 0 60px rgba(255, 255, 255, 0.2);
  }

  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2),
      0 0 0 30px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0.2),
      0 0 0 90px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2),
      0 0 0 30px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0.2),
      0 0 0 90px rgba(255, 255, 255, 0);
  }
}

@keyframes ripple {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2),
      0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0.2),
      0 0 0 60px rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2),
      0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0.2),
      0 0 0 60px rgba(255, 255, 255, 0.2);
  }

  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2),
      0 0 0 30px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0.2),
      0 0 0 90px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2),
      0 0 0 30px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0.2),
      0 0 0 90px rgba(255, 255, 255, 0);
  }
}

.gen-video-icon a.primary {
  -webkit-animation: rippleprimary 1s linear infinite;
  animation: rippleprimary 1s linear infinite;
}

@-webkit-keyframes rippleprimary {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2),
      0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 30px rgba(255, 75, 52, 0.2),
      0 0 0 60px rgba(255, 75, 52, 0.2);
    box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2),
      0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 30px rgba(255, 75, 52, 0.2),
      0 0 0 60px rgba(255, 75, 52, 0.2);
  }

  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 75, 52, 0.2),
      0 0 0 30px rgba(255, 75, 52, 0.2), 0 0 0 60px rgba(255, 75, 52, 0.2),
      0 0 0 90px rgba(255, 75, 52, 0);
    box-shadow: 0 0 0 10px rgba(255, 75, 52, 0.2),
      0 0 0 30px rgba(255, 75, 52, 0.2), 0 0 0 60px rgba(255, 75, 52, 0.2),
      0 0 0 90px rgba(255, 75, 52, 0);
  }
}

@keyframes rippleprimary {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2),
      0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 30px rgba(255, 75, 52, 0.2),
      0 0 0 60px rgba(255, 75, 52, 0.2);
    box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2),
      0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 30px rgba(255, 75, 52, 0.2),
      0 0 0 60px rgba(255, 75, 52, 0.2);
  }

  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 75, 52, 0.2),
      0 0 0 30px rgba(255, 75, 52, 0.2), 0 0 0 60px rgba(255, 75, 52, 0.2),
      0 0 0 90px rgba(255, 75, 52, 0);
    box-shadow: 0 0 0 10px rgba(255, 75, 52, 0.2),
      0 0 0 30px rgba(255, 75, 52, 0.2), 0 0 0 60px rgba(255, 75, 52, 0.2),
      0 0 0 90px rgba(255, 75, 52, 0);
  }
}

.gen-video-icon a.blue {
  -webkit-animation: rippleblue 1s linear infinite;
  animation: rippleblue 1s linear infinite;
}

@-webkit-keyframes rippleblue {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(67, 78, 255, 0.2),
      0 0 0 10px rgba(67, 78, 255, 0.2), 0 0 0 30px rgba(67, 78, 255, 0.2),
      0 0 0 60px rgba(67, 78, 255, 0.2);
    box-shadow: 0 0 0 0 rgba(67, 78, 255, 0.2),
      0 0 0 10px rgba(67, 78, 255, 0.2), 0 0 0 30px rgba(67, 78, 255, 0.2),
      0 0 0 60px rgba(67, 78, 255, 0.2);
  }

  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(67, 78, 255, 0.2),
      0 0 0 30px rgba(67, 78, 255, 0.2), 0 0 0 60px rgba(67, 78, 255, 0.2),
      0 0 0 90px rgba(67, 78, 255, 0);
    box-shadow: 0 0 0 10px rgba(67, 78, 255, 0.2),
      0 0 0 30px rgba(67, 78, 255, 0.2), 0 0 0 60px rgba(67, 78, 255, 0.2),
      0 0 0 90px rgba(67, 78, 255, 0);
  }
}

@keyframes rippleblue {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.2),
      0 0 0 10px rgba(255, 152, 0, 0.2), 0 0 0 30px rgba(255, 152, 0, 0.2),
      0 0 0 60px rgba(255, 152, 0, 0.2);
    box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.2),
      0 0 0 10px rgba(255, 152, 0, 0.2), 0 0 0 30px rgba(255, 152, 0, 0.2),
      0 0 0 60px rgba(255, 152, 0, 0.2);
  }

  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 152, 0, 0.2),
      0 0 0 30px rgba(255, 152, 0, 0.2), 0 0 0 60px rgba(255, 152, 0, 0.2),
      0 0 0 90px rgba(255, 152, 0, 0);
    box-shadow: 0 0 0 10px rgba(255, 152, 0, 0.2),
      0 0 0 30px rgba(255, 152, 0, 0.2), 0 0 0 60px rgba(255, 152, 0, 0.2),
      0 0 0 90px rgba(255, 152, 0, 0);
  }
}

/*================================================
OWL Carousel
================================================*/
.owl-carousel .owl-nav.disabled {
  display: none;
}

.owl-carousel .owl-nav {
  cursor: pointer;
  z-index: 9;
  margin: 0;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.owl-carousel .owl-nav button.owl-prev {
  outline: none;
  text-align: center;
  text-indent: inherit;
  cursor: pointer;
  text-align: center;
  font-size: 32px;
  position: absolute;
  top: 0;
  left: -22.5px;
  line-height: 1;
  padding: 0;
  margin: 0;
  color: var(--white-color) !important;
}

.owl-carousel .owl-nav button.disabled {
  display: none;
}

.owl-carousel .owl-nav button.owl-next {
  outline: none;
  text-align: center;
  text-indent: inherit;
  cursor: pointer;
  text-align: center;
  font-size: 32px;
  position: absolute;
  top: 0;
  right: -22.5px;
  line-height: 1;
  padding: 0;
  margin: 0;
  color: var(--white-color) !important;
}

.gen-style-2 .owl-carousel .owl-nav {
  top: 30%;
}

.gen-style-1 .owl-carousel .owl-nav {
  top: 40%;
}

@media (max-width: 1399px) {
  .gen-style-2 .owl-carousel .owl-nav {
    top: 26%;
  }
}

@media (max-width: 1199px) {
}

@media (max-width: 1023px) {
  .owl-carousel .owl-nav button.owl-prev {
    left: 15px;
  }

  .owl-carousel .owl-nav button.owl-next {
    right: 15px;
  }

  .gen-style-2 .owl-carousel .owl-nav {
    top: 32%;
  }
}

@media (max-width: 979px) {
  .gen-style-2 .owl-carousel .owl-nav {
    top: 36%;
  }
}

@media (max-width: 767px) {
  .gen-style-2 .owl-carousel .owl-nav {
    top: 32%;
  }
}

@media (max-width: 479px) {
  .gen-style-2 .owl-carousel .owl-nav {
    top: 26%;
  }
}

/* Dots */
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-dots {
  margin: 15px 0 0;
  line-height: normal;
  position: relative;
  display: inline-block;
  width: 100%;
  text-indent: inherit;
  text-align: center;
  cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot {
  box-shadow: none;
  outline: none;
  background: var(--white-color);
  opacity: 1;
  display: inline-block;
  padding: 0;
  margin: 0px 5px;
  height: 4px;
  width: 30px;
  border: none;
  border-radius: 0;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot:hover {
  background: var(--primary-color);
  opacity: 1;
}

.owl-carousel .owl-dots .owl-dot.active {
  background: var(--primary-color);
  opacity: 1;
}

/*================================================
Gen Slick
===============================================*/
.pp-30 .gen-banner-movies .gen-movie-contain {
  padding: 0 0 0 30px;
}

.gen-banner-movies .gen-slick-slider {
  position: relative;
  padding: 0 0 0 30px;
}

.home-singal-silder .gen-banner-movies .slider-item {
  height: 70vh;
}

.gen-banner-movies .slider-item {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
  border-left: 3px solid var(--primary-color);
}

.gen-banner-movies .gen-slick-slider:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  background: rgb(12, 17, 27);
  background: -moz-linear-gradient(
    90deg,
    rgba(12, 17, 27, 0.9) 0%,
    rgba(12, 17, 27, 0) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(12, 17, 27, 0.9) 0%,
    rgba(12, 17, 27, 0) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(12, 17, 27, 0.9) 0%,
    rgba(12, 17, 27, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0c111b", endColorstr="#0c111b", GradientType=1);
}

.gen-banner-movies .slider-nav-contain .gen-nav-img:before {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: 9;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  opacity: 1;
  background: rgb(12, 17, 27);
  background: -moz-linear-gradient(
    0deg,
    rgba(12, 17, 27, 0.9) 0%,
    rgba(12, 17, 27, 0) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(12, 17, 27, 0.9) 0%,
    rgba(12, 17, 27, 0) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(12, 17, 27, 0.9) 0%,
    rgba(12, 17, 27, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0c111b", endColorstr="#0c111b", GradientType=1);
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.gen-banner-movies
  .slider-nav-contain.slick-active.slick-center
  .gen-nav-img:before {
  content: "";
  background: rgb(224, 147, 31);
  background: -moz-linear-gradient(
    0deg,
    rgb(224, 134, 31) 0%,
    rgba(56, 35, 7, 0) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgb(224, 140, 31) 0%,
    rgba(53, 28, 4, 0) 100%
  );
  background: linear-gradient(
    0deg,
    rgb(224, 124, 31) 0%,
    rgba(71, 35, 5, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1f80e0", endColorstr="#1f80e0", GradientType=1);
}

.gen-banner-movies .slider-nav-contain {
  position: relative;
  margin-bottom: 30px;
  border: none;
}

.gen-banner-movies .slider-nav-contain .movie-info {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  padding: 15px;
  z-index: 99;
}

.gen-banner-movies .slider-nav-contain .movie-info h3 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.gen-banner-movies .slider-nav-contain .movie-info .gen-movie-meta-holder ul {
  margin: 0 0 0;
  padding: 0;
  float: left;
  display: inline-block;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.gen-banner-movies
  .slider-nav-contain
  .movie-info
  .gen-movie-meta-holder
  ul
  li {
  list-style: none;
  margin: 10px 16px 0px 0;
  padding: 0;
  font-size: 16px;
  line-height: normal;
  display: inline;
  align-items: center;
}

.gen-banner-movies
  .slider-nav-contain
  .movie-info
  .gen-movie-meta-holder
  ul
  li
  a {
  color: var(--white-color);
  background: #ff9800;
  padding: 2px 5px;
}

.gen-banner-movies
  .slider-nav-contain
  .movie-info
  .gen-movie-meta-holder
  ul
  li:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.gen-banner-movies .slick-slider {
  margin-bottom: 0;
}

.gen-banner-movies .slider.slider-nav {
  position: absolute;
  width: 21.3333%;
  right: 15px;
  top: 0;
  z-index: 9;
  height: 100%;
  padding: 0;
}

.gen-banner-movies .slick-slider .slick-list {
  padding: 0 !important;
  height: 100% !important;
}

.gen-banner-movies .slick-slider .prev.slick-arrow {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  color: var(--white-color);
  display: inline-block;
  width: 100%;
  font-size: 30px;
  line-height: 38px;
  padding: 10px 10px;
  text-align: center;
  background: rgba(27, 19, 12, 0.9);
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.gen-banner-movies .slick-slider .next.slick-arrow {
  position: absolute;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 9;
  color: var(--white-color);
  display: inline-block;
  width: 100%;
  font-size: 30px;
  line-height: 38px;
  padding: 10px 10px;
  text-align: center;
  background: rgba(27, 19, 12, 0.9);
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.gen-banner-movies .slick-slider .prev.slick-arrow:hover,
.gen-banner-movies .slick-slider .next.slick-arrow:hover {
  background: var(--primary-color);
}

@media (max-width: 1399px) {
  .gen-banner-movies .slider.slider-nav {
    position: absolute;
    width: 24%;
  }

  .gen-banner-movies .gen-slick-slider,
  .pp-30 .gen-banner-movies .gen-movie-contain {
    padding: 0;
  }
}

@media (max-width: 1365px) {
  .gen-banner-movies .slider.slider-nav {
    position: absolute;
    width: 24%;
  }
}

@media (max-width: 1023px) {
  .gen-banner-movies .slider.slider-nav {
    display: none !important;
    width: 0;
  }
}

.slider.slider-nav.slick-initialized.slick-slider.slick-vertical ul.slick-dots {
  display: none !important;
}

/*================================================
Carousel Movies
===============================================*/

/*======== 1 =======*/

.gen-style-1
  .owl-carousel
  .item
  .gen-carousel-movies-style-1
  .gen-movie-contain {
  margin-bottom: 0;
}

.gen-carousel-movies-style-1 .gen-movie-contain {
  position: relative;
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
}

.gen-carousel-movies-style-1 .gen-movie-contain .gen-movie-img:before {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: 9;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  opacity: 0.4;
  background: rgb(27, 19, 12);
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.gen-carousel-movies-style-1:hover .gen-movie-contain .gen-movie-img:before {
  opacity: 0.9;
}

/*===============*/
.gen-carousel-movies-style-1 .gen-movie-contain .gen-movie-img {
  position: relative;
  overflow: hidden;
}

.gen-carousel-movies-style-1 .gen-movie-contain .gen-info-contain,
.gen-episode-contain .gen-info-contain {
  padding: 15px 15px;
  opacity: 1;
  display: inline-block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.gen-carousel-movies-style-1:hover .gen-movie-contain .gen-info-contain {
  opacity: 1;
}

.gen-carousel-movies-style-1 .gen-movie-contain .gen-movie-img img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.gen-carousel-movies-style-1:hover .gen-movie-contain .gen-movie-img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.gen-carousel-movies-style-1 .gen-movie-contain .gen-movie-action {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 9;
}

.gen-carousel-movies-style-1 .gen-movie-contain .gen-movie-add .dropdown-menu {
  bottom: inherit;
}

.gen-carousel-movies-style-1
  .gen-movie-contain
  .gen-movie-add
  .dropdown-menu:after {
  bottom: 100%;
  right: 0%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  top: inherit;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 8px;
  margin-right: 14px;
}

/* Configurações padrão para telas grandes */
.gen-carousel-movies-style-1 .gen-movie-contain .gen-movie-info h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* Telas médias (até 1023px) */
@media (max-width: 1023px) {
  .gen-carousel-movies-style-1 .gen-movie-contain .gen-movie-info h3 {
    font-size: 18px; /* Fonte levemente reduzida */
    line-height: 24px; /* Proporcional ao tamanho da fonte */
    font-weight: 400;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}

/* Telas pequenas (até 767px) */
@media (max-width: 767px) {
  .gen-carousel-movies-style-1 .gen-movie-contain .gen-movie-info h3 {
    font-size: 16px; /* Fonte ainda menor para telas pequenas */
    line-height: 22px; /* Ajuste para melhor legibilidade */
    font-weight: 400;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}

/* Telas muito pequenas (até 479px) */
@media (max-width: 479px) {
  .gen-carousel-movies-style-1 .gen-movie-contain .gen-movie-info h3 {
    font-size: 14px; /* Fonte compacta para telas muito pequenas */
    line-height: 20px; /* Mantém a legibilidade */
    font-weight: 400;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}

.gen-carousel-movies-style-1 .gen-movie-contain .gen-movie-action .gen-button {
  padding: 0;
  width: 60px;
  height: 60px;
  opacity: 0;
  display: inline-block;
  line-height: 60px;
  text-align: center;
  -webkit-border-radius: 900px;
  -moz-border-radius: 900px;
  border-radius: 900px;
}

.gen-carousel-movies-style-1
  .gen-movie-contain
  .gen-movie-action
  .gen-button
  i {
  margin: 0;
  padding: 0;
}

.gen-carousel-movies-style-1:hover
  .gen-movie-contain
  .gen-movie-action
  .gen-button {
  opacity: 1;
}

.gen-carousel-movies-style-1 .gen-movie-contain .gen-movie-meta-holder ul {
  margin: 0 0 0;
  padding: 0;
  float: left;
  display: inline-block;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.gen-carousel-movies-style-1 .gen-movie-contain .gen-movie-meta-holder ul li {
  list-style: none;
  margin: 10px 15px 0px 0;
  padding: 0;
  font-size: 14px;
  line-height: normal;
  display: inline;
  align-items: center;
  color: var(--white-color);
}

.gen-carousel-movies-style-1 .gen-movie-contain .gen-movie-meta-holder ul li a {
  color: var(--white-color);
  background: var(--primary-color);
  padding: 2px 5px;
}

.gen-carousel-movies-style-1
  .gen-movie-contain
  .gen-movie-meta-holder
  ul
  li
  a
  span {
  font-family: var(--title-font);
  font-weight: 600;
}

.gen-carousel-movies-style-1
  .gen-movie-contain
  .gen-movie-meta-holder
  ul
  li:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.gen-carousel-movies-style-1 {
  position: relative;
  width: 100%;
  transition: all 0.45s ease 0s;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition: all 0.6s ease 0s;
  -webkit-transition: all 0.6s ease 0s;
  -moz-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.gen-carousel-movies-style-1:hover {
  transform: scale3d(1.1, 1.1, 1) translate3d(0, 0, 0) perspective(500px);
  -webkit-transform: scale3d(1.1, 1.1, 1) translate3d(0, 0, 0)
    perspective(500px);
  -moz-transform: scale3d(1.1, 1.1, 1) translate3d(0, 0, 0) perspective(500px);
  -o-transform: scale3d(1.1, 1.1, 1) translate3d(0, 0, 0) perspective(500px);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transition: all 0.6s ease 0s;
  -webkit-transition: all 0.6s ease 0s;
  -moz-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
}

.gen-carousel-movies-style-1.movie-grid.style-1
  .gen-movie-contain
  .gen-movie-add
  .wpulike.wpulike-heart
  .wp_ulike_general_class
  a {
  color: var(--white-color);
}

/*===============*/
.movie-grid .gen-movie-add {
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  z-index: 99;
}

.movie-grid .gen-movie-add .wpulike.wpulike-heart {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  padding: 0;
}

.movie-grid .gen-movie-add .wpulike-heart .wp_ulike_put_image {
  font-size: 16px;
  color: var(--white-color);
  background: 0 0;
  padding: 0;
  line-height: normal;
  border-radius: 0;
  border: none;
  outline: none;
}

.movie-grid
  .gen-movie-add
  .wpulike-heart
  .wp_ulike_put_image.wp_ulike_btn_is_active,
.wpulike-heart .wp_ulike_btn:focus,
.wpulike-heart .wp_ulike_btn:hover {
  color: var(--primary-color) !important;
}

.movie-grid .gen-movie-add .wpulike-heart .count-box,
.movie-grid .gen-movie-add .wpulike-heart .wp_ulike_put_image:after {
  display: none !important;
}

.movie-grid .gen-movie-add .wpulike-heart .wp_ulike_general_class {
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.movie-grid .gen-movie-add .wpulike-heart .wp_ulike_put_image:before {
  content: "\f004";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.movie-grid
  .gen-movie-add
  .wpulike-heart
  .wp_ulike_put_image.wp_ulike_btn_is_active:before {
  font-weight: 900;
}

.movie-grid .gen-movie-add .dropdown .dropdown-toggle {
  padding: 0;
  background: transparent;
  text-align: center;
  font-size: 16px;
  color: var(--white-color);
  outline: none;
  box-shadow: none;
}

.movie-grid .gen-movie-add .dropdown .dropdown-toggle i.fa {
  height: 45px;
  width: 45px;
  line-height: 45px;
}

.movie-grid .gen-movie-add .dropdown-toggle::after {
  display: none;
}

.movie-grid .gen-movie-add .dropdown-menu {
  top: inherit !important;
  left: inherit !important;
  bottom: 45px;
  right: 0;
  transform: inherit !important;
  min-width: 12rem;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 10px;
  max-height: 130px;
}

.movie-grid .gen-movie-add .dropdown-menu:after {
  top: 100%;
  right: 0;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #ffffff;
  border-width: 8px;
  margin-right: 14px;
}

.movie-grid .gen-movie-add .dropdown-menu a {
  font-family: var(--title-fonts);
  color: var(--dark-color);
  font-size: 14px;
  line-height: 22px;
  padding: 8px 10px;
  display: inline-block;
}

.movie-grid .gen-movie-add .dropdown-menu a:hover {
  color: var(--primary-color);
}

.movie-grid .gen-movie-add.show .dropdown-menu {
  top: inherit !important;
  left: inherit !important;
  bottom: 45px;
  right: 15px;
}

.gen-movie-add .menu {
  z-index: 9;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.age-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(255, 0, 0, 0.8); /* Fundo vermelho com opacidade */
  color: #fff; /* Cor do texto branca */
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 1em;
  z-index: 10;
}

.gen-movie-add .menu li {
  position: relative;
  cursor: pointer;
  text-align: center;
}

.gen-movie-add .menu .share i.fa {
  background: transparent;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  color: var(--white-color);
  border-radius: 0;
}

.gen-movie-add .menu .submenu {
  list-style-type: none;
  padding: 5px 0;
  opacity: 0;
  margin: 0;
  position: absolute;
  left: 50%;
  margin-left: -18px;
  top: 80%;
  background: var(--white-color);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.gen-movie-add .menu .submenu:after {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 8px;
  margin-left: -8px;
}

.gen-movie-add .menu .submenu li a {
  padding: 5px 10px;
  color: var(--dark-color);
  display: inline-block;
  line-height: 1.3;
}

.gen-movie-add .menu .submenu li a:hover {
  color: var(--primary-color);
}

.gen-movie-add .menu li:hover .submenu {
  top: 100%;
  opacity: 1;
}

@media (min-width: 1279px) {
  .gen-style-1
    .gen-carousel-movies-style-1.movie-grid.style-1
    .gen-movie-contain
    .gen-movie-img
    img {
    object-fit: cover;
    height: 220px;
    width: auto;
  }
}

@media (min-width: 1340px) {
  .gen-style-1
    .gen-carousel-movies-style-1.movie-grid.style-1
    .gen-movie-contain
    .gen-movie-img
    img {
    object-fit: cover;
    height: 265px;
    width: auto;
  }
}

/*===== Carousel Movies 2 =====*/
.gen-carousel-movies-style-2 {
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
}

.gen-carousel-movies-style-2 .gen-movie-contain {
  position: relative;
}

.gen-carousel-movies-style-2 .gen-movie-contain .gen-movie-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 10px;
}

.gen-carousel-movies-style-2 .gen-movie-contain .gen-movie-img:before {
  content: "";
  opacity: 0;
  z-index: 9;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  background: #0b101766;
  background: -webkit-linear-gradient(top, #0b101766, #0b1017cc);
  background: -moz-linear-gradient(top, #0b101766, #0b1017cc);
  background: linear-gradient(to bottom, #0b101766, #0b1017cc);
}

.gen-carousel-movies-style-2 .gen-movie-contain:hover .gen-movie-img:before {
  opacity: 1;
}

.gen-carousel-movies-style-2 .gen-movie-contain .gen-movie-img img {
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.gen-carousel-movies-style-2 .gen-movie-contain:hover .gen-movie-img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.gen-carousel-movies-style-2 .gen-movie-contain .gen-movie-action {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 9;
  opacity: 0;

  /* Garante que o elemento seja centralizado dentro de seu contêiner pai */
  display: flex;
  align-items: center;
  justify-content: center;
}

.gen-carousel-movies-style-2 .gen-movie-contain:hover .gen-movie-action {
  opacity: 1;
}
/* Configuração padrão (para telas grandes) */
.gen-carousel-movies-style-2 .gen-movie-contain .gen-movie-action .gen-button {
  padding: 0;
  width: 60px;
  height: 60px;
  opacity: 1;
  display: inline-block;
  line-height: 60px;
  text-align: center;
  -webkit-border-radius: 900px;
  -moz-border-radius: 900px;
  border-radius: 900px;
}

/* Ícones dentro do botão */
.gen-carousel-movies-style-2
  .gen-movie-contain
  .gen-movie-action
  .gen-button
  i {
  margin: 0;
  padding: 0;
}

/* Para telas médias (768px a 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
  .gen-carousel-movies-style-2
    .gen-movie-contain
    .gen-movie-action
    .gen-button {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}

/* Para telas pequenas (menos de 768px) */
@media (max-width: 768px) {
  .gen-carousel-movies-style-2
    .gen-movie-contain
    .gen-movie-action
    .gen-button {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

.gen-carousel-movies-style-2 .gen-movie-contain .info-holder {
  position: absolute;
  padding: 15px;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  z-index: 99;
}

/* Configurações padrão para telas grandes */
.gen-carousel-movies-style-2 .gen-movie-contain .gen-movie-info h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* Telas médias (até 1023px) */
@media (max-width: 1023px) {
  .gen-carousel-movies-style-2 .gen-movie-contain .gen-movie-info h3 {
    font-size: 16px; /* Fonte levemente reduzida */
    line-height: 24px; /* Proporcional ao tamanho da fonte */
    font-weight: 400;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
}

/* Telas pequenas (até 767px) */
@media (max-width: 767px) {
  .gen-carousel-movies-style-2 .gen-movie-contain .gen-movie-info h3 {
    font-size: 14px; /* Fonte menor para telas pequenas */
    line-height: 22px; /* Ajuste para legibilidade */
    font-weight: 400;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
}

/* Telas muito pequenas (até 479px) */
@media (max-width: 479px) {
  .gen-carousel-movies-style-2 .gen-movie-contain .gen-movie-info h3 {
    font-size: 10px; /* Fonte compacta para telas muito pequenas */
    line-height: 20px; /* Proporção ajustada */
    font-weight: 400;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
}

.gen-carousel-movies-style-2 .gen-movie-contain .gen-movie-meta-holder ul {
  margin: 5px 0 0;
  padding: 0;
  float: left;
  display: inline-block;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* Configurações padrão para telas grandes */
.gen-carousel-movies-style-2 .gen-movie-contain .gen-movie-meta-holder ul li {
  list-style: none;
  margin: 0 15px 0px 0;
  padding: 0 15px 0px 0;
  font-size: 14px;
  line-height: normal;
  display: inline;
  align-items: center;
  color: var(--secondary-color);
  position: relative;
}

/* Telas médias (até 1023px) */
@media (max-width: 1023px) {
  .gen-carousel-movies-style-2 .gen-movie-contain .gen-movie-meta-holder ul li {
    margin: 0 10px 0px 0; /* Reduzido o espaçamento horizontal */
    padding: 0 10px 0px 0; /* Ajuste proporcional ao espaçamento */
    font-size: 13px; /* Fonte levemente reduzida */
    line-height: 1.4; /* Melhor espaçamento para legibilidade */
  }
}

/* Telas pequenas (até 767px) */
@media (max-width: 767px) {
  .gen-carousel-movies-style-2 .gen-movie-contain .gen-movie-meta-holder ul li {
    margin: 0 8px 5px 0; /* Margem reduzida e espaçamento vertical adicionado */
    padding: 0 8px 5px 0; /* Espaçamento menor */
    font-size: 12px; /* Fonte menor para telas pequenas */
    line-height: 1.3; /* Melhor ajuste para o layout */
    display: block; /* Exibe itens em blocos para evitar sobreposição */
  }
}

/* Telas muito pequenas (até 479px) */
@media (max-width: 479px) {
  .gen-carousel-movies-style-2 .gen-movie-contain .gen-movie-meta-holder ul li {
    margin: 0 5px 5px 0; /* Margem ainda menor */
    padding: 0 5px 5px 0; /* Ajuste proporcional ao espaçamento */
    font-size: 11px; /* Fonte compactada para telas muito pequenas */
    line-height: 1.2; /* Espaçamento proporcional */
    text-align: left; /* Alinhamento para manter legibilidade */
  }
}

.gen-carousel-movies-style-2
  .gen-movie-contain
  .gen-movie-meta-holder
  ul
  li:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -2px;
  right: -2px;
  height: 4px;
  width: 4px;
  display: inline-block;
  background: var(--white-color);
  opacity: 0.8;
  -webkit-border-radius: 900px;
  -moz-border-radius: 900px;
  border-radius: 900px;
}

.gen-carousel-movies-style-2 .gen-movie-contain .gen-movie-meta-holder ul li a {
  color: var(--primary-color);
}

.gen-carousel-movies-style-2
  .gen-movie-contain
  .gen-movie-meta-holder
  ul
  li
  a
  span {
  font-family: var(--title-font);
  font-weight: 600;
}

.gen-carousel-movies-style-2
  .gen-movie-contain
  .gen-movie-meta-holder
  ul
  li:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.gen-carousel-movies-style-2
  .gen-movie-contain
  .gen-movie-meta-holder
  ul
  li:last-child:before {
  display: none;
}

.gen-carousel-movies-style-2 .gen-movie-add {
  top: inherit;
  bottom: 0;
}

.gen-carousel-movies-style-2 .gen-movie-add .menu .submenu {
  top: inherit;
  bottom: 80%;
}

.gen-carousel-movies-style-2 .gen-movie-add .menu li:hover .submenu {
  top: inherit;
  bottom: 100%;
}

.gen-carousel-movies-style-2 .gen-movie-add .menu .submenu:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #ffffff;
  border-width: 8px;
  margin-left: -8px;
}

.gen-carousel-movies-style-2.movie-grid.style-2
  .gen-movie-contain
  .gen-movie-img
  .wpulike.wpulike-heart
  .wp_ulike_general_class
  a {
  color: var(--white-color);
}
/*===== Carousel Movies 3 =====*/
.gen-carousel-movies-style-3 {
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
}

.gen-carousel-movies-style-3 .gen-movie-contain {
  position: relative;
}

@media (max-width: 768px) {
  .gen-carousel-movies-style-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .gen-carousel-movies-style-3 .gen-movie-contain {
    width: 50%; /* ajusta a largura de cada filme para 25% */
    margin: 10px; /* adiciona um espaçamento entre os filmes */
  }
}

@media (max-width: 480px) {
  .gen-carousel-movies-style-3 .gen-movie-contain {
    width: 33.33%; /* ajusta a largura de cada filme para 33.33% */
    margin: 5px; /* reduz o espaçamento entre os filmes */
  }
}
.gen-carousel-movies-style-3 .gen-movie-contain .gen-movie-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gen-carousel-movies-style-3 .gen-movie-contain .gen-movie-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}

.gen-carousel-movies-style-3 .gen-movie-contain .gen-movie-img:before {
  content: "";
  opacity: 0;
  z-index: 9;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  background: #0b101766;
  background: -webkit-linear-gradient(top, #0b101766, #0b1017cc);
  background: -moz-linear-gradient(top, #0b101766, #0b1017cc);
  background: linear-gradient(to bottom, #0b101766, #0b1017cc);
}

.gen-carousel-movies-style-3 .gen-movie-contain:hover .gen-movie-img:before {
  opacity: 1;
}

.gen-carousel-movies-style-3 .gen-movie-contain:hover .gen-movie-img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

@media (max-width: 1200px) {
  .gen-carousel-movies-style-3 .gen-movie-contain .gen-movie-img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .gen-carousel-movies-style-3 .gen-movie-contain .gen-movie-img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .gen-carousel-movies-style-3 .gen-movie-contain .gen-movie-img {
    width: 100%;
    height: auto;
  }
}

.gen-carousel-movies-style-3 .gen-movie-contain .gen-movie-action {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 9;
  opacity: 0;
}

.gen-carousel-movies-style-3 .gen-movie-contain:hover .gen-movie-action {
  opacity: 1;
}

.gen-carousel-movies-style-3 .gen-movie-contain .gen-movie-action .gen-button {
  padding: 0;
  width: 60px;
  height: 60px;
  opacity: 1;
  display: inline-block;
  line-height: 60px;
  text-align: center;
  -webkit-border-radius: 900px;
  -moz-border-radius: 900px;
  border-radius: 900px;
}

.gen-carousel-movies-style-3
  .gen-movie-contain
  .gen-movie-action
  .gen-button
  i {
  margin: 0;
  padding: 0;
}

.gen-carousel-movies-style-3 .gen-movie-contain .gen-info-contain {
  display: inline-block;
  width: 100%;
  padding: 1px;
  border-radius: 5px;
  background: var(--black-color);
}

@media (max-width: 1200px) {
  .gen-carousel-movies-style-3 .gen-movie-contain .gen-info-contain {
    width: 100%;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .gen-carousel-movies-style-3 .gen-movie-contain .gen-info-contain {
    width: 100%;
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .gen-carousel-movies-style-3 .gen-movie-contain .gen-info-contain {
    width: 100%;
    padding: 5px;
  }
}
.gen-carousel-movies-style-3 .gen-movie-contain .info-holder {
  position: absolute;
  padding: 15px;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  z-index: 99;
}

.gen-carousel-movies-style-3 .gen-movie-contain .gen-movie-info h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.gen-carousel-movies-style-3 .gen-movie-contain .gen-movie-meta-holder ul {
  margin: 5px 0 0;
  padding: 0;
  float: left;
  display: inline-block;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.gen-carousel-movies-style-3 .gen-movie-contain .gen-movie-meta-holder ul li {
  list-style: none;
  margin: 0 15px 0px 0;
  padding: 0 15px 0px 0;
  font-size: 14px;
  line-height: normal;
  display: inline;
  align-items: center;
  color: var(--secondary-color);
  position: relative;
}

/* Responsividade */
@media (max-width: 1200px) {
  .gen-carousel-movies-style-3 .gen-movie-contain .info-holder {
    padding: 10px;
  }

  .gen-carousel-movies-style-3 .gen-movie-contain .gen-movie-info h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .gen-carousel-movies-style-3 .gen-movie-contain .gen-movie-meta-holder ul li {
    font-size: 12px;
    margin: 0 10px 0px 0;
  }
}

@media (max-width: 768px) {
  .gen-carousel-movies-style-3 .gen-movie-contain .info-holder {
    padding: 8px;
  }

  .gen-carousel-movies-style-3 .gen-movie-contain .gen-movie-info h3 {
    font-size: 16px;
    line-height: 22px;
  }

  .gen-carousel-movies-style-3 .gen-movie-contain .gen-movie-meta-holder ul li {
    font-size: 11px;
    margin: 0 8px 0px 0;
  }
}

@media (max-width: 480px) {
  .gen-carousel-movies-style-3 .gen-movie-contain .info-holder {
    padding: 6px;
  }

  .gen-carousel-movies-style-3 .gen-movie-contain .gen-movie-info h3 {
    font-size: 14px;
    line-height: 20px;
  }

  .gen-carousel-movies-style-3 .gen-movie-contain .gen-movie-meta-holder ul li {
    font-size: 10px;
    margin: 0 5px 0px 0;
  }
}

.gen-carousel-movies-style-3
  .gen-movie-contain
  .gen-movie-meta-holder
  ul
  li:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -2px;
  right: -2px;
  height: 4px;
  width: 4px;
  display: inline-block;
  background: var(--white-color);
  opacity: 0.8;
  -webkit-border-radius: 900px;
  -moz-border-radius: 900px;
  border-radius: 900px;
}

.gen-carousel-movies-style-3 .gen-movie-contain .gen-movie-meta-holder ul li a {
  color: var(--primary-color);
}

.gen-carousel-movies-style-3
  .gen-movie-contain
  .gen-movie-meta-holder
  ul
  li:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.gen-carousel-movies-style-3
  .gen-movie-contain
  .gen-movie-meta-holder
  ul
  li:last-child:before {
  display: none;
}

.gen-carousel-movies-style-3 .gen-movie-add {
  top: inherit;
  bottom: 0;
}

.gen-carousel-movies-style-3 .gen-movie-add .menu .submenu {
  top: inherit;
  bottom: 80%;
}

.gen-carousel-movies-style-3 .gen-movie-add .menu li:hover .submenu {
  top: inherit;
  bottom: 100%;
}

.gen-carousel-movies-style-3 .gen-movie-add .menu .submenu:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #ffffff;
  border-width: 8px;
  margin-left: -8px;
}

.gen-carousel-movies-style-3
  .gen-movie-contain
  .gen-movie-meta-holder
  ul
  li
  a
  span {
  font-family: var(--title-font);
  font-weight: 600;
}

.gen-carousel-movies-style-3.movie-grid.style-3
  .gen-movie-contain
  .gen-movie-img
  .wpulike.wpulike-heart
  .wp_ulike_general_class
  a {
  color: var(--white-color);
}
/*================================================
Movies Single
===============================================*/
.tv-single-background {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
}

.tv-single-background img {
  width: 100%;
}

.tv-single-background:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  background: rgba(12, 17, 27, 0.9);
  background: -moz-linear-gradient(
    top,
    rgba(12, 17, 27, 0.9) 0%,
    rgba(12, 17, 27, 1) 100%
  );
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, rgba(12, 17, 27, 0.9)),
    color-stop(100%, rgba(12, 17, 27, 1))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(12, 17, 27, 0.9) 0%,
    rgba(12, 17, 27, 1) 100%
  );
  background: -o-linear-gradient(
    top,
    rgba(12, 17, 27, 0.9) 0%,
    rgba(12, 17, 27, 1) 100%
  );
  background: -ms-linear-gradient(
    top,
    rgba(12, 17, 27, 0.9) 0%,
    rgba(12, 17, 27, 1) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(12, 17, 27, 0.9) 0%,
    rgba(12, 17, 27, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0c111b', endColorstr='#0c111b', GradientType=0);
}
.gen-video-holder {
  position: relative;
  border-radius: 20px;
  width: 100%; /* Largura total do container */
  height: auto; /* Ajusta a altura automaticamente com base no conteúdo */
  aspect-ratio: 16 / 9; /* Proporção de aspecto 16:9 */
  background-color: #000; /* Fundo preto para vídeos */
}
/* Container do vídeo */
.gen-video-holder iframe,
.gen-video-holder video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: contain; /* Ajusta o conteúdo sem cortá-lo */
}

/* Iframe do vídeo */
.gen-video-holder iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
  display: block;
  border-radius: 15px;
}
/* Estilos do botão de play */
.gen-video-holder .playBut {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centraliza o botão */
  display: flex; /* Centraliza o conteúdo do SVG se necessário */
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.5s ease;
  max-width: 15vw; /* Limita a largura máxima do botão */
  max-height: 15vw; /* Limita a altura máxima do botão */
  width: 10vw; /* Largura responsiva */
  height: 10vw; /* Altura responsiva */
  z-index: 10; /* Garante que o botão fique acima do vídeo */
  background: transparent; /* Remove qualquer fundo */
  border: none; /* Remove borda se houver */
}

/* Estilos do triângulo do botão de play */
.gen-video-holder .playBut .triangle {
  fill: none; /* Remove preenchimento interno */
  stroke: #000; /* Cor da borda inicial */
  stroke-width: 10; /* Define a largura do traço */
  transition: all 0.7s ease-in-out;
  stroke-dasharray: 240;
  stroke-dashoffset: 480;
}

/* Efeito hover no triângulo */
.gen-video-holder .playBut:hover .triangle {
  stroke-dashoffset: 0; /* Animação de traço */
  opacity: 1;
  stroke: #f8aa28; /* Cor ao passar o mouse */
  animation: nudge 0.7s ease-in-out;
}

/* Efeito hover no círculo */
.gen-video-holder .playBut:hover .circleP {
  stroke-dashoffset: 0; /* Animação de traço */
  opacity: 1;
}

/* Estilos do círculo do botão de play */
.gen-video-holder .circleP {
  fill: none; /* Remove preenchimento interno */
  stroke: #f8aa28; /* Cor inicial */
  stroke-width: 10; /* Define a largura do traço */
  stroke-dasharray: 650;
  stroke-dashoffset: 650;
  transition: all 0.5s ease-in-out;
  opacity: 0.3; /* Opacidade inicial */
}

/* Responsividade para telas pequenas */
@media (max-width: 600px) {
  .gen-video-holder .playBut {
    width: 25vw;
    height: 25vw;
  }
}

/* Responsividade para telas médias */
@media (min-width: 600px) and (max-width: 1200px) {
  .gen-video-holder .playBut {
    width: 15vw;
    height: 15vw;
  }
}

/* Responsividade para telas grandes */
@media (min-width: 1200px) {
  .gen-video-holder .playBut {
    width: 10vw;
    height: 10vw;
  }
}

/* Animação de "nudge" */
@keyframes nudge {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  70% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(0);
  }
}

/* Exibe a marca d'água normalmente fora do modo de tela cheia */
/* Exibe a marca d'água normalmente fora do modo de tela cheia */
.vjs-watermark img {
  display: block;
  width: 150px;
  height: auto;
  opacity: 0.5; /* Ajuste a opacidade conforme necessário */
}

/* Oculta a marca d'água e as legendas fora do modo de tela cheia */
.video-js:not(.vjs-fullscreen) .vjs-watermark img,
.video-js:not(.vjs-fullscreen) .vjs-text-track-display {
  display: none !important; /* Oculta fora do modo de tela cheia */
}

/* Player de vídeo oculto inicialmente */
.gen-video-holder .gen-video-player .movie-player_html5_api {
  width: 100%;
  height: 100%;
  border: none;
  background-color: rgb(0, 0, 0); /* Fundo preto para o player de vídeo */
  display: none; /* Player inicialmente oculto */
  max-height: 550px; /* Limita a altura máxima do player */
}

/* Logo sobreposta */
.video-logo {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100px;
  height: auto;
  z-index: 10;
  opacity: 0.8;
}

/* Remove o botão de play na interface do vídeo */
.vjs-big-play-button {
  display: none !important;
}

/*==========*/
.gen-single-movie-info {
  margin-bottom: 60px;
  margin-top: 30px;
  display: inline-block;
  width: 100%;
}

@media (max-width: 1023px) {
  .gen-single-movie {
    padding: 15px 0px;
  }
}

@media (max-width: 1023px) {
  .gen-single-video {
    padding: 15px 0px;
  }
}
/* Estilo padrão */
.gen-single-movie-info p,
.gen-single-video-info p {
  display: inline-block;
  width: 100%;
  font-size: 18px;
}

.gen-single-tv-show-info p {
  display: inline-block;
  width: 100%;
  font-size: 18px;
  margin-bottom: 30px;
}

.gen-single-tv-show-info .gen-title,
.gen-single-movie-info .gen-title {
  margin-bottom: 5px;
}

.gen-single-movie-info .gen-single-meta-holder ul,
.gen-single-tv-show-info .gen-single-meta-holder ul,
.gen-single-video-info .gen-single-meta-holder ul {
  margin: 5px 0 10px 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap; /* Responsividade: permite quebra de linha */
}

.gen-single-movie-info .gen-single-meta-holder ul li,
.gen-single-tv-show-info .gen-single-meta-holder ul li,
.gen-single-video-info .gen-single-meta-holder ul li {
  list-style: none;
  color: var(--white-color);
  margin: 10px 15px 0 0;
  padding: 0 15px 0 0;
  font-size: 16px;
  line-height: normal;
  display: flex;
  align-items: center;
  font-family: var(--title-fonts);
  border-right: 2px solid #ffffff;
}

.gen-single-movie-info .gen-single-meta-holder ul li:last-child,
.gen-single-tv-show-info .gen-single-meta-holder ul li:last-child,
.gen-single-video-info .gen-single-meta-holder ul li:last-child {
  border-right: none; /* Remove borda do último item */
}

/* Responsividade para telas médias (768px ou menos) */
@media (max-width: 768px) {
  .gen-single-movie-info p,
  .gen-single-video-info p,
  .gen-single-tv-show-info p {
    font-size: 16px;
    text-align: justify;
  }

  .gen-single-movie-info .gen-single-meta-holder ul,
  .gen-single-tv-show-info .gen-single-meta-holder ul,
  .gen-single-video-info .gen-single-meta-holder ul {
    justify-content: flex-start; /* Ajuste alinhamento para telas médias */
  }

  .gen-single-movie-info .gen-single-meta-holder ul li,
  .gen-single-tv-show-info .gen-single-meta-holder ul li,
  .gen-single-video-info .gen-single-meta-holder ul li {
    font-size: 14px;
    margin: 8px 10px 0 0;
    padding: 0 10px 0 0;
    border-right: none; /* Remove borda em telas médias */
  }
}

/* Responsividade para telas pequenas (480px ou menos) */
@media (max-width: 480px) {
  .gen-single-movie-info p,
  .gen-single-video-info p,
  .gen-single-tv-show-info p {
    font-size: 14px;
    text-align: justify;
  }

  .gen-single-movie-info .gen-single-meta-holder ul,
  .gen-single-tv-show-info .gen-single-meta-holder ul,
  .gen-single-video-info .gen-single-meta-holder ul {
    justify-content: center; /* Centraliza conteúdo em telas pequenas */
  }

  .gen-single-movie-info .gen-single-meta-holder ul li,
  .gen-single-tv-show-info .gen-single-meta-holder ul li,
  .gen-single-video-info .gen-single-meta-holder ul li {
    font-size: 12px;
    margin: 5px 5px 0 0;
    padding: 0 5px 0 0;
    border-right: none; /* Remove bordas */
  }
}

/* Responsividade para telas grandes (1200px ou mais) */
@media (min-width: 1200px) {
  .gen-single-movie-info p,
  .gen-single-video-info p,
  .gen-single-tv-show-info p {
    font-size: 20px;
  }

  .gen-single-movie-info .gen-single-meta-holder ul li,
  .gen-single-tv-show-info .gen-single-meta-holder ul li,
  .gen-single-video-info .gen-single-meta-holder ul li {
    font-size: 18px;
    margin: 12px 18px 0 0;
    padding: 0 18px 0 0;
  }
}

.gen-single-movie-info .gen-single-meta-holder ul li a,
.gen-single-tv-show-info .gen-single-meta-holder ul li a,
.gen-single-video-info .gen-single-meta-holder ul li a {
  color: var(--white-color);
}

.gen-single-movie-info .gen-single-meta-holder ul li i,
.gen-single-tv-show-info .gen-single-meta-holder ul li i,
.gen-single-video-info .gen-single-meta-holder ul li i {
  margin-right: 5px;
}

.gen-single-movie-info .gen-single-meta-holder ul li:last-child,
.gen-single-tv-show-info .gen-single-meta-holder ul li:last-child,
.gen-single-video-info .gen-single-meta-holder ul li:last-child {
  border-right: 0;
  margin-right: 0;
  padding-left: 0;
}

.gen-single-movie-info .gen-single-meta-holder ul {
  display: flex;
}

.gen-single-movie-info .gen-single-meta-holder ul li.gen-sen-rating {
  padding: 2px 5px;
  background: var(--primary-color);
}

.gen-extra-data ul {
  margin: 0 0 30px;
  padding: 0;
}

/* Estilo padrão */
.gen-extra-data ul li {
  list-style: none;
  color: var(--secondary-color);
  margin: 0 0 5px;
  font-size: 18px;
}

/* Responsividade para telas médias (768px ou menos) */
@media (max-width: 768px) {
  .gen-extra-data ul li {
    font-size: 16px;
    margin: 0 0 4px;
  }
}

/* Responsividade para telas pequenas (480px ou menos) */
@media (max-width: 480px) {
  .gen-extra-data ul li {
    font-size: 14px;
    margin: 0 0 3px;
    /* Centraliza o texto para facilitar a leitura */
  }
}

/* Responsividade para telas grandes (1200px ou mais) */
@media (min-width: 1200px) {
  .gen-extra-data ul li {
    font-size: 20px;
    margin: 0 0 6px;
  }
}

/* Estilo padrão */
.gen-extra-data ul li span:first-child {
  display: inline-block;
  width: 175px;
  font-weight: 500;
}

/* Responsividade para telas médias (768px ou menos) */
@media (max-width: 768px) {
  .gen-extra-data ul li span:first-child {
    width: 150px; /* Reduz a largura para caber melhor */
    font-size: 14px; /* Ajusta o tamanho da fonte */
  }
}

/* Responsividade para telas pequenas (480px ou menos) */
@media (max-width: 480px) {
  .gen-extra-data ul li span:first-child {
    width: 120px; /* Reduz ainda mais a largura */
    font-size: 12px; /* Tamanho menor para textos compactos */
    text-align: center; /* Centraliza o texto */
  }
}

/* Responsividade para telas grandes (1200px ou mais) */
@media (min-width: 1200px) {
  .gen-extra-data ul li span:first-child {
    width: 200px; /* Aumenta a largura para telas grandes */
    font-size: 16px; /* Fonte maior em telas maiores */
  }
}

.gen-extra-data ul li span:last-child {
  color: var(--white-color);
}

/*==========*/
.gen-tv-show-wrapper .col-lg-6 .gen-socail-share {
  border-bottom: none;
  padding: 0;
}

.gen-after-excerpt {
  display: flex;
  border-bottom: 3px solid var(--primary-color);
  padding: 0 0 60px 0;
  align-items: flex-end;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.gen-after-excerpt .gen-extra-data ul {
  margin: 0;
}

.gen-after-excerpt .gen-socail-share {
  border-bottom: none;
  padding: 0;
  display: flex;
  text-align: center;
}

.gen-socail-share {
  margin: 0;
  display: flex;
  border-bottom: 3px solid var(--primary-color);
  padding: 0 0 60px 0;
}

.gen-socail-share h4 {
  font-size: 18px;
  line-height: normal;
  font-weight: 600;
  color: var(--white-color);
}

.gen-socail-share .social-inner {
  margin: 0 0 0 15px;
  padding: 0;
  display: flex;
}

.gen-socail-share .social-inner li {
  list-style: none;
  margin: 0 15px 0 0;
}

.gen-socail-share .social-inner li:last-child {
  margin-right: 0;
}

.gen-socail-share .social-inner li a {
  display: inline-block;
  font-size: 18px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: var(--black-color);
  color: var(--white-color);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.gen-socail-share .social-inner li a:hover {
  background: var(--primary-color);
}

.pm-inner .gen-more-like .gen-more-title {
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--black-color);
  position: relative;
}

.pm-inner .gen-more-like .gen-more-title:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  display: inline-block;
  width: 100px;
  height: 3px;
  background: var(--primary-color);
}

.gen-section-title-1 .gen-section-title {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--black-color);
  position: relative;
}

.gen-section-title-1 .gen-section-title:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  display: inline-block;
  width: 100px;
  height: 3px;
  background: var(--primary-color);
}

@media (max-width: 1023px) {
  .gen-video-holder iframe {
    height: 60vh !important;
  }

  .single-movie .content-area .site-main,
  .single-video .content-area .site-main {
    padding: 15px 0 0 !important;
  }

  .gentech-tv-show-img-holder {
    margin: 0 0 30px;
  }

  .gen-tv-show-top {
    margin: 0 !important;
  }
}

@media (max-width: 979px) {
  .gen-video-holder iframe {
    height: 48vh !important;
  }
}

@media (max-width: 767px) {
  .gen-video-holder iframe {
    height: 29vh !important;
  }

  .gen-single-movie-info .gen-title,
  .gen-single-video-info .gen-title,
  .gen-single-tv-show-info .gen-title {
    font-size: 30px;
    line-height: 38px;
  }

  .owl-carousel .gen-carousel-movies-style-1 .gen-movie-contain {
    margin: 0;
  }

  .gen-socail-share {
    margin-top: 30px;
    display: inline-block;
    width: 100%;
  }

  .gen-socail-share .social-inner {
    margin: 15px 0 0;
  }

  .gen-single-movie-info .gen-single-meta-holder ul,
  .gen-single-tv-show-info .gen-single-meta-holder ul,
  .gen-single-video-info .gen-single-meta-holder ul {
    display: inline-block;
  }

  .gen-single-movie-info .gen-single-meta-holder ul li,
  .gen-single-tv-show-info .gen-single-meta-holder ul li,
  .gen-single-video-info .gen-single-meta-holder ul li {
    font-size: 14px;
    float: left;
    margin: 10px 10px 0px 0;
    padding: 0 10px 0 0;
  }
}

@media (max-width: 479px) {
  .gen-single-movie-info .gen-title,
  .gen-single-video-info .gen-title,
  .gen-single-tv-show-info .gen-title {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (max-width: 767px) {
  .gen-after-excerpt {
    display: inline-block;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .gen-single-movie-info .gen-after-excerpt .gen-socail-share ul {
    margin: 0 0 0 15px;
  }
}

@media (max-width: 479px) {
  .gen-single-movie-info .gen-after-excerpt .gen-socail-share {
    margin: 30px 0 0;
    display: inline-block;
    width: 100%;
    text-align: left;
  }

  .gen-single-movie-info .gen-after-excerpt .gen-socail-share ul {
    margin: 15px 0 0 0;
  }
}

/*================================================
Banner
===============================================*/
.gen-banner-movies .owl-carousel .owl-nav {
  top: 50%;
}

.gen-banner-movies .owl-carousel .owl-nav button.owl-prev {
  font-size: 40px;
  left: 2%;
}

.gen-banner-movies .owl-carousel .owl-nav button.owl-next {
  font-size: 40px;
  right: 2%;
}

.gen-banner-movies .owl-carousel .owl-dots {
  position: absolute;
  bottom: 30px;
}

.gen-banner-movies .item {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.gen-banner-movies .item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  background: rgb(12, 17, 27);
  background: -moz-linear-gradient(
    90deg,
    rgba(12, 17, 27, 0.9) 0%,
    rgba(12, 17, 27, 0.2) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(12, 17, 27, 0.9) 0%,
    rgba(12, 17, 27, 0.2) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(12, 17, 27, 0.9) 0%,
    rgba(12, 17, 27, 0.2) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0c111b", endColorstr="#0c111b", GradientType=1);
}

.gen-banner-movies .gen-movie-contain .gen-tag-line {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin: 0 0 15px 0;
  border-left: 2px solid #1f80e0;
  padding: 0 0 0 15px;
  color: var(--white-color);
}

.gen-banner-movies .gen-movie-contain .gen-tag-img img {
  width: auto;
  height: 60px;
  margin: 0 0 15px 0;
}

.gen-banner-movies .gen-movie-contain .gen-movie-info h3 {
  font-size: 62px;
  line-height: 70px;
  text-transform: uppercase;
}

.gen-banner-movies .gen-movie-contain .gen-movie-meta-holder ul {
  margin: 5px 0 15px;
  padding: 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.gen-banner-movies .gen-movie-contain .gen-movie-meta-holder ul li {
  list-style: none;
  font-family: var(--title-fonts);
  color: var(--white-color);
  margin: 10px 0 0 20px;
  padding: 0 0 0 20px;
  font-size: 16px;
  line-height: normal;
  display: flex;
  float: left;
  align-items: center;
  position: relative;
}

.gen-banner-movies
  .gen-movie-contain
  .gen-movie-meta-holder
  ul
  li.gen-sen-rating:before {
  display: none;
}

.gen-banner-movies
  .gen-movie-contain
  .gen-movie-meta-holder
  ul
  li.gen-sen-rating
  span {
  color: var(--white-color);
  border: 1px solid var(--white-color);
  padding: 2px 8px;
}

.gen-banner-movies .gen-movie-contain .gen-movie-meta-holder ul li:first-child {
  margin-left: 0;
  padding-left: 0;
}

.gen-banner-movies .gen-movie-contain .gen-movie-meta-holder ul li:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -2px;
  left: -2px;
  height: 4px;
  width: 4px;
  display: inline-block;
  background: var(--white-color);
  opacity: 0.8;
  -webkit-border-radius: 900px;
  -moz-border-radius: 900px;
  border-radius: 900px;
}

.gen-banner-movies
  .gen-movie-contain
  .gen-movie-meta-holder
  ul
  li:first-child:before {
  display: none;
}

.gen-banner-movies .gen-movie-contain .gen-movie-meta-holder ul li a {
  color: var(--white-color);
  background: #1f80e0;
  padding: 2px 8px;
}

.gen-banner-movies .gen-movie-contain .gen-movie-meta-holder ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.gen-banner-movies .gen-movie-contain .gen-movie-meta-holder ul li img {
  height: 25px;
  width: auto;
  margin-right: 10px;
  float: left;
}

.gen-banner-movies .gen-movie-contain .gen-movie-meta-holder ul li i {
  margin-right: 5px;
  color: var(--primary-color);
}

.gen-banner-movies .gen-movie-contain .gen-movie-meta-holder p,
.gen-banner-movies .gen-movie-contain .gen-movie-info p {
  display: inline-block;
  width: 100%;
  font-size: 18px;
}

.gen-banner-movies .gen-movie-contain .gen-movie-action .gen-btn-container {
  display: inline-block;
  margin-right: 30px;
}

.gen-banner-movies .owl-carousel .owl-item .gen-movie-contain .gen-movie-info,
.gen-banner-movies
  .owl-carousel
  .owl-item
  .gen-movie-contain
  .gen-movie-meta-holder,
.gen-banner-movies .owl-carousel .owl-item .gen-movie-contain .gen-movie-action,
.gen-banner-movies .owl-carousel .owl-item .gen-movie-contain .gen-tag-line,
.gen-banner-movies .owl-carousel .owl-item .gen-movie-contain .gen-tag-img {
  transition: transform 0.5s, opacity 0.3s, background 0.5s;
  opacity: 0;
  transform: translateX(300px);
}

.gen-banner-movies
  .owl-carousel
  .owl-item.active
  .gen-movie-contain
  .gen-movie-info,
.gen-banner-movies
  .owl-carousel
  .owl-item.active
  .gen-movie-contain
  .gen-movie-meta-holder,
.gen-banner-movies
  .owl-carousel
  .owl-item.active
  .gen-movie-contain
  .gen-movie-action,
.gen-banner-movies
  .owl-carousel
  .owl-item.active
  .gen-movie-contain
  .gen-tag-line,
.gen-banner-movies
  .owl-carousel
  .owl-item.active
  .gen-movie-contain
  .gen-tag-img {
  transform: translateX(0);
  opacity: 1;
}

.gen-banner-movies
  .owl-carousel
  .owl-item.active
  .gen-movie-contain
  .gen-tag-line,
.gen-banner-movies .gen-movie-contain .gen-tag-img {
  transition-delay: 0.3s;
}

.gen-banner-movies
  .owl-carousel
  .owl-item.active
  .gen-movie-contain
  .gen-movie-info {
  transition-delay: 0.5s;
}

.gen-banner-movies
  .owl-carousel
  .owl-item.active
  .gen-movie-contain
  .gen-movie-meta-holder {
  transition-delay: 0.7s;
}

.gen-banner-movies
  .owl-carousel
  .owl-item.active
  .gen-movie-contain
  .gen-movie-action {
  transition-delay: 0.9s;
}

/*================*/
.home-singal-silder .gen-banner-movies .item {
  height: 70vh;
  border-left: 3px solid var(--primary-color);
}
@media (max-width: 1699px) {
  .gen-movie-contain-style-3 a.playBut {
    margin: 0 0 50px; /* Reduzido para espaçamento mais compacto */
  }
}

@media (max-width: 1399px) {
  .gen-movie-contain-style-3 a.playBut {
    margin: 0 0 30px;
  }

  .gen-banner-movies .gen-movie-contain .gen-movie-info h3 {
    font-size: 36px; /* Reduzido para textos mais proporcionais */
    line-height: 42px;
  }
}

@media (max-width: 1365px) {
  .gen-banner-movies .owl-carousel .owl-nav button.owl-prev {
    left: 2%;
  }

  .gen-banner-movies .owl-carousel .owl-nav button.owl-next {
    right: 2%;
  }

  .gen-banner-movies .gen-movie-contain .gen-movie-info h3 {
    font-size: 32px; /* Fonte menor para melhor encaixe */
    line-height: 38px;
  }
}

@media (max-width: 1023px) {
  .gen-banner-movies .gen-movie-contain .gen-movie-info h3 {
    font-size: 28px; /* Ideal para telas médias */
    line-height: 34px;
  }

  .gen-banner-movies .owl-carousel .owl-nav {
    display: none; /* Esconde navegação */
  }
}

@media (max-width: 979px) {
  .gen-banner-movies .owl-carousel .owl-dots {
    display: none;
  }
}

@media (max-width: 767px) {
  .gen-banner-movies .gen-movie-contain .gen-movie-info h3 {
    font-size: 24px; /* Texto mais compacto */
    line-height: 30px;
  }

  .gen-banner-movies .gen-movie-contain .gen-movie-meta-holder p,
  .gen-banner-movies .gen-movie-contain .gen-movie-info p {
    font-size: 12px; /* Reduzido para dispositivos menores */
  }

  .gen-banner-movies .gen-movie-contain .gen-tag-line {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1px;
  }

  .gen-banner-movies .gen-movie-contain .gen-movie-meta-holder ul li img {
    height: 18px; /* Proporcional ao texto menor */
  }

  .gen-banner-movies .gen-movie-contain .gen-tag-img img {
    height: 35px;
  }

  .gen-banner-movies .gen-movie-contain .gen-movie-action .gen-btn-container {
    margin-right: 5px;
  }

  .gen-banner-movies
    .gen-movie-contain
    .gen-movie-action
    .gen-btn-container.button-1
    .gen-button {
    padding: 8px 20px; /* Botões mais compactos */
  }

  .gen-banner-movies .gen-movie-contain .gen-movie-meta-holder ul li {
    font-size: 10px;
    margin: 4px 0 0 5px;
    padding: 0 0 0 5px;
  }
}

@media (max-width: 479px) {
  .gen-banner-movies
    .gen-movie-contain
    .gen-movie-action
    .gen-btn-container.button-2 {
    margin-top: 8px;
  }

  .gen-banner-movies .gen-movie-contain .gen-movie-info h3 {
    font-size: 20px; /* Bem reduzido para telas muito pequenas */
    line-height: 26px;
  }

  .gen-banner-movies .gen-movie-contain .gen-movie-meta-holder p {
    font-size: 10px; /* Texto pequeno */
  }

  .gen-banner-movies .gen-movie-contain .gen-tag-line {
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0.5px;
  }
}

/*================================================
Banner 2
===============================================*/
.gen-banner-movies.banner-style-2 .item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  background: #0b1017cc;
  background: -webkit-linear-gradient(right, #0b1017cc, #0b1017);
  background: -moz-linear-gradient(right, #0b1017cc, #0b1017);
  background: linear-gradient(to left, #0b1017cc, #0b1017);
}

.gen-movie-contain-style-2 .gen-tag-line {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin: 0 0 15px 0;
  border-left: 2px solid #1f80e0;
  padding: 0 0 0 15px;
  color: var(--white-color);
}

.gen-movie-contain-style-2 .gen-tag-img img {
  width: auto;
  height: 60px;
  margin: 0 0 15px 0;
}

.gen-movie-contain-style-2 .gen-movie-info h3 {
  font-size: 62px;
  line-height: 70px;
  text-transform: uppercase;
}

.gen-movie-contain-style-2 .gen-movie-meta-holder ul.gen-meta-after-title {
  margin: 5px 0 15px;
  padding: 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.gen-movie-contain-style-2 .gen-movie-meta-holder ul.gen-meta-after-title li {
  list-style: none;
  font-family: var(--title-fonts);
  color: var(--white-color);
  margin: 10px 0 0 20px;
  padding: 0 0 0 20px;
  font-size: 16px;
  line-height: normal;
  display: flex;
  float: left;
  align-items: center;
  position: relative;
}

.gen-movie-contain-style-2
  .gen-movie-meta-holder
  ul.gen-meta-after-title
  li.gen-sen-rating:before {
  display: none;
}

.gen-movie-contain-style-2
  .gen-movie-meta-holder
  ul.gen-meta-after-title
  li.gen-sen-rating
  span {
  color: var(--white-color);
  border: 1px solid var(--white-color);
  padding: 2px 8px;
}

.gen-movie-contain-style-2
  .gen-movie-meta-holder
  ul.gen-meta-after-title
  li:first-child {
  margin-left: 0;
  padding-left: 0;
}

.gen-movie-contain-style-2
  .gen-movie-meta-holder
  ul.gen-meta-after-title
  li:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -2px;
  left: -2px;
  height: 4px;
  width: 4px;
  display: inline-block;
  background: var(--white-color);
  opacity: 0.8;
  -webkit-border-radius: 900px;
  -moz-border-radius: 900px;
  border-radius: 900px;
}

.gen-movie-contain-style-2 .gen-movie-meta-holder ul.gen-meta-after-title li a {
  color: var(--white-color);
  background: #1f80e0;
  padding: 2px 8px;
}

.gen-movie-contain-style-2
  .gen-movie-meta-holder
  ul.gen-meta-after-title
  li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.gen-movie-contain-style-2
  .gen-movie-meta-holder
  ul.gen-meta-after-title
  li
  img {
  height: 25px;
  width: auto;
  margin-right: 10px;
  float: left;
}

.gen-movie-contain-style-2 .gen-movie-meta-holder ul.gen-meta-after-title li i {
  margin-right: 5px;
  color: var(--primary-color);
}

.gen-movie-contain-style-2 .gen-movie-meta-holder p,
.gen-movie-contain-style-2 .gen-movie-info p {
  display: inline-block;
  width: 100%;
  font-size: 18px;
  margin-bottom: 20px;
}

.gen-movie-contain-style-2 .gen-movie-action .gen-btn-container {
  display: inline-block;
  margin-right: 30px;
}

.gen-movie-contain-style-2 .gen-movie-meta-holder .gen-meta-info ul {
  margin: 0 0 40px;
  padding: 0;
}

.gen-movie-contain-style-2 .gen-movie-meta-holder .gen-meta-info ul li {
  margin: 0 0 5px;
  padding: 0;
  list-style: none;
  font-family: var(--title-fonts);
  color: var(--white-color);
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.gen-movie-contain-style-2 .gen-movie-meta-holder .gen-meta-info ul li strong {
  color: var(--primary-color);
}

.gen-movie-contain-style-2 .gen-movie-meta-holder .gen-meta-info ul li a {
  color: var(--white-color);
}

/* .gen-banner-movies.banner-style-2 .owl-carousel .owl-item .gen-movie-contain-style-2 .gen-movie-info, .gen-banner-movies.banner-style-2 .owl-carousel .owl-item .gen-movie-contain-style-2 .gen-movie-meta-holder, .gen-banner-movies.banner-style-2 .owl-carousel .owl-item .gen-movie-contain-style-2 .gen-movie-action, .gen-banner-movies.banner-style-2 .owl-carousel .owl-item .gen-movie-contain-style-2 .gen-tag-line, .gen-banner-movies.banner-style-2 .owl-carousel .owl-item .gen-movie-contain-style-2 .gen-tag-img {  }
.gen-banner-movies.banner-style-2 .owl-carousel .owl-item.active .gen-movie-contain-style-2 .gen-movie-info, .gen-banner-movies.banner-style-2 .owl-carousel .owl-item.active .gen-movie-contain-style-2 .gen-movie-meta-holder, .gen-banner-movies.banner-style-2 .owl-carousel .owl-item.active .gen-movie-contain-style-2 .gen-movie-action, .gen-banner-movies.banner-style-2 .owl-carousel .owl-item.active .gen-movie-contain-style-2 .gen-tag-line, .gen-banner-movies.banner-style-2 .owl-carousel .owl-item.active .gen-movie-contain-style-2 .gen-tag-img { transform: translateX(0); opacity: 1; } */
.gen-banner-movies.banner-style-2
  .owl-carousel
  .owl-item.active
  .gen-movie-contain-style-2
  .gen-tag-line,
.gen-banner-movies.banner-style-2 .gen-movie-contain-style-2 .gen-tag-img {
  -webkit-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s
    both;
  animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s both;
}

.gen-banner-movies.banner-style-2
  .owl-carousel
  .owl-item.active
  .gen-movie-contain-style-2
  .gen-movie-info {
  -webkit-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.4s
    both;
  animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.4s both;
}

.gen-banner-movies.banner-style-2
  .owl-carousel
  .owl-item.active
  .gen-movie-contain-style-2
  .gen-movie-meta-holder {
  -webkit-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s
    both;
  animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s both;
}

.gen-banner-movies.banner-style-2
  .owl-carousel
  .owl-item.active
  .gen-movie-contain-style-2
  .gen-movie-action {
  -webkit-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.8s
    both;
  animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.8s both;
}

.gen-banner-movies.banner-style-2
  .owl-carousel
  .owl-item.active
  .gen-front-image {
  -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 1s
    both;
  animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 1s both;
}

/**
 * ----------------------------------------
 * animation fade-in-right
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation fade-in-left
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/*================================================
Banner 3
===============================================*/
.gen-banner-movies.banner-style-3 .item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  background: rgb(10, 14, 23);
  background: -moz-linear-gradient(
    180deg,
    rgba(10, 14, 23, 0.2) 0%,
    rgba(10, 14, 23, 1) 100%
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(10, 14, 23, 0.2) 0%,
    rgba(10, 14, 23, 1) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(10, 14, 23, 0.2) 0%,
    rgba(10, 14, 23, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0a0e17", endColorstr="#0a0e17", GradientType=1);
}

.gen-movie-contain-style-3 .row.justify-content-center {
  align-content: flex-end;
  text-align: center;
  padding-bottom: 60px;
}

.gen-movie-contain-style-3 .gen-tag-line {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin: 0 0 15px 0;
  border-left: 2px solid #1f80e0;
  padding: 0 0 0 15px;
  color: var(--white-color);
  display: inline-block;
}

.gen-movie-contain-style-3 .gen-tag-img img {
  width: auto;
  height: 60px;
  margin: 0 auto 15px;
}

.gen-movie-contain-style-3 .gen-movie-info h3 {
  font-size: 62px;
  line-height: 70px;
  text-transform: uppercase;
}

.gen-movie-contain-style-3 .gen-movie-meta-holder ul {
  margin: 5px 0 15px;
  padding: 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  justify-content: center;
}

.gen-movie-contain-style-3 .gen-movie-meta-holder ul li {
  list-style: none;
  font-family: var(--title-fonts);
  color: var(--white-color);
  margin: 10px 0 0 20px;
  padding: 0 0 0 20px;
  font-size: 16px;
  line-height: normal;
  display: flex;
  float: left;
  align-items: center;
  position: relative;
}

.gen-movie-contain-style-3 .gen-movie-meta-holder ul li.gen-sen-rating:before {
  display: none;
}

.gen-movie-contain-style-3 .gen-movie-meta-holder ul li.gen-sen-rating span {
  color: var(--white-color);
  border: 1px solid var(--white-color);
  padding: 2px 8px;
}

.gen-movie-contain-style-3 .gen-movie-meta-holder ul li:first-child {
  margin-left: 0;
  padding-left: 0;
}

.gen-movie-contain-style-3 .gen-movie-meta-holder ul li:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -2px;
  left: -2px;
  height: 4px;
  width: 4px;
  display: inline-block;
  background: var(--white-color);
  opacity: 0.8;
  -webkit-border-radius: 900px;
  -moz-border-radius: 900px;
  border-radius: 900px;
}

.gen-movie-contain-style-3 .gen-movie-meta-holder ul li:first-child:before {
  display: none;
}

.gen-movie-contain-style-3 .gen-movie-meta-holder ul li a {
  color: var(--white-color);
  background: #1f80e0;
  padding: 2px 8px;
}

.gen-movie-contain-style-3 .gen-movie-meta-holder ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.gen-movie-contain-style-3 .gen-movie-meta-holder ul li img {
  height: 25px;
  width: auto;
  margin-right: 10px;
  float: left;
}

.gen-movie-contain-style-3 .gen-movie-meta-holder ul li i {
  margin-right: 5px;
  color: var(--primary-color);
}

.gen-movie-contain-style-3 .gen-movie-meta-holder p,
.gen-movie-contain-style-3 .gen-movie-info p {
  display: inline-block;
  width: 100%;
  font-size: 18px;
}

.gen-movie-contain-style-3 .gen-movie-action .gen-btn-container {
  display: inline-block;
  margin-right: 30px;
}

/* .gen-banner-movies .owl-carousel .owl-item .gen-movie-contain .gen-movie-info, .gen-banner-movies .owl-carousel .owl-item .gen-movie-contain .gen-movie-meta-holder, .gen-banner-movies .owl-carousel .owl-item .gen-movie-contain .gen-movie-action, .gen-banner-movies .owl-carousel .owl-item .gen-movie-contain .gen-tag-line, .gen-banner-movies .owl-carousel .owl-item .gen-movie-contain .gen-tag-img { transition: transform .5s, opacity .3s, background .5s; opacity: 0; transform: translateX(300px); }
.gen-banner-movies .owl-carousel .owl-item.active .gen-movie-contain .gen-movie-info, .gen-banner-movies .owl-carousel .owl-item.active .gen-movie-contain .gen-movie-meta-holder, .gen-banner-movies .owl-carousel .owl-item.active .gen-movie-contain .gen-movie-action, .gen-banner-movies .owl-carousel .owl-item.active .gen-movie-contain .gen-tag-line, .gen-banner-movies .owl-carousel .owl-item.active .gen-movie-contain .gen-tag-img { transform: translateX(0); opacity: 1; }
.gen-banner-movies .owl-carousel .owl-item.active .gen-movie-contain .gen-tag-line, .gen-movie-contain-style-3 .gen-tag-img { transition-delay: .3s; }
.gen-banner-movies .owl-carousel .owl-item.active .gen-movie-contain .gen-movie-info { transition-delay: .5s; }
.gen-banner-movies .owl-carousel .owl-item.active .gen-movie-contain .gen-movie-meta-holder { transition-delay: .7s; }
.gen-banner-movies .owl-carousel .owl-item.active .gen-movie-contain .gen-movie-action { transition-delay: .9s; } */
.gen-movie-contain-style-3 a.playBut {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: 0 0 130px;
}

.gen-movie-contain-style-3 a.playBut svg {
  height: 90px;
  width: auto;
  -webkit-border-radius: 900px;
  -moz-border-radius: 900px;
  border-radius: 900px;
}

.gen-movie-contain-style-3 a.playBut span {
  font-family: var(--title-fonts);
  color: var(--white-color);
  margin: 0 0 0 15px;
  padding: 0;
  font-size: 24px;
  line-height: normal;
  display: flex;
}

.gen-movie-contain-style-3 a.playBut .triangle {
  stroke: var(--white-color);
}

.gen-movie-contain-style-3 a.playBut .circle {
  stroke: var(--white-color);
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
  -webkit-transition: all 0.5s ease-in-out;
  opacity: 1;
}

.gen-movie-contain-style-3 a.playBut:hover .circle {
  opacity: 1;
  stroke-dasharray: 10;
  stroke-dashoffset: 10;
}

@media (max-width: 1399px) {
  .gen-movie-contain-style-3 .gen-movie-info h3 {
    font-size: 54px;
    line-height: 62px;
  }
}

@media (max-width: 1365px) {
  .gen-movie-contain-style-3 .gen-movie-info h3 {
    font-size: 62px;
    line-height: 70px;
  }
}

@media (max-width: 1023px) {
  .gen-movie-contain-style-3 .gen-movie-info h3 {
    font-size: 54px;
    line-height: 62px;
  }

  .gen-movie-contain-style-3 .row.justify-content-center {
    align-content: center;
  }
}

@media (max-width: 767px) {
  .gen-movie-contain-style-3 .gen-movie-info h3 {
    font-size: 40px;
    line-height: 48px;
  }

  .gen-movie-contain-style-3 .gen-tag-line {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 2px;
  }

  .gen-movie-contain-style-3 .gen-movie-meta-holder ul li img {
    height: 22px;
  }

  .gen-movie-contain-style-3 .gen-tag-img img {
    height: 45px;
  }

  .gen-movie-contain-style-3 .gen-movie-action .gen-btn-container {
    margin-right: 10px;
  }

  .gen-movie-contain-style-3
    .gen-movie-action
    .gen-btn-container.button-1
    .gen-button {
    padding: 12px 30px;
  }

  .gen-movie-contain-style-3 .gen-movie-meta-holder ul li {
    font-size: 14px;
    margin: 8px 0 0 10px;
    padding: 0 0 0 10px;
  }

  .gen-movie-contain-style-3 .gen-movie-meta-holder p,
  .gen-movie-contain-style-3 .gen-movie-info p {
    font-size: 16px;
  }
}

@media (max-width: 479px) {
  .gen-movie-contain-style-3 .gen-movie-action .gen-btn-container.button-2 {
    margin-top: 15px;
  }

  .gen-movie-contain-style-3 a.playBut svg {
    height: 60px;
  }

  .gen-movie-contain-style-3 a.playBut span {
    font-size: 18px;
  }

  .gen-movie-contain-style-3 .gen-movie-info h3 {
    font-size: 30px;
    line-height: 38px;
  }
}

/*================================================
Play Button
================================================*/

.gen-front-anime-image {
  position: relative;
  display: flex;
  border-radius: 10px; /* Alinhamento central */
  justify-content: center;
  align-items: center;
  width: 40%; /* Ajuste o tamanho da imagem conforme necessário */
  margin: 0 auto;
}

.gen-front-anime-image img {
  border-radius: 10px; /* Alinhamento central */
}

.gen-front-anime-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-color);
  opacity: 0.4;
  border-radius: 10px; /* Bordas arredondadas para um visual elegante */
}

.gen-front-anime-image a {
  margin: auto;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gen-front-anime-image a svg {
  height: 70px; /* Reduz o tamanho do ícone */
  width: auto;
}

.gen-front-anime-image a span {
  font-family: var(--title-fonts);
  color: var(--white-color);
  margin-top: 15px;
  font-size: 18px; /* Tamanho de fonte reduzido */
  display: block;
  text-align: center; /* Centraliza o texto */
}

.gen-front-image {
  position: relative;
  display: flex;
  border-radius: 10px; /* Alinhamento central */
  justify-content: center;
  align-items: center;
  width: 55%; /* Ajuste o tamanho da imagem conforme necessário */
  margin: 0 auto;
}

.gen-front-image img {
  border-radius: 10px; /* Alinhamento central */
}

.gen-front-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-color);
  opacity: 0.4;
  border-radius: 10px; /* Bordas arredondadas para um visual elegante */
}

.gen-front-image a {
  margin: auto;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gen-front-image a svg {
  height: 70px; /* Reduz o tamanho do ícone */
  width: auto;
}

.gen-front-image a span {
  font-family: var(--title-fonts);
  color: var(--white-color);
  margin-top: 15px;
  font-size: 18px; /* Tamanho de fonte reduzido */
  display: block;
  text-align: center; /* Centraliza o texto */
}

.circle {
  stroke: var(--white-color);
  stroke-dasharray: 650;
  stroke-dashoffset: 650;
  -webkit-transition: all 0.5s ease-in-out;
  opacity: 0.3;
}

.playBut {
  display: inline-block;
  -webkit-transition: all 0.5s ease;
}

.playBut .triangle {
  -webkit-transition: all 0.7s ease-in-out;
  stroke-dasharray: 240;
  stroke-dashoffset: 480;
  stroke: var(--white-color);
  transform: translateY(0);
}

.playBut:hover .triangle {
  stroke-dashoffset: 0;
  opacity: 1;
  stroke: var(--white-color);
  animation: nudge 0.7s ease-in-out;
}

@keyframes nudge {
  0% {
    transform: translateX(0);
  }

  30% {
    transform: translateX(-5px);
  }

  50% {
    transform: translateX(5px);
  }

  70% {
    transform: translateX(-2px);
  }

  100% {
    transform: translateX(0);
  }
}

.playBut:hover .circle {
  stroke-dashoffset: 0;
  opacity: 1;
}

.gen-front-image.no-image {
  margin: 0;
  text-align: center;
}

.gen-front-image.no-image:before {
  display: none;
}

.gen-front-image.no-image a {
  margin: 0;
  text-align: inherit;
  position: relative;
  top: inherit;
  left: inherit;
  -webkit-transform: inherit;
  -ms-transform: inherit;
  transform: inherit;
}

@media (max-width: 1399px) {
  .gen-movie-contain-style-2 .gen-movie-info h3 {
    font-size: 54px;
    line-height: 62px;
  }
}

@media (max-width: 1365px) {
  .gen-movie-contain-style-2 .gen-movie-info h3 {
    font-size: 62px;
    line-height: 70px;
  }

  .gen-front-image {
    margin-left: 0;
  }
}

@media (max-width: 1200px) {
  .gen-front-image {
    margin-bottom: 45px;
  }

  .gen-banner-movies.banner-style-2 .item {
    height: auto;
    padding: 60px 0;
  }

  .gen-front-image.no-image {
    margin: 0 0 45px;
    text-align: left;
  }
}

@media (max-width: 1023px) {
  .gen-movie-contain-style-2 .gen-movie-info h3 {
    font-size: 54px;
    line-height: 62px;
  }

  .gen-banner-movies .owl-carousel .owl-nav {
    display: none;
  }
}

@media (max-width: 767px) {
  .gen-movie-contain-style-2 .gen-movie-info h3 {
    font-size: 40px;
    line-height: 48px;
  }

  .gen-movie-contain-style-2 .gen-tag-line {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 2px;
  }

  .gen-movie-contain-style-2 .gen-movie-meta-holder ul li img {
    height: 22px;
  }

  .gen-movie-contain-style-2 .gen-tag-img img {
    height: 45px;
  }

  .gen-movie-contain-style-2 .gen-movie-action .gen-btn-container {
    margin-right: 10px;
  }

  .gen-movie-contain-style-2
    .gen-movie-action
    .gen-btn-container.button-1
    .gen-button {
    padding: 12px 30px;
  }

  .gen-movie-contain-style-2 .gen-movie-meta-holder ul li {
    font-size: 14px;
    margin: 8px 0 0 10px;
    padding: 0 0 0 10px;
  }

  .gen-movie-contain-style-2 .gen-movie-meta-holder .gen-meta-info ul li {
    font-size: 16px;
  }

  .gen-movie-contain-style-2 .gen-movie-meta-holder p,
  .gen-movie-contain-style-2 .gen-movie-info p {
    font-size: 16px;
  }

  .gen-front-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 479px) {
  .gen-movie-contain-style-2 .gen-movie-action .gen-btn-container.button-2 {
    margin-top: 15px;
  }

  .gen-front-image a svg {
    height: 60px;
  }

  .gen-front-image a span {
    font-size: 18px;
  }

  .gen-banner-movies .gen-movie-contain .gen-movie-info h3,
  .gen-movie-contain-style-2 .gen-movie-info h3 {
    font-size: 30px;
    line-height: 38px;
  }
}

/*======================================================
Icon-Box
======================================================*/

.gen-icon-box-style-1 {
  padding: 45px 45px 45px 45px;
  background-color: #382a15;
  border-style: solid;
  border-width: 0px 0px 3px 0px;
  border-color: #ff9800;
  text-align: center;
}

.gen-icon-box-style-1 .gen-icon-box-icon {
  margin-bottom: 25px;
}

.gen-icon-box-style-1 .gen-icon-box-icon .gen-icon-animation {
  display: inline-block;
  background-color: #ff9800;
  color: #ffffff;
  text-align: center;
  border: 3px solid #ffffff;
  border-radius: 50%;
  height: 100px;
  width: 100px;
  line-height: 100px;
  font-size: 50px;
}

.gen-icon-box-style-1 .gen-icon-box-content .gen-icon-box-description {
  color: #ffffff;
  font-family: var(--body-fonts);
  font-weight: 400;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .gen-blog-spot-video iframe {
    height: auto;
  }
}
