/*
	DIOGENES JUNIOR
	CONTATO@DIOGENESJUNIOR.COM.BR
	
*/

/*---------------------------------
	FONTES
-----------------------------------*/

/* Versões nomeadas individualmente */
@font-face {
    font-family: GT-America-Condensed-Bold;
    src: url('fonts/GT-America-Condensed-Bold.woff2') format('woff2');
}

@font-face {
    font-family: GT-America-Condensed-Medium;
    src: url('fonts/GT-America-Condensed-Medium.woff2') format('woff2');
}

@font-face {
    font-family: GT-America-Condensed-Bold-Italic;
    src: url('fonts/GT-America-Condensed-Bold-Italic.woff2') format('woff2');
}

@font-face {
    font-family: GT-America-Standard-Regular;
    src: url('fonts/GT-America-Standard-Regular.woff2') format('woff2');
}

@font-face {
    font-family: GT-America-Standard-Bold;
    src: url('fonts/GT-America-Standard-Bold.woff2') format('woff2');
}

@font-face {
    font-family: GT-America-Standard-Medium;
    src: url('fonts/GT-America-Standard-Medium.woff2') format('woff2');
}

/* Declarações otimizadas para uso genérico */
@font-face {
    font-family: 'GT-America';
    src: url('fonts/GT-America-Condensed-Bold.woff2') format('woff2');
    font-display: swap;
    font-weight: bold;
    font-style: normal;
    font-stretch: condensed;
}

@font-face {
    font-family: 'GT-America';
    src: url('fonts/GT-America-Condensed-Medium.woff2') format('woff2');
    font-display: swap;
    font-weight: 500;
    font-style: normal;
    font-stretch: condensed;
}

@font-face {
    font-family: 'GT-America';
    src: url('fonts/GT-America-Condensed-Bold-Italic.woff2') format('woff2');
    font-display: swap;
    font-weight: bold;
    font-style: italic;
    font-stretch: condensed;
}

@font-face {
    font-family: 'GT-America';
    src: url('fonts/GT-America-Standard-Regular.woff2') format('woff2');
    font-display: swap;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
}

@font-face {
    font-family: 'GT-America';
    src: url('fonts/GT-America-Standard-Bold.woff2') format('woff2');
    font-display: swap;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
}

@font-face {
    font-family: 'GT-America';
    src: url('fonts/GT-America-Standard-Medium.woff2') format('woff2');
    font-display: swap;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
}

/*---------------------------------
	RESETS
-----------------------------------*/
/*
html,body{
    height: 100%;
}
body{
	overflow-x: hidden;
    background:#1c1d20;
    font-family: GT-America, system-ui, sans-serif;
}

@media(max-width: 540px){
  html,body{
    max-width: 100% !important;
    
  }
}
*/
#app, #nav{
  display: none;
}

/*---------------------------------
	IMPORTS E CONSULTAS E MOBILE
	
XS = < 544px
SM = > 544px
MD = > 768px
LG = > 992px
XL = > 1200px

CSS GRID
-----------------------------------*/

