* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a0a;
    overflow-x: hidden;
}

.navegacao-principal {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contentor-navegacao {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logotipo-marca .texto-marca {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-navegacao {
    display: flex;
    gap: 2rem;
}

.ligacao-menu {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.ligacao-menu:hover {
    color: #ff6b35;
}

.ligacao-menu::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.ligacao-menu:hover::after {
    width: 100%;
}

.menu-hamburguer {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-hamburguer span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.secao-heroi {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sobreposicao-heroi {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.contentor-heroi {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.conteudo-heroi {
    color: #fff;
}

.titulo-heroi {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.destaque-titulo {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.descricao-heroi {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.botoes-heroi {
    display: flex;
    gap: 1.5rem;
}

.botao-primario {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.botao-primario:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.botao-secundario {
    background: transparent;
    color: #fff;
    border: 2px solid #ff6b35;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.botao-secundario:hover {
    background: #ff6b35;
    transform: translateY(-3px);
}

.visual-heroi {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.cartao-visual {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cartao-visual:hover {
    transform: translateX(10px);
    background: rgba(255, 107, 53, 0.2);
}

.icone-cartao {
    font-size: 2rem;
}

.texto-cartao {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.cartao1 {
    animation: flutuar 6s ease-in-out infinite;
}

.cartao2 {
    animation: flutuar 6s ease-in-out infinite 2s;
}

.cartao3 {
    animation: flutuar 6s ease-in-out infinite 4s;
}

@keyframes flutuar {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.secao-caracteristicas {
    padding: 6rem 0;
    background: #111;
}

.contentor-fluido {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.titulo-secao {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3rem;
}

.grelha-caracteristicas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.item-caracteristica {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.item-caracteristica:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.icone-caracteristica {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.titulo-caracteristica {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.descricao-caracteristica {
    color: #ccc;
    line-height: 1.6;
}

.sites-apostas {
    padding: 6rem 0;
    background: #0a0a0a;
}

.grelha-sites {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.cartao-site {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cartao-site:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cartao-site.destaque {
    border: 2px solid #ff6b35;
    position: relative;
}

.distintivo-site {
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.cabecalho-site {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logotipo-site {
    border-radius: 10px;
}

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

.valor-avaliacao {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.estrelas-avaliacao {
    color: #ff6b35;
    font-size: 0.9rem;
}

.conteudo-site {
    padding: 2rem;
}

.nome-site {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.descricao-site {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.caracteristicas-site {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.caracteristica {
    color: #aaa;
    font-size: 0.9rem;
}

.bonus-site {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.etiqueta-bonus {
    display: block;
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.valor-bonus {
    color: #ff6b35;
    font-size: 1.2rem;
    font-weight: 700;
}

.botao-site {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.botao-site:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.secao-dicas {
    padding: 6rem 0;
    background: #111;
}

.conteudo-dicas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.texto-dicas {
    color: #fff;
}

.descricao-dicas {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.lista-dicas {
    margin-bottom: 2rem;
}

.item-dica {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.icone-dica {
    font-size: 1.5rem;
}

.texto-item-dica {
    color: #ccc;
}

.visual-dicas {
    display: flex;
    justify-content: center;
}

.cartao-dica {
    background: #1a1a1a;
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 300px;
}

.cabecalho-cartao-dica {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.data-jogo {
    color: #ccc;
    font-size: 0.9rem;
}

.confianca {
    background: #ff6b35;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.informacao-jogo {
    margin-bottom: 1rem;
}

.equipas {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.predicao {
    color: #ff6b35;
    font-size: 0.9rem;
}

.odds {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
}

.jogo-responsavel {
    padding: 4rem 0;
    background: #0a0a0a;
}

.conteudo-jr {
    text-align: center;
    color: #fff;
}

.descricao-jr {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ligacoes-jr {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.ligacao-jr {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ligacao-jr:hover {
    color: #f7931e;
}

.aviso-idade {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.texto-idade {
    background: #ff6b35;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
}

.texto-aviso {
    color: #ccc;
}

.secao-rodape {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 2rem;
}

.conteudo-rodape {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.informacao-rodape {
    color: #fff;
}

.logotipo-rodape .texto-marca {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: block;
}

.descricao-rodape {
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 400;
}

.ligacoes-rodape {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1.5rem;
}

.ligacoes-rodape img {
    height: 50px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.ligacoes-rodape img:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(1.3);
}

.flex-img2 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1.5rem;
}

.footimg5 {
    height: 50px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.footimg5:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(1.3);
}

.ligacao-rodape {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    border-radius: 25px;
}

.ligacao-rodape:hover {
    color: #fff;
    background: #ff6b35;
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.aviso-rodape {
    display: flex;
    justify-content: center;
    align-items: center;
}

.caixa-aviso {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
    border: 2px solid #ff6b35;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.texto-aviso-rodape {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.descricao-aviso {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

.fundo-rodape {
    text-align: center;
    padding: 2rem 0;
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
}

.paragrafo-aviso {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

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

.flex-imagens {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.imagem-rodape {
    height: 60px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.imagem-rodape:hover {
    opacity: 1;
    transform: scale(1.05);
}

.paragrafo-links {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 3rem;
    font-weight: 500;
}

.paragrafo-links a {
    color: #ff6b35;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    font-weight: 600;
}

.paragrafo-links a:hover {
    color: #f7931e;
}

.disclamer-importante {
    background: linear-gradient(135deg, #ff1744, #d50000);
    border: 3px solid #ff5722;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 900px;
    box-shadow: 0 10px 30px rgba(255, 23, 68, 0.4);
    animation: pulse-disclamer 3s ease-in-out infinite;
}

@keyframes pulse-disclamer {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 23, 68, 0.4);
        border-color: #ff5722;
    }
    50% {
        box-shadow: 0 15px 40px rgba(255, 23, 68, 0.6);
        border-color: #ff1744;
    }
}

.disclamer-conteudo {
    padding: 2.5rem;
    text-align: center;
}

.disclamer-titulo {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: blink-title 2s ease-in-out infinite;
}

@keyframes blink-title {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.disclamer-texto {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.disclamer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.disclamer-links a {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.disclamer-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.direitos-autorais {
    text-align: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .menu-hamburguer {
        display: flex;
    }
    
    .menu-navegacao {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .menu-navegacao.ativo {
        display: flex;
    }
    
    .contentor-heroi {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .titulo-heroi {
        font-size: 2.5rem;
    }
    
    .botoes-heroi {
        flex-direction: column;
        align-items: center;
    }
    
    .grelha-caracteristicas {
        grid-template-columns: 1fr;
    }
    
    .grelha-sites {
        grid-template-columns: 1fr;
    }
    
    .conteudo-dicas {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .conteudo-rodape {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .ligacoes-rodape {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .ligacoes-rodape img {
        height: 40px;
    }
    
    .flex-img2 {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .footimg5 {
        height: 40px;
    }
    
    .paragrafo-links a {
        display: block;
        margin: 0.5rem 0;
    }
    
    .disclamer-conteudo {
        padding: 1.5rem;
    }
    
    .disclamer-titulo {
        font-size: 1.4rem;
    }
    
    .disclamer-texto {
        font-size: 1rem;
    }
    
    .disclamer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .disclamer-links a {
        padding: 1rem;
    }
}