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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

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

button, input, textarea, select {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

@media (max-width: 768px) {
    .animacoes-desativadas * {
        animation: none !important;
        transition: none !important;
    }
}

@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    src: local('Font Awesome 6 Free'),
         
         url('/ativos-pt/fontes-pt/fontawesome-solid.woff2') format('woff2');
    font-display: swap;
}

.material-icons {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: normal;
}

@font-face {
    font-family: 'Kanit';
    font-style: normal;
    font-weight: 400;
    src: url('/ativos-pt/fontes-pt/kanit-regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Kanit';
    font-style: normal;
    font-weight: 700;
    src: url('/ativos-pt/fontes-pt/kanit-bold.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    src: url('/ativos-pt/fontes-pt/manrope-regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    src: url('/ativos-pt/fontes-pt/manrope-semibold.woff2') format('woff2');
    font-display: swap;
}

body.tipografia-sistema * {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body.tipografia-personalizada * {
    font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    transition: font-family 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Kanit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.bloco-idade {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    width: min(400px, 90vw);
    background: hsl(145, 55%, 24%);
    color: white;
    border-radius: 12px;
    padding: 1.5rem;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid hsl(45, 100%, 50%);
    transform: translateX(0);
    animation: entrada-lateral 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: 'Manrope', system-ui, sans-serif;
}

.bloco-idade::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, hsl(45, 100%, 50%), transparent 30%);
    border-radius: 15px;
    z-index: -1;
}

.conteudo-idade {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.icone-idade {
    font-size: 2.5rem;
    color: hsl(45, 100%, 50%);
    align-self: center;
}

.titulo-idade {
    font-family: 'Kanit', system-ui, sans-serif;
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
}

.texto-idade {
    line-height: 1.5;
    font-size: 0.95rem;
    opacity: 0.9;
}

.botoes-idade {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.botao-confirmar, .botao-sair {
    padding: 0.9rem 1.2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.95rem;
}

.botao-confirmar {
    background: hsl(120, 70%, 45%);
    color: white;
}

.botao-confirmar:hover {
    background: hsl(120, 70%, 35%);
    transform: translateY(-2px);
}

.botao-sair {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.botao-sair:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.aviso-idade {
    font-size: 0.8rem;
    opacity: 0.7;
    text-align: center;
    margin-top: 0.5rem;
}

@keyframes entrada-lateral {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.icone-idade::before {
    content: "\f505";
    font-family: 'Font Awesome 6 Free';
}

.botao-confirmar .material-icons::before {
    content: "\f058";
    font-family: 'Font Awesome 6 Free';
}

.botao-sair .material-icons::before {
    content: "\f2f5";
    font-family: 'Font Awesome 6 Free';
}

@media (max-width: 768px) {
    .bloco-idade {
        top: 10px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: none;
        padding: 1.2rem;
    }
    
    .botoes-idade {
        flex-direction: column;
    }
}

.bloco-cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    display: none;
    background: linear-gradient(135deg, hsl(28, 50%, 20%) 0%, hsl(145, 55%, 24%) 100%);
    color: white;
    padding: 1rem 2rem;
    border-top: 4px solid hsl(45, 100%, 50%);
    transform: translateY(0);
    animation: subir-cookies 0.5s ease-out;
    font-family: 'Manrope', system-ui, sans-serif;
}

.bloco-cookies::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        hsl(45, 100%, 50%) 0%,
        hsl(120, 70%, 45%) 25%,
        hsl(145, 55%, 24%) 50%,
        hsl(28, 50%, 20%) 75%,
        hsl(45, 100%, 50%) 100%
    );
    animation: linha-cookies 3s linear infinite;
}

.conteudo-cookies {
    max-width: 1247px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cabecalho-cookies {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.icone-cookies {
    font-size: 1.8rem;
    color: hsl(45, 100%, 50%);
}

.titulo-cookies {
    font-family: 'Kanit', system-ui, sans-serif;
    font-size: 1.2rem;
    margin: 0;
    white-space: nowrap;
}

.texto-cookies {
    flex: 1;
    margin: 0;
    line-height: 1.4;
    font-size: 0.9rem;
    min-width: 250px;
}

.link-cookies {
    color: hsl(45, 100%, 70%);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.link-cookies:hover {
    color: white;
}

.acoes-cookies {
    flex-shrink: 0;
}

.botao-aceitar {
    background: hsl(120, 70%, 45%);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Manrope', system-ui, sans-serif;
    white-space: nowrap;
}

.botao-aceitar:hover {
    background: hsl(120, 70%, 35%);
    transform: scale(1.05);
}

@keyframes subir-cookies {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes linha-cookies {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.icone-cookies::before {
    content: "\f564";
    font-family: 'Font Awesome 6 Free';
}

.botao-aceitar .material-icons::before {
    content: "\f560";
    font-family: 'Font Awesome 6 Free';
}

.botao-cima .material-icons::before {
    content: "\f077";
    font-family: 'Font Awesome 6 Free';
}

.botao-baixo .material-icons::before {
    content: "\f078";
    font-family: 'Font Awesome 6 Free';
}

@media (max-width: 768px) {
    .bloco-cookies {
        padding: 1rem;
    }
    
    .conteudo-cookies {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cabecalho-cookies {
        justify-content: center;
    }
    
    .botao-aceitar {
        width: 100%;
        justify-content: center;
    }
}

.navegacao-rolagem {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 997;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Manrope', system-ui, sans-serif;
}

.navegacao-rolagem.visivel {
    opacity: 1;
    visibility: visible;
}

.botao-rolagem {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: hsl(145, 55%, 24%);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.botao-rolagem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(45, 100%, 50%), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.botao-rolagem:hover {
    transform: scale(1.1);
    background: hsl(145, 55%, 20%);
}

.botao-rolagem:hover::before {
    opacity: 0.3;
}

.botao-rolagem .material-icons {
    font-size: 28px;
    z-index: 1;
}

.indicador-progresso {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 70px;
    backdrop-filter: blur(10px);
}

.percentagem {
    font-family: 'Kanit', system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: hsl(145, 55%, 24%);
}

.barra-progresso {
    width: 100%;
    height: 4px;
    background: rgba(210, 210, 210, 0.5);
    border-radius: 2px;
    overflow: hidden;
}

.preenchimento-progresso {
    height: 100%;
    background: linear-gradient(90deg, hsl(145, 55%, 24%), hsl(45, 100%, 50%));
    width: 0%;
    transition: width 0.2s ease;
    border-radius: 2px;
}

.icone-aviso::before {
    content: "\f071";
    font-family: 'Font Awesome 6 Free';
}

.icone-logo::before {
    content: "\f091";
    font-family: 'Font Awesome 6 Free';
}

.link-rapido .material-icons::before {
    font-family: 'Font Awesome 6 Free';
}

.link-rapido:nth-child(1) .material-icons::before {
    content: "\f0e0";
}

.link-rapido:nth-child(2) .material-icons::before {
    content: "\f3ed";
}

.link-rapido:nth-child(3) .material-icons::before {
    content: "\f05a";
}

.link-navegacao .material-icons::before {
    font-family: 'Font Awesome 6 Free';
}

.link-navegacao:nth-child(1) .material-icons::before {
    content: "\f015";
}

.link-navegacao:nth-child(2) .material-icons::before {
    content: "\f24e";
}

.link-navegacao:nth-child(3) .material-icons::before {
    content: "\f201";
}

.link-navegacao:nth-child(4) .material-icons::before {
    content: "\f518";
}

.link-navegacao:nth-child(5) .material-icons::before {
    content: "\f02b";
}

@media (max-width: 768px) {
    .navegacao-rolagem {
        right: 10px;
        bottom: 80px;
        transform: scale(0.9);
    }
    
    .botao-rolagem {
        width: 45px;
        height: 45px;
    }
}

.cabecalho-principal {
    background: linear-gradient(to bottom, 
        hsl(145, 55%, 16%) 0%,
        hsl(145, 55%, 24%) 50%,
        hsl(145, 55%, 20%) 100%
    );
    color: white;
    position: relative;
    z-index: 100;
    font-family: 'Manrope', system-ui, sans-serif;
}

.cabecalho-principal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        hsl(45, 100%, 50%),
        hsl(120, 70%, 45%),
        hsl(145, 55%, 24%),
        hsl(45, 100%, 50%)
    );
    animation: linha-cabecalho 10s linear infinite;
}

.bloco-informativo {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.conteudo-informativo {
    max-width: 1247px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.icone-aviso {
    color: hsl(45, 100%, 50%);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.texto-aviso {
    margin: 0;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.4;
    flex: 1;
    min-width: 200px;
}

.bloco-logo-menu {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.conteudo-logo-menu {
    max-width: 1247px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.link-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.link-logo:hover {
    transform: scale(1.05);
}

.icone-logo {
    font-size: 2.2rem;
    color: hsl(45, 100%, 50%);
}

.texto-logo {
    font-family: 'Kanit', system-ui, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(to right, hsl(45, 100%, 50%), white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navegacao-rapida .lista-rapida {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.link-rapido {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.link-rapido:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.link-rapido .material-icons {
    font-size: 1.1rem;
}

.bloco-navegacao {
    padding: 0.8rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.navegacao-principal {
    max-width: 1247px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lista-navegacao {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.item-navegacao {
    flex: 1;
    min-width: 120px;
    max-width: 200px;
}

.link-navegacao {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.7rem 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
}

.link-navegacao:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.link-navegacao.ativo {
    background: linear-gradient(135deg, hsl(45, 100%, 50%), hsl(145, 55%, 24%));
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.link-navegacao .material-icons {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

@keyframes linha-cabecalho {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.icone-vantagem .material-icons::before {
    font-family: 'Font Awesome 6 Free';
}

.cartao-vantagem:nth-child(1) .material-icons::before {
    content: "\f058";
}

.cartao-vantagem:nth-child(2) .material-icons::before {
    content: "\f1da";
}

.cartao-vantagem:nth-child(3) .material-icons::before {
    content: "\f24e";
}

.cartao-vantagem:nth-child(4) .material-icons::before {
    content: "\f3ed";
}

.cartao-vantagem:nth-child(5) .material-icons::before {
    content: "\f005";
}

.seta-botao::before {
    content: "\f063";
    font-family: 'Font Awesome 6 Free';
}

@media (max-width: 768px) {
    .conteudo-informativo, 
    .conteudo-logo-menu,
    .navegacao-principal {
        padding: 0 1rem;
    }
    
    .conteudo-logo-menu {
        flex-direction: column;
        text-align: center;
    }
    
    .navegacao-rapida .lista-rapida {
        justify-content: center;
    }
    
    .lista-navegacao {
        gap: 0.3rem;
    }
    
    .item-navegacao {
        min-width: 100px;
    }
    
    .link-navegacao {
        padding: 0.5rem 0.3rem;
        font-size: 0.85rem;
    }
    
    .link-navegacao .material-icons {
        font-size: 1.3rem;
    }
    
    .texto-logo {
        font-size: 1.5rem;
    }
}

.nexus-abertura-viva {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Manrope', system-ui, sans-serif;
}

.fundo-boasvindas {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.imagem-fundo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/ativos-pt/midia-pt/fundo-abertura.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoom-sutil 25s ease-in-out infinite alternate;
}

@keyframes zoom-sutil {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.sobreposicao-fundo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(33, 120, 74, 0.9) 50%,
        rgba(0, 0, 0, 0.95) 100%
    );
    z-index: 0;
}

.conteudo-boasvindas {
    width: 100%;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

.container-boasvindas {
    max-width: 1247px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.titulo-principal {
    font-family: 'Kanit', system-ui, sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right, 
        hsl(45, 100%, 70%),
        hsl(45, 100%, 90%),
        hsl(45, 100%, 70%)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: brilho-texto 3s ease-in-out infinite alternate;
}

@keyframes brilho-texto {
    0% {
        filter: brightness(1);
        background-position: 0% 50%;
    }
    100% {
        filter: brightness(1.3);
        background-position: 100% 50%;
    }
}

.descricao-boasvindas {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    max-width: 800px;
    margin: 0;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.lista-vantagens {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 900px;
    margin: 1rem auto;
    padding: 1rem;
}

.cartao-vantagem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 1rem;
    min-width: 120px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.cartao-vantagem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cartao-vantagem:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: hsl(45, 100%, 50%);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 193, 7, 0.3);
}

.cartao-vantagem:hover::before {
    transform: translateX(100%);
}

.icone-vantagem {
    font-size: 2.5rem;
    color: hsl(45, 100%, 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.icone-vantagem .material-icons {
    font-size: 2rem;
}

.titulo-vantagem {
    font-family: 'Kanit', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.botao-explorar {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(
        135deg,
        hsl(45, 100%, 50%) 0%,
        hsl(45, 100%, 40%) 100%
    );
    color: hsl(145, 55%, 16%);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    font-family: 'Manrope', system-ui, sans-serif;
}

.botao-explorar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
}

.botao-explorar:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(255, 193, 7, 0.5);
}

.botao-explorar:hover::before {
    animation: brilho-botao 0.8s ease;
}

.texto-botao {
    position: relative;
    z-index: 1;
}

.seta-botao {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.botao-explorar:hover .seta-botao {
    transform: translateY(4px);
}

@keyframes brilho-botao {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 768px) {
    .nexus-abertura-viva {
        padding: 2rem 0;
    }
    
    .conteudo-boasvindas {
        padding: 2rem 1rem;
    }
    
    .lista-vantagens {
        gap: 1rem;
        justify-content: center;
    }
    
    .cartao-vantagem {
        min-width: 100px;
        padding: 1rem 0.8rem;
    }
    
    .icone-vantagem {
        width: 50px;
        height: 50px;
    }
    
    .icone-vantagem .material-icons {
        font-size: 1.7rem;
    }
    
    .titulo-vantagem {
        font-size: 1rem;
    }
    
    .botao-explorar {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .lista-vantagens {
        gap: 0.7rem;
    }
    
    .cartao-vantagem {
        min-width: 85px;
        padding: 0.8rem 0.5rem;
    }
    
    .titulo-principal {
        font-size: 1.8rem;
    }
    
    .descricao-boasvindas {
        font-size: 1rem;
    }
}

.arena-duelo-ofertas {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, 
        hsl(45, 24%, 95%) 0%,
        hsl(38, 18%, 98%) 100%
    );
    font-family: 'Manrope', system-ui, sans-serif;
}

.cabecalho-comparacao {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.titulo-comparacao {
    font-family: 'Kanit', system-ui, sans-serif;
    font-size: 2.5rem;
    color: hsl(145, 55%, 24%);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.titulo-comparacao::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, 
        hsl(45, 100%, 50%),
        hsl(145, 55%, 24%)
    );
    border-radius: 2px;
}

.subtitulo-comparacao {
    color: hsl(38, 20%, 40%);
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

.container-comparacao {
    max-width: 1247px;
    margin: 0 auto;
}

.cartao-vencedor {
    background: linear-gradient(135deg, 
        hsl(145, 55%, 24%) 0%,
        hsl(145, 55%, 16%) 100%
    );
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(33, 120, 74, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: pulsar-vencedor 4s ease-in-out infinite;
}

.cartao-vencedor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(
            circle at 20% 80%,
            rgba(255, 193, 7, 0.2) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(75, 160, 98, 0.1) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.marcador-vencedor {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, 
        hsl(45, 100%, 50%),
        hsl(45, 100%, 40%)
    );
    padding: 0.5rem 1rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    animation: brilho-marcador 2s ease-in-out infinite;
}

@keyframes pulsar-vencedor {
    0%, 100% {
        box-shadow: 
            0 20px 40px rgba(33, 120, 74, 0.3),
            0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 20px 50px rgba(33, 120, 74, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.2),
            0 0 30px rgba(255, 193, 7, 0.3);
    }
}

@keyframes brilho-marcador {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

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

.cabecalho-cartao {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.avaliacao-geral {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.numero-avaliacao {
    font-family: 'Kanit', system-ui, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(45, 100%, 50%);
}

.estrelas-avaliacao {
    display: flex;
    gap: 0.2rem;
}

.estrelas-avaliacao .material-icons {
    color: hsl(45, 100%, 50%);
    font-size: 1.5rem;
}

.texto-avaliacao {
    font-weight: 600;
    color: hsl(45, 100%, 70%);
    margin-left: auto;
}

.nome-site {
    font-family: 'Kanit', system-ui, sans-serif;
    font-size: 2.2rem;
    margin: 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.destaque-bonus {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(90deg, 
        rgba(255, 193, 7, 0.2),
        rgba(255, 193, 7, 0.1)
    );
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 2px solid hsl(45, 100%, 50%);
}

.destaque-bonus .material-icons {
    color: hsl(45, 100%, 50%);
    font-size: 1.8rem;
}

.valor-bonus {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(45, 100%, 70%);
}

.corpo-cartao {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lista-caracteristicas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.item-caracteristica {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.item-caracteristica:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.item-caracteristica .material-icons {
    color: hsl(120, 70%, 60%);
    font-size: 1.2rem;
}

.acoes-cartao {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.botao-visitar {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, 
        hsl(45, 100%, 50%),
        hsl(45, 100%, 40%)
    );
    color: hsl(145, 55%, 16%);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.botao-visitar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.botao-detalhes {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', system-ui, sans-serif;
    font-weight: 600;
}

.botao-detalhes:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.grade-cartoes {
    display: grid;
    grid-template-columns: repeat(3, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
}

.cartao-padrao {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(210, 210, 210, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.cartao-padrao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        hsl(145, 55%, 24%),
        hsl(45, 100%, 50%)
    );
}

.cartao-padrao:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(210, 210, 210, 0.4);
}

.cabecalho-padrao {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.posicao-lateral {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
}

.numero-posicao {
    font-family: 'Kanit', system-ui, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: hsl(145, 55%, 24%);
    background: rgba(33, 120, 74, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.conteudo-padrao {
    flex: 1;
}

.avaliacao-padrao {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.numero-avaliacao-p {
    font-family: 'Kanit', system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(145, 55%, 24%);
}

.estrelas-padrao {
    display: flex;
    gap: 0.1rem;
}

.estrelas-padrao .material-icons {
    color: hsl(45, 100%, 50%);
    font-size: 1.2rem;
}

.nome-site-p {
    font-family: 'Kanit', system-ui, sans-serif;
    font-size: 1.3rem;
    color: hsl(145, 55%, 24%);
    margin: 0 0 0.75rem 0;
}

.bonus-padrao {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: hsl(145, 55%, 24%, 0.05);
    padding: 0.7rem;
    border-radius: 8px;
    border: 1px solid rgba(33, 120, 74, 0.1);
}

.bonus-padrao .material-icons {
    color: hsl(145, 55%, 24%);
    font-size: 1.2rem;
}

.texto-bonus {
    font-weight: 600;
    color: hsl(145, 55%, 24%);
    font-size: 0.95rem;
}

.rodape-padrao {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(210, 210, 210, 0.5);
}

.link-visita-p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: hsl(145, 55%, 24%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.link-visita-p:hover {
    background: hsl(145, 55%, 20%);
    transform: translateY(-2px);
}

.link-visita-p .material-icons {
    font-size: 1.1rem;
}

.marcador-vencedor .material-icons::before {
    content: "\f091";
    font-family: 'Font Awesome 6 Free';
}

.estrelas-avaliacao .material-icons::before,
.estrelas-padrao .material-icons::before {
    font-family: 'Font Awesome 6 Free';
}

.estrelas-avaliacao .material-icons:nth-child(-n+4)::before,
.estrelas-padrao .material-icons:nth-child(-n+4)::before {
    content: "\f005";
}

.estrelas-avaliacao .material-icons:nth-child(5)::before {
    content: "\f5c0";
}

.estrelas-padrao[data-site="betano"] .material-icons:nth-child(5)::before,
.estrelas-padrao[data-site="nossa-aposta"] .material-icons:nth-child(5)::before {
    content: "\f005";
}

.estrelas-padrao[data-site="golden-park"] .material-icons:nth-child(4)::before {
    content: "\f5c0";
}

.estrelas-padrao[data-site="golden-park"] .material-icons:nth-child(5)::before {
    content: "\f005";
}

.destaque-bonus .material-icons::before {
    content: "\f02b";
    font-family: 'Font Awesome 6 Free';
}

.item-caracteristica .material-icons::before {
    content: "\f058";
    font-family: 'Font Awesome 6 Free';
}

.botao-visitar .material-icons::before {
    content: "\f061";
    font-family: 'Font Awesome 6 Free';
}

.botao-detalhes .material-icons::before {
    content: "\f05a";
    font-family: 'Font Awesome 6 Free';
}

.bonus-padrao .material-icons::before {
    content: "\f06b";
    font-family: 'Font Awesome 6 Free';
}

.link-visita-p .material-icons::before {
    content: "\f201";
    font-family: 'Font Awesome 6 Free';
}

@media (max-width: 1024px) {
    .conteudo-vencedor {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .grade-cartoes {
        grid-template-columns: repeat(2, minmax(min(300px, 100%), 1fr));
    }
}

@media (max-width: 768px) {
    .arena-duelo-ofertas {
        padding: 3rem 1rem;
    }
    
    .titulo-comparacao {
        font-size: 2rem;
    }
    
    .cartao-vencedor {
        padding: 1.5rem;
    }
    
    .marcador-vencedor {
        position: relative;
        top: auto;
        right: auto;
        align-self: flex-start;
        margin-bottom: 1rem;
    }
    
    .lista-caracteristicas {
        grid-template-columns: 1fr;
    }
    
    .acoes-cartao {
        flex-direction: column;
    }
    
    .grade-cartoes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nome-site {
        font-size: 1.8rem;
    }
    
    .valor-bonus {
        font-size: 1.2rem;
    }
}

.dossie-guia-essencial {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, 
        hsl(45, 25%, 98%) 0%,
        hsl(38, 18%, 96%) 100%
    );
    font-family: 'Manrope', system-ui, sans-serif;
}

.container-informacoes {
    max-width: 893px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.bloco-informacao {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(210, 210, 210, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.bloco-informacao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        hsl(45, 100%, 50%),
        hsl(145, 55%, 24%)
    );
}

.bloco-informacao:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(210, 210, 210, 0.4);
}

.cabecalho-informacao {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.container-icone {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, 
        hsl(145, 55%, 24%),
        hsl(145, 55%, 16%)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.container-icone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 70%
    );
}

.icone-informacao {
    font-size: 2rem;
    color: white;
    z-index: 1;
}

.bloco-informacao:nth-child(1) .icone-informacao::before {
    content: "\f201";
    font-family: 'Font Awesome 6 Free';
}

.bloco-informacao:nth-child(2) .icone-informacao::before {
    content: "\f505";
    font-family: 'Font Awesome 6 Free';
}

.bloco-informacao:nth-child(3) .icone-informacao::before {
    content: "\f1da";
    font-family: 'Font Awesome 6 Free';
}

.titulo-informacao {
    font-family: 'Kanit', system-ui, sans-serif;
    font-size: 1.8rem;
    color: hsl(145, 55%, 24%);
    margin: 0;
    line-height: 1.3;
}

.conteudo-informacao {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.paragrafo-informacao {
    color: hsl(38, 20%, 35%);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
    position: relative;
    padding-left: 1.5rem;
}

.paragrafo-informacao::before {
    content: '•';
    position: absolute;
    left: 0;
    color: hsl(45, 100%, 50%);
    font-size: 1.5rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .dossie-guia-essencial {
        padding: 3rem 1rem;
    }
    
    .bloco-informacao {
        padding: 1.8rem;
    }
    
    .cabecalho-informacao {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .titulo-informacao {
        font-size: 1.5rem;
    }
    
    .paragrafo-informacao {
        font-size: 1rem;
        padding-left: 1.2rem;
    }
}

.rodape-principal {
    background: linear-gradient(to bottom, 
        hsl(145, 55%, 16%) 0%,
        hsl(145, 45%, 12%) 100%
    );
    color: rgba(255, 255, 255, 0.85);
    padding: 3rem 2rem 1.5rem;
    font-family: 'Manrope', system-ui, sans-serif;
    border-top: 4px solid hsl(45, 100%, 50%);
}

.container-rodape {
    max-width: 1247px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bloco-identidade {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.link-identidade {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
    align-self: flex-start;
}

.link-identidade:hover {
    transform: scale(1.05);
}

.icone-identidade {
    font-size: 2.5rem;
    color: hsl(45, 100%, 50%);
}

.icone-identidade::before {
    content: "\f091";
    font-family: 'Font Awesome 6 Free';
}

.texto-identidade {
    font-family: 'Kanit', system-ui, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.aviso-rodape {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 900px;
}

.texto-aviso-rodape {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.texto-aviso-rodape strong {
    color: hsl(45, 100%, 70%);
}

.bloco-links {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navegacao-rodape {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.coluna-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
}

.titulo-coluna {
    font-family: 'Kanit', system-ui, sans-serif;
    font-size: 1.3rem;
    color: white;
    margin: 0;
    position: relative;
    padding-bottom: 0.5rem;
}

.titulo-coluna::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: hsl(45, 100%, 50%);
    border-radius: 2px;
}

.lista-links {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
}

.item-link {
    list-style: none;
}

.link-rodape {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 0.3rem 0;
    position: relative;
    display: inline-block;
}

.link-rodape::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: hsl(45, 100%, 50%);
    transition: width 0.3s ease;
}

.link-rodape:hover {
    color: white;
    transform: translateX(5px);
}

.link-rodape:hover::before {
    width: 100%;
}

.bloco-parceiros {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.titulo-parceiros {
    font-family: 'Kanit', system-ui, sans-serif;
    font-size: 1.3rem;
    color: white;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.lista-parceiros {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.link-parceiro {
    display: block;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.link-parceiro:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: hsl(45, 100%, 50%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.link-parceiro img {
    display: block;
    width: 120px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(0.3) brightness(1.2);
    transition: filter 0.3s ease;
}

.link-parceiro:hover img {
    filter: grayscale(0) brightness(1.5);
}

.bloco-copyright {
    text-align: center;
    padding-top: 0.5rem;
}

.texto-copyright {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.ano-atual {
    font-weight: 600;
    color: hsl(45, 100%, 50%);
}

.separador-copyright {
    opacity: 0.5;
}

.informacao-legal {
    font-style: italic;
}

@media (max-width: 768px) {
    .rodape-principal {
        padding: 2rem 1rem 1rem;
    }
    
    .container-rodape {
        gap: 2rem;
    }
    
    .navegacao-rodape {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lista-parceiros {
        gap: 1rem;
    }
    
    .link-parceiro {
        padding: 0.7rem;
    }
    
    .link-parceiro img {
        width: 100px;
        height: 50px;
    }
    
    .texto-copyright {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .separador-copyright {
        display: none;
    }
}