/*
.wow {
   visibility: hidden;
}
::selection { background: #757575; color: #fff; } ::-moz-selection { background: #757575; color: #fff; }


.text-center{
  text-align: center;
}

.text-right{
  text-align: right;
}

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


/*---------------------------------
  BASICOS
-----------------------------------*/
 /* Container principal */
        .primeiro-tres-destaques-container {
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            gap: 15px;
            overflow-x: auto;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
        }
        
        .primeiro-tres-destaques-container::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }
        
        /* Card individual */
        .primeiro-tres-destaques-card {
            flex: 0 0 calc(33.333% - 10px);
            min-width: 300px;
            background-color: #131313;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .primeiro-tres-destaques-card:hover {
            transform: translateY(-5px);
        }
        
        /* Imagem do card */
        .primeiro-tres-destaques-image {
            width: 100%;
            height: 132px;
            overflow: hidden;
            position: relative;
        }
        
        .primeiro-tres-destaques-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        /* Área de conteúdo */
        .primeiro-tres-destaques-content {
            padding: 15px 20px 25px;
        }
        
        /* Etiqueta do jogo */
        .primeiro-tres-destaques-tag {
            color: #fff;
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 0px;
            letter-spacing: 0.5px;
        }
        
        /* Título do jogo */
        .primeiro-tres-destaques-title {
            font-size: 24px;
            font-weight: 700;
            line-height: 1.2;
            text-transform: uppercase;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
            color:#fff;
            font-family: GT-America, system-ui, sans-serif;
        }
        
        /* Subtítulo/descrição */
        .primeiro-tres-destaques-subtitle {
            font-size: 14px;
            color: #cccccc;
            text-transform: uppercase;
            margin-bottom: 9px;
            line-height: 1.4;
            margin-top: -3px;
        }
        
        /* Texto legal/aviso */
        .primeiro-tres-destaques-legal {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.4;
        }
        
        /* Responsividade */
        @media (max-width: 767px) {
            .primeiro-tres-destaques-container {
                padding: 15px;
                gap: 10px;
                flex-wrap: nowrap;
            }
            
            .primeiro-tres-destaques-card {
                flex: 0 0 85%;
                min-width: 280px;
            }
            
            .primeiro-tres-destaques-title {
                font-size: 20px;
            }
        }



.bloco-keywords-1{

}

 .carrossel-lista-de-palavras-container {
            position: relative;
            background-color: transparent;
            padding: 0;
            border-top: 0px solid #333;
            border-bottom: 0px solid #333;
        }
        
        /* Itens do carrossel */
        .carrossel-lista-de-palavras-item {
            text-align: center;
            padding: 0px;
        }
        
        .carrossel-lista-de-palavras-link {
            color: #b19661;
            background: #303030;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            white-space: nowrap;
            transition: color 0.3s ease;
            text-decoration: none !important;
            position: relative;
            display: block;
            padding: 12px;
            padding-left: 32px;
            padding-right: 32px;
            border-radius: 19px;
        }
        
        .carrossel-lista-de-palavras-link:hover {
            color: #F5CD5D; /* Dourado mais claro no hover */
            text-decoration: none !important;
        }
        
        /* Botões de navegação personalizados */
        .carrossel-lista-de-palavras-nav {
            position: absolute;
            top: 0;
            height: 100%;
            width: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            cursor: pointer;
        }
        
        .carrossel-lista-de-palavras-prev {
            left: 0;
            background: #b19661;
            border-radius: 50% 0 0 50%;
        }
        
        .carrossel-lista-de-palavras-next {
            right: 0;
            background: #b19661;
            border-radius: 0 50% 50% 0;
        }
        
        .carrossel-lista-de-palavras-nav svg {
            width: 20px;
            height: 20px;
            fill: #1a1a1a;
        }
        
        /* Esconde a navegação padrão do Owl */
        .bloco-keywords-1 .owl-nav {
            display: none;
        }
        
        /* Ajuste para o Owl Carousel */
        .bloco-keywords-1 .owl-stage-outer {
            overflow: hidden;
        }
  
        .bloco-keywords-1 .owl-carousel {
            padding: 0px;
        }


.bloco-listagem-comum{

}

