.loadings{
    position: fixed;
    display: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    text-align: center;
    color: #fff;
    z-index: 99999;
}
.loader_content{
    display: inline-block;
    margin: auto;
}
.loader_content_msg{
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    text-shadow: 1px 1px #000;
    margin-top: 15px;
}
.wc_ead_modal{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

.wc_ead_modal_box{
    display: block;
    /*width: 680px;*/
    min-width: 50%;
	max-width: 70%;
    margin: auto;
    background: #fff;
    position: relative;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    box-shadow: 0 0 5px 0 #000;
}

.wc_ead_modal_box b{
    font-weight: bold;
    color: #000;
}

.wc_ead_modal_content > a{
    text-decoration: none !important;
}

.wc_ead_modal_content > a:hover{
    text-decoration: underline;
}

.wc_ead_modal_close{
    position: absolute;
	right: 15px;
    top: 8px;
    color: #fff;
    padding: 7px 7px;
    font-weight: 500;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 2px solid #fff;
    text-shadow: 1px 1px 1px darkred;
    cursor: pointer;
}
.btn-close {
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3E%3C/svg%3E") center / 1em auto no-repeat !important;
}

.btn-close.btn-close-white {
    filter: none !important;
}
.wc_ead_modal_title{
    padding: 15px;
    background: #eee;
    color: #333;
    line-height: 1;
    border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    -webkit-border-radius: 4px 4px 0 0;
}
.wc_ead_modal_title.black{
    background: #132440;
    color: #FFFFFF;
}
.wc_ead_modal_content{
    padding: 20px;
}
.wc_ead_modal_content p{
    font-size: 1em;
    font-weight: 500;
    color: #333;
    margin-top: 10px;
	margin-bottom: 10px;
}
.wc_ead_modal_content p:first-child{
    margin-top: 0;
}
.wc_ead_modal_help{
    padding: 15px;
    background: #fbfbfb;
    border-top: 1px solid #f5f5f5;
    text-align: center;
    font-size: 0.75em;
    color: #ccc;
    border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    -webkit-border-radius: 0 0 4px 4px;
}
.wc_ead_alert{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: none;
    z-index: 9999;
}
.wc_ead_alert_box{
    display: block;
    width: 600px;
    max-width: 90%;
    margin: auto;
    background: #555;
    color: #fff;
    padding: 20px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    box-shadow: 0 0 4px 0 #000;
}

.wc_ead_alert_box.green{background: #008068;}
.wc_ead_alert_box.red{background: #C54550;}

.wc_ead_alert_close,
.wc_ead_alert_text,
.wc_ead_alert_icon{
    display: inline-block;
    vertical-align: middle;
}
.wc_ead_alert_icon{
    width: 8%;
    font-size: 2em;
    line-height: 1;
    color: #000;
    opacity: 0.5;
    text-align: center;
}
.wc_ead_alert_text{
    width: 84%;
    padding: 0 20px;
}
.wc_ead_alert_title{
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
    line-height: 1;
}
.wc_ead_alert_content{
    font-size: 14px;
    font-weight: 300;
}
.wc_ead_alert_close {
    cursor: pointer;
}

.bg-flix-dark {
    position: relative;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.65) 20%, transparent 60%), var(--dynamic-bg-image);
    background-size: cover; /* Cobre toda a área do container */
    background-position: center; /* Centraliza os fundos */
    width: 100%; /* Ocupa toda a largura */
    height: auto; /* Ajusta a altura dinamicamente */
    z-index: 1; /* Define o nível de profundidade */
}

@media (max-width: 700px) {
    .bg-flix-dark {
        position: relative;
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.65) 20%, transparent 60%), var(--dynamic-bg-image);
        background-size: cover; /* Ajusta a imagem para cobrir o container */
        background-position: center; /* Centraliza a imagem */
        width: 100%; /* Cobre toda a largura da tela */
        height: auto; /* Altura automática baseada no conteúdo interno */
        z-index: 1;
    } 
}

.bg-flix {
    position: relative;
    background-image: var(--dynamic-bg-image);
    background-size: cover; /* Ajusta a imagem para cobrir o container */
    background-position: center; /* Centraliza a imagem */
    width: 100%; /* Cobre toda a largura da tela */
    height: auto; /* Altura automática baseada no conteúdo interno */
    z-index: 1;
} 

@media (max-width: 700px) {
	.bg-flix {
		position: relative;
		background-image: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 254, 0.5), rgba(255, 255, 255, 0.3)), 
		var(--dynamic-bg-image);
		background-size: cover; /* Ajusta a imagem para cobrir o container */
		background-position: center; /* Centraliza a imagem */
		width: 100%; /* Cobre toda a largura da tela */
		height: auto; /* Altura automática baseada no conteúdo interno */
		z-index: 1;
	}
}

.item img {
  width: 100%; 
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease; /* Transição para o efeito de contraste */
  border-radius: 8px;
  filter: contrast(100%); /* Contraste normal */
}



/* Garante que o contêiner do carrossel e cada item não causem overflow */
.owl-carousel,
.owl-stage-outer,
.owl-item,
.img-container {
    overflow: hidden;
}

/* Estilo do contêiner da imagem */
.img-container {
    position: relative;
    overflow: hidden;
    border-radius: 6px; /* Arredondamento do contêiner da imagem */
}

/* Estilo da imagem */
.img-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito de elevação e contraste no hover */
.img-container:hover img {
  transform: translateY(-15px); /* Move a imagem levemente para cima */
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adiciona uma sombra para destacar */
  filter: contrast(1.1) saturate(1.1) brightness(1.2); 
}

@media (min-width: 1025px) {
  .owl-carousel {
    display: none;
    z-index: 1;
    -webkit-mask: linear-gradient(0deg, rgba(0,0,0,0) 8%, rgba(0,0,0,1) 89%);
    mask: linear-gradient(-90deg, rgba(0,0,0,0), rgba(0,0,0,1) 10%);
  }
}

.owl-prev, .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 50%;
  padding: 10px;
  font-size: 18px;
  z-index: 1000;
  cursor: pointer;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.owl-prev:hover, .owl-next:hover {
  transform: translateY(-50%) scale(1.05);
  background: #739fff;
  color: black;
  box-shadow: 0 0 10px #739fff, 0 0 60px #739fff;
}

.owl-prev {
  left: -15px;
}
.owl-next {
  right: 0;
}

.owl-prev, .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 50%;
  padding: 10px;
  font-size: 18px;
  z-index: 1000;
  cursor: pointer;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  user-select: none;
  backdrop-filter: blur(20px);
}

.capas {
  position: relative;
}

.logo-lg {
    max-width: 160px; /* Limita a largura máxima a 150 pixels */
    height: auto; /* Mantém a proporção da altura automaticamente */
}
.curso-desabilitado {
  filter: grayscale(100%) contrast(1.2) !important; /* Preto e branco com contraste */
  opacity: 0.8 !important; /* Um leve efeito desabilitado */
  transition: all 0.3s ease !important;
}