.listagem-comum-carrossel-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 30px 0;
            position: relative;
        }
        
        /* Wrapper do carrossel */
        .listagem-comum-carrossel-wrapper {
            position: relative;
            overflow: hidden;
        }
        
        /* Item do carrossel */
        .listagem-comum-carrossel-item {
            position: relative;
            margin: 0 8px;
        }
        
        /* Imagem do jogo */
        .listagem-comum-carrossel-image {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 130%; /* Proporção 16:9 */
            overflow: hidden;
            border-radius: 8px;
            margin-bottom: 10px;
        }
        
        .listagem-comum-carrossel-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .listagem-comum-carrossel-item:hover .listagem-comum-carrossel-image img {
            transform: scale(1.05);
        }
        
        /* Badge "Exclusivo" */
        .listagem-comum-carrossel-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: #e03131;
            color: white;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            padding: 4px 8px;
            border-radius: 3px;
            z-index: 2;
        }
        
        /* Informações do jogo */
        .listagem-comum-carrossel-info {
            padding: 0 5px;
        }
        
        .listagem-comum-carrossel-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color:#fff;
        }
        
        .listagem-comum-carrossel-provider {
            font-size: 14px;
            color: #aaa;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        /* Botões de navegação personalizados */
        .listagem-comum-carrossel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: rgba(0, 0, 0, 0.6);
            border: 2px solid #D4AF37;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .listagem-comum-carrossel-nav:hover {
            background-color: rgba(212, 175, 55, 0.3);
        }
        
        .listagem-comum-carrossel-prev {
            left: -20px;
        }
        
        .listagem-comum-carrossel-next {
            right: -20px;
        }
        
        .listagem-comum-carrossel-nav svg {
            width: 20px;
            height: 20px;
            fill: #D4AF37;
        }
        
        /* Esconde a navegação padrão do Owl */
        .bloco-listagem-comum .owl-nav {
            display: none;
        }
        
        /* Ajustes para responsividade */
        @media (max-width: 768px) {
            .listagem-comum-carrossel-container {
                padding: 20px 10px;
            }
            
            .listagem-comum-carrossel-prev {
                left: 10px;
            }
            
            .listagem-comum-carrossel-next {
                right: 10px;
            }
        }



         /* Container principal */
        .area-novo-jackpot-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #3c1e61;
            background-image: radial-gradient(circle, rgba(84, 42, 139, 0.8) 0%, rgba(60, 30, 97, 1) 100%);
            border-radius: 10px;
            position: relative;
            overflow: hidden;
        }
        
        /* Elementos decorativos de fundo */
        .area-novo-jackpot-container::before,
        .area-novo-jackpot-container::after {
            content: '';
            position: absolute;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            z-index: 0;
        }
        
        .area-novo-jackpot-container::before {
            width: 300px;
            height: 300px;
            top: -100px;
            left: -100px;
        }
        
        .area-novo-jackpot-container::after {
            width: 200px;
            height: 200px;
            bottom: -50px;
            right: -50px;
        }
        
        /* Grid para layout */
        .area-novo-jackpot-grid {
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: 20px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        /* Seção esquerda - Logo e título */
        .area-novo-jackpot-left {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .area-novo-jackpot-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 48px;
            font-weight: 900;
            color: #D4AF37; /* Dourado */
            line-height: 1;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .area-novo-jackpot-logo span {
            display: block;
            font-size: 22px;
            font-family: 'Brush Script MT', cursive;
            font-weight: normal;
            margin-top: -5px;
            margin-left: 50px;
        }
        
        .area-novo-jackpot-title {
            font-size: 28px;
            font-weight: 800;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.2;
            color:#fff;
        }
        
        /* Seção central - Jackpot values */
        .area-novo-jackpot-center {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .area-novo-jackpot-jackpot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            border-radius: 8px;
            background-color: rgba(36, 16, 58, 0.8);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3), inset 0 0 5px rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
        }
        
        .area-novo-jackpot-jackpot.mega {
            background-color: rgba(48, 22, 77, 0.9);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .area-novo-jackpot-type {
            font-size: 18px;
            font-weight: 700;
            text-transform: uppercase;
            color: #a087c4;
        }
        
        .area-novo-jackpot-type.mega {
            font-size: 22px;
            color: white;
        }
        
        .area-novo-jackpot-amount {
            font-size: 20px;
            font-weight: 700;
            color: white;
            text-align: right;
        }
        
        .area-novo-jackpot-amount.mega {
            font-size: 30px;
        }
        
        .area-novo-jackpot-amount .decimal {
          /*
            font-size: 0.7em;
            vertical-align: top;
            color: rgba(255, 255, 255, 0.8);
          */
        }
        
        /* Seção direita - Botão */
        .area-novo-jackpot-right {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .area-novo-jackpot-button {
            display: inline-block;
            padding: 15px 30px;
            background-color: #D4AF37; /* Dourado */
            color: #1a1a1a !important;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-align: center;
            text-decoration: none !important;
        }
        
        .area-novo-jackpot-button:hover {
            background-color: #f1c750;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

            color: #1a1a1a !important;
            text-decoration: none !important;
        }
        
        /* Rodapé com termos */
        .area-novo-jackpot-footer {
            margin-top: 20px;
            text-align: center;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .area-novo-jackpot-footer a {
            color: #D4AF37;
            text-decoration: none;
        }
        
        .area-novo-jackpot-footer a:hover {
            text-decoration: underline;
        }
        
        /* Responsividade */
        @media (max-width: 992px) {
            .area-novo-jackpot-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .area-novo-jackpot-left {
                grid-column: 1 / 3;
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .area-novo-jackpot-grid {
                grid-template-columns: 1fr;
            }
            
            .area-novo-jackpot-left {
                grid-column: 1;
            }
            
            .area-novo-jackpot-right {
                margin-top: 20px;
            }
            
            .area-novo-jackpot-amount.mega {
                font-size: 26px;
            }
        }



        .super-banner-imagem-jogo{

        }

        
        
        /* Gradiente de sobreposição para melhorar legibilidade */
        .destaque-full-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                rgba(0, 0, 0, 0.4) 0%, 
                rgba(0, 0, 0, 0.5) 50%, 
                rgba(0, 0, 0, 0.7) 100%);
        }
        
        /* Conteúdo do destaque */
        .destaque-full-image-content {
            position: relative;
            display: flex;
            height: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Área da esquerda (vazia, apenas para espaçamento) */
        .destaque-full-image-left {
            flex: 0 0 50%;
        }
        
        /* Área da direita com texto */
        .destaque-full-image-right {
            flex: 0 0 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 40px 0;
        }
        
        /* Tag superior */
        .destaque-full-image-tag {
            font-size: 14px;
            font-weight: 600;
            color: #D4AF37; /* Dourado */
            text-transform: uppercase;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }
        
        /* Título principal */
        .destaque-full-image-title {
            font-size: 38px;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 30px;
            text-transform: uppercase;
            color: #fff;
        }
        
        /* Botão de ação */
        .destaque-full-image-button {
            display: inline-block;
            padding: 14px 40px;
            background-color: #D4AF37; /* Dourado */
            color: #1a1a1a !important;
            text-decoration: none !important;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s ease;
            align-self: flex-start;
            border: none;
            cursor: pointer;
        }
        
        .destaque-full-image-button:hover {
            background-color: #f1c750;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

            color: #1a1a1a !important;
            text-decoration: none !important;
        }

        .destaque-full-image-container{
          background: url('../images/waves-of-poseidon-BoL-GOTW-Spotlight-background.jpg') #f2f2f2 no-repeat;
          background-size: cover;
          background-position: center center;
        }
        
        /* Responsividade */
        @media (max-width: 992px) {
            .destaque-full-image-container {
                height: 350px;
            }
            
            .destaque-full-image-left {
                flex: 0 0 40%;
            }
            
            .destaque-full-image-right {
                flex: 0 0 60%;
            }
            
            .destaque-full-image-title {
                font-size: 32px;
            }
        }
        
        @media (max-width: 768px) {
            .destaque-full-image-container {
                height: 300px;
            }
            
            .destaque-full-image-content {
                flex-direction: column;
                justify-content: center;
                text-align: center;
            }
            
            .destaque-full-image-left {
                display: none;
            }
            
            .destaque-full-image-right {
                flex: 1;
                padding: 30px 0;
                align-items: center;
            }
            
            .destaque-full-image-title {
                font-size: 28px;
                margin-bottom: 20px;
            }
            
            .destaque-full-image-overlay {
                background: rgba(0, 0, 0, 0.6);
            }
        }


  .bloco-novo-faq{

  }

 .novo-faq-perguntas-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        /* Título da seção */
        .novo-faq-perguntas-titulo {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color:#fff;
        }
        
        /* Lista de perguntas */
        .novo-faq-perguntas-lista {
            list-style: none;
            padding-left: 0;
        }
        
        /* Item individual de pergunta */
        .novo-faq-perguntas-item {
            margin-bottom: 12px;
            border-radius: 6px;
            overflow: hidden;
            background-color: #2a2a2a;
        }
        
        /* Cabeçalho da pergunta (botão) */
        .novo-faq-perguntas-botao {
            width: 100%;
            background-color: #2a2a2a;
            color: white;
            border: none;
            padding: 20px 25px;
            font-size: 16px;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .novo-faq-perguntas-botao:hover {
            background-color: #333333;
        }
        
        /* Ícone do botão */
        .novo-faq-perguntas-icone {
            width: 20px;
            height: 20px;
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .novo-faq-perguntas-icone::before,
        .novo-faq-perguntas-icone::after {
            content: '';
            position: absolute;
            background-color: white;
            transition: transform 0.3s ease;
        }
        
        .novo-faq-perguntas-icone::before {
            width: 2px;
            height: 20px;
            top: 0;
            left: 9px;
        }
        
        .novo-faq-perguntas-icone::after {
            width: 20px;
            height: 2px;
            top: 9px;
            left: 0;
        }
        
        .novo-faq-perguntas-botao[aria-expanded="true"] .novo-faq-perguntas-icone::before {
            transform: rotate(90deg);
        }
        
        /* Conteúdo da resposta */
        .novo-faq-perguntas-conteudo {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            border-top: 1px solid transparent;
        }
        
        .novo-faq-perguntas-conteudo-inner {
            padding: 0 25px;
            opacity: 0;
            transition: opacity 0.3s ease, padding 0.3s ease;
        }
        
        /* Estados do conteúdo */
        .novo-faq-perguntas-conteudo.ativo {
            max-height: 500px; /* Altura máxima para a animação */
            border-top: 1px solid #D4AF37; /* Linha dourada */
        }
        
        .novo-faq-perguntas-conteudo.ativo .novo-faq-perguntas-conteudo-inner {
            padding: 25px 25px;
            opacity: 1;
            color: #fff;
            font-size: 13px;
        }
        
        /* Responsividade */
        @media (max-width: 768px) {
            .novo-faq-perguntas-container {
                padding: 30px 15px;
            }
            
            .novo-faq-perguntas-titulo {
                font-size: 18px;
                margin-bottom: 20px;
            }
            
            .novo-faq-perguntas-botao {
                padding: 15px 20px;
                font-size: 15px;
            }
            
            .novo-faq-perguntas-conteudo-inner {
                padding: 0 20px;
            }
            
            .novo-faq-perguntas-conteudo.ativo .novo-faq-perguntas-conteudo-inner {
                padding: 20px;
            }
        }


@media (min-width: 1000px) {
    .container-bs {
        max-width: 100% !important;
        width: 1200px !important;
        margin-left: auto !important;
        overflow: hidden !important;
        margin-right: auto !important;
    }
	
	.carrossel-lista-de-palavras-prev{
		left: -5% !important;
		background: #b19661;
		border-radius: 50% !important;
	}
	.carrossel-lista-de-palavras-next{
		right: -5% !important;
		background: #b19661;
		border-radius: 50% !important;
	}
	.listagem-comum-carrossel-prev {
		left: -5% !important;
	}
	.listagem-comum-carrossel-next {
		right: -5% !important;
	}
	
	
	
}