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

html {
    scroll-behavior: smooth;
}

body.fonts-system * {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body.fonts-loaded * {
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    transition: font-family 0.3s ease;
}

@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Source Sans 3'), url('/acervo/fontes/source-sans-3-core.woff2') format('woff2');
}

@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Source Sans 3'), url('/acervo/fontes/source-sans-3-core.woff2') format('woff2');
}

@font-face {
    font-family: 'Merriweather';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Merriweather'), url('/acervo/fontes/merriweather-bold.woff2') format('woff2');
}

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

[class^="la-"]::before,
[class*=" la-"]::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-style: normal;
    display: inline-block;
    text-decoration: inherit;
}

.la-bars::before {
    content: "\f0c9";
}

.la-times::before {
    content: "\f00d";
}

.la-envelope::before {
    content: "\f0e0";
}

.la-check-circle::before {
    content: "\f058";
}

.la-exclamation-circle::before {
    content: "\f06a";
}

.la-arrow-right::before {
    content: "\f061";
}

.la-star::before {
    content: "\f005";
}

.la-shield-alt::before {
    content: "\f3ed";
}

.la-thumbs-up::before {
    content: "\f164";
}

.la-phone::before {
    content: "\f095";
}

.la-user::before {
    content: "\f007";
}

.la-lock::before {
    content: "\f023";
}

.la-check::before {
    content: "\f00c";
}

.la-cookie-bite::before {
    content: "\f564";
}

.la-database::before {
    content: "\f1c0";
}

.la-euro-sign::before {
    content: "\f153";
}

.la-exclamation-triangle::before {
    content: "\f071";
}

.la-file-contract::before {
    content: "\f56c";
}

.la-user-check::before {
    content: "\f4fc";
}

.la-user-cog::before {
    content: "\f4fe";
}

.la-users::before {
    content: "\f0c0";
}

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

.verificacao-idade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    z-index: 9998;
    pointer-events: none;
}

.verificacao-conteudo {
    background: hsl(0, 0%, 100%);
    border-radius: 16px;
    box-shadow: 0 20px 60px hsla(18, 80%, 20%, 0.3);
    max-width: 520px;
    width: 100%;
    padding: 2.5rem;
    pointer-events: auto;
    margin-top: 10vh;
    border: 2px solid hsl(18, 80%, 60%);
    animation: aparecer-desde-cima 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes aparecer-desde-cima {
    0% {
        opacity: 0;
        transform: translateY(-40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.verificacao-cabecalho {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.verificacao-icone {
    font-size: 2.5rem;
    color: hsl(18, 80%, 50%);
}

.verificacao-titulo {
    font-family: 'Merriweather', system-ui, -apple-system, sans-serif;
    font-size: 1.8rem;
    color: hsl(18, 20%, 20%);
    margin: 0;
}

.verificacao-mensagem p {
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: hsl(18, 15%, 40%);
    margin-bottom: 1rem;
}

.verificacao-acoes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.acao-confirmar,
.acao-sair {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.25s ease;
}

.acao-confirmar {
    background: linear-gradient(135deg, hsl(34, 70%, 50%), hsl(34, 80%, 45%));
    color: hsl(0, 0%, 100%);
}

.acao-confirmar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px hsla(34, 70%, 50%, 0.4);
}

.acao-sair {
    background: hsl(0, 0%, 95%);
    color: hsl(0, 60%, 50%);
    border: 1px solid hsl(0, 60%, 80%);
}

.acao-sair:hover {
    background: hsl(0, 60%, 50%);
    color: hsl(0, 0%, 100%);
}

.aviso-cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9997;
    padding: 1.5rem;
    display: none;
    justify-content: center;
    pointer-events: none;
}

.cookies-conteudo {
    background: hsl(18, 20%, 15%);
    border-radius: 12px 12px 0 0;
    max-width: 1142px;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    pointer-events: auto;
    animation: subir-suavemente 0.6s ease-out;
    border-top: 4px solid hsl(18, 80%, 60%);
}

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

.cookies-texto {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    flex: 1;
}

.cookies-icone {
    font-size: 2rem;
    color: hsl(18, 80%, 65%);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.cookies-titulo {
    font-family: 'Merriweather', system-ui, -apple-system, sans-serif;
    font-size: 1.3rem;
    color: hsl(0, 0%, 100%);
    margin-bottom: 0.4rem;
}

.cookies-conteudo p {
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    color: hsl(18, 10%, 80%);
    line-height: 1.5;
    margin: 0;
}

.cookies-link {
    color: hsl(18, 80%, 70%);
    text-decoration: underline;
}

.cookies-link:hover {
    color: hsl(18, 80%, 85%);
}

.cookies-aceitar {
    background: hsl(18, 80%, 55%);
    color: hsl(0, 0%, 100%);
    border: none;
    border-radius: 8px;
    padding: 0.9rem 1.8rem;
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cookies-aceitar:hover {
    background: hsl(18, 80%, 45%);
    transform: scale(1.05);
}

.site-topo {
    background: linear-gradient(to bottom, hsl(18, 69%, 14%), hsl(18, 40%, 22%));
    border-bottom: 1px solid hsl(18, 20%, 90%);
}

.topo-linha {
    padding: 0.8rem 1.5rem;
}

.topo-identidade {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1142px;
    margin: 0 auto;
    width: 100%;
}

.identidade-logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: hsl(18, 20%, 20%);
    transition: transform 0.2s ease;
}

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

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

.logo-texto {
    font-family: 'Merriweather', system-ui, -apple-system, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.identidade-navegacao {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.navegacao-lista {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.navegacao-item {
    flex-shrink: 0;
}

.navegacao-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: hsl(18, 20%, 35%);
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.navegacao-link:hover {
    color: hsl(18, 80%, 50%);
    border-bottom-color: hsl(18, 80%, 70%);
}

.topo-alerta {
    background: linear-gradient(to right, hsla(30, 90%, 60%, 0.1), hsla(30, 90%, 60%, 0.05));
    border-top: 1px solid hsl(30, 80%, 85%);
    border-bottom: 1px solid hsl(30, 80%, 85%);
}

.alerta-conteudo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 927px;
    margin: 0 auto;
    text-align: center;
}

.alerta-icone {
    font-size: 1.5rem;
    color: hsl(30, 90%, 55%);
    flex-shrink: 0;
}

.alerta-texto {
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
    color: hsl(30, 82%, 74%);
    margin: 0;
    line-height: 1.5;
}

.topo-espaco {
    height: 0.5rem;
    background: linear-gradient(to bottom, hsl(18, 30%, 96%), hsl(18, 40%, 98%));
}

@media (max-width: 768px) {
    .verificacao-idade {
        padding: 1rem;
        align-items: center;
        justify-content: center;
    }
    
    .verificacao-conteudo {
        margin-top: 0;
        padding: 2rem;
        max-width: 90%;
        border-radius: 12px;
    }
    
    .verificacao-acoes {
        flex-direction: column;
    }
    
    .acao-confirmar,
    .acao-sair {
        width: 100%;
    }
    
    .aviso-cookies {
        padding: 1rem;
    }
    
    .cookies-conteudo {
        flex-direction: column;
        align-items: stretch;
        gap: 1.2rem;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .cookies-texto {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cookies-icone {
        margin-top: 0;
    }
    
    .topo-linha {
        padding: 0.8rem 1rem;
    }
    
    .topo-identidade {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .identidade-navegacao {
        justify-content: center;
    }
    
    .navegacao-lista {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .logo-texto {
        font-size: 1.6rem;
    }
    
    .alerta-conteudo {
        flex-direction: column;
        gap: 0.7rem;
        text-align: center;
    }
}

.faixa-inicial-vitrine {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.apresentacao-fundo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fundo-animado {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        hsl(18, 80%, 40%) 0%, 
        hsl(28, 70%, 50%) 25%, 
        hsl(12, 80%, 60%) 50%, 
        hsl(30, 90%, 60%) 75%, 
        hsl(18, 80%, 40%) 100%);
    background-size: 400% 400%;
    animation: gradiente-move 15s ease infinite;
}

@keyframes gradiente-move {
    0% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    25% {
        background-position: 50% 100%;
    }
    50% {
        background-position: 100% 50%;
        filter: hue-rotate(180deg);
    }
    75% {
        background-position: 50% 0%;
    }
    100% {
        background-position: 0% 50%;
        filter: hue-rotate(360deg);
    }
}

.fundo-animado::before,
.fundo-animado::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float-pattern 40s linear infinite;
}

.fundo-animado::after {
    background: radial-gradient(circle, transparent 30%, rgba(0,0,0,0.3) 100%);
    background-size: 100px 100px;
    animation: float-pattern-reverse 60s linear infinite;
    mix-blend-mode: overlay;
}

@keyframes float-pattern {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(-50px, -50px) rotate(360deg);
    }
}

@keyframes float-pattern-reverse {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(100px, 100px) rotate(-360deg);
    }
}

.fundo-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2;
}

.apresentacao-conteudo {
    position: relative;
    z-index: 3;
    max-width: 1142px;
    width: 100%;
    text-align: center;
    color: hsl(0, 0%, 100%);
}

.conteudo-cabecalho {
    margin-bottom: 3rem;
}

.cabecalho-titulo {
    font-family: 'Merriweather', system-ui, -apple-system, sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cabecalho-geo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    font-size: 1.1rem;
    color: hsl(18, 80%, 75%);
    margin-bottom: 1.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.cabecalho-geo .la {
    font-size: 1.2rem;
}

.cabecalho-descricao {
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: hsl(0, 0%, 90%);
}

.conteudo-indicadores {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.indicador-cartao {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.8rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.indicador-cartao:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
}

.cartao-icone {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cartao-icone .la {
    font-size: 2rem;
    color: hsl(18, 80%, 75%);
}

.cartao-conteudo {
    text-align: left;
}

.cartao-numero {
    font-family: 'Merriweather', system-ui, -apple-system, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(0, 0%, 100%);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.cartao-texto {
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
    color: hsl(0, 0%, 85%);
    line-height: 1.3;
}

.conteudo-acao {
    margin-top: 2rem;
}

.acao-botao {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, hsl(18, 80%, 55%), hsl(18, 80%, 45%));
    color: hsl(0, 0%, 100%);
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(226, 107, 33, 0.4);
}

.acao-botao:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(226, 123, 33, 0.6);
    background: linear-gradient(135deg, hsl(18, 80%, 60%), hsl(18, 80%, 50%));
}

.acao-botao .la {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.acao-botao:hover .la {
    transform: translateX(5px);
}

.la-map-marker::before {
    content: "\f041";
}

.la-balance-scale::before {
    content: "\f24e";
}

.la-check-double::before {
    content: "\f560";
}

.la-chart-line::before {
    content: "\f201";
}

.la-calendar-alt::before {
    content: "\f073";
}

.la-arrow-right::before {
    content: "\f061";
}

@media (max-width: 768px) {
    .faixa-inicial-vitrine {
        padding: 3rem 1rem;
    }
    
    .cabecalho-titulo {
        font-size: 2.2rem;
    }
    
    .cabecalho-descricao {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .conteudo-indicadores {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .indicador-cartao {
        width: 100%;
        max-width: 300px;
        min-width: unset;
    }
    
    .acao-botao {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .no-mobile-anim .fundo-animado,
    .no-mobile-anim .fundo-animado::before,
    .no-mobile-anim .fundo-animado::after {
        animation: none !important;
    }
}

@media (max-width: 480px) {
    .cabecalho-titulo {
        font-size: 1.9rem;
    }
    
    .cabecalho-geo {
        font-size: 1rem;
        padding: 0.4rem 1rem;
    }
    
    .indicador-cartao {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .cartao-conteudo {
        text-align: center;
    }
    
    .cartao-icone {
        width: 50px;
        height: 50px;
    }
    
    .cartao-icone .la {
        font-size: 1.6rem;
    }
}

.la-trophy::before {
    content: "\f2eb";
}

.la-external-link-alt::before {
    content: "\f35d";
}

.la-gift::before {
    content: "\f06b";
}

.la-mobile-alt::before {
    content: "\f3cd";
}

.la-hand-holding-usd::before {
    content: "\f4c0";
}

.la-headset::before {
    content: "\f590";
}

.la-chart-bar::before {
    content: "\f080";
}

.la-clock::before {
    content: "\f017";
}

.la-award::before {
    content: "\f559";
}

.la-futbol::before {
    content: "\f1e3";
}

.la-broadcast-tower::before {
    content: "\f519";
}

.la-bolt::before {
    content: "\f0e7";
}

.la-coins::before {
    content: "\f51e";
}

.modulo-ranking-analise {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, hsl(18, 30%, 98%), hsl(18, 20%, 96%));
}

.comparacao-container {
    max-width: 1142px;
    margin: 0 auto;
    width: 100%;
}

.comparacao-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.intro-titulo {
    font-family: 'Merriweather', system-ui, -apple-system, sans-serif;
    font-size: 2.8rem;
    color: hsl(18, 20%, 20%);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-descricao {
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: hsl(18, 15%, 40%);
}

.comparacao-cartoes {
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.cartao-plataforma {
    flex: 1;
    min-width: 300px;
    background: hsl(0, 0%, 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid hsl(18, 20%, 92%);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cartao-plataforma:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.plataforma-cabecalho {
    padding: 2.2rem 2.2rem 1.5rem;
    background: linear-gradient(135deg, hsl(18, 40%, 20%), hsl(18, 40%, 15%));
    color: hsl(0, 0%, 100%);
}

.cabecalho-avaliacao {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.avaliacao-nota {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.avaliacao-nota .la {
    font-size: 1.8rem;
    color: hsl(45, 100%, 60%);
}

.nota-texto {
    font-family: 'Merriweather', system-ui, -apple-system, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
}

.avaliacao-posicao {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
}

.avaliacao-posicao .la {
    font-size: 1.1rem;
    color: hsl(45, 100%, 60%);
}

.cabecalho-nome {
    font-family: 'Merriweather', system-ui, -apple-system, sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: hsl(0, 0%, 100%);
}

.cabecalho-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    font-weight: 600;
    color: hsl(18, 80%, 75%);
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: background 0.3s ease, color 0.3s ease;
}

.cabecalho-link:hover {
    background: hsl(18, 80%, 55%);
    color: hsl(0, 0%, 100%);
}

.plataforma-bonus {
    padding: 2rem 2.2rem;
    background: linear-gradient(to right, hsla(34, 70%, 50%, 0.08), hsla(34, 70%, 40%, 0.05));
    border-left: 4px solid hsl(34, 70%, 50%);
    margin: 0 2.2rem;
    border-radius: 0 8px 8px 0;
    position: relative;
    top: -1rem;
}

.bonus-rotulo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    color: hsl(34, 70%, 35%);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.bonus-rotulo .la {
    font-size: 1.3rem;
}

.bonus-descricao {
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    color: hsl(18, 20%, 30%);
    font-size: 1.05rem;
}

.bonus-descricao strong {
    color: hsl(34, 70%, 35%);
}

.plataforma-vantagens {
    padding: 0 2.2rem 2rem;
}

.vantagens-titulo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    font-size: 1.2rem;
    color: hsl(18, 20%, 25%);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid hsl(18, 20%, 92%);
}

.vantagens-titulo .la {
    color: hsl(34, 70%, 45%);
    font-size: 1.3rem;
}

.vantagens-lista {
    list-style: none;
}

.vantagem-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 1.1rem;
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    color: hsl(18, 15%, 40%);
    line-height: 1.4;
}

.vantagem-item .la {
    flex-shrink: 0;
    color: hsl(18, 80%, 55%);
    font-size: 1.1rem;
    margin-top: 0.1rem;
}

.plataforma-rodape {
    padding: 1.5rem 2.2rem;
    background: hsl(18, 30%, 98%);
    border-top: 1px solid hsl(18, 20%, 92%);
}

.rodape-info {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
    color: hsl(18, 15%, 45%);
}

.rodape-info .la {
    color: hsl(18, 80%, 55%);
}

@media (max-width: 768px) {
    .modulo-ranking-analise {
        padding: 3rem 1rem;
    }
    
    .intro-titulo {
        font-size: 2.2rem;
    }
    
    .intro-descricao {
        font-size: 1.1rem;
    }
    
    .comparacao-cartoes {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cartao-plataforma {
        min-width: unset;
        max-width: 100%;
    }
    
    .plataforma-cabecalho,
    .plataforma-bonus,
    .plataforma-vantagens {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .plataforma-bonus {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
}

.la-filter::before {
    content: "\f0b0";
}

.la-search-plus::before {
    content: "\f00e";
}

.la-sync-alt::before {
    content: "\f2f1";
}

.la-heart::before {
    content: "\f004";
}

.la-handshake::before {
    content: "\f2b5";
}

.la-globe-europe::before {
    content: "\f7a2";
}

.la-life-ring::before {
    content: "\f1cd";
}

.la-landmark::before {
    content: "\f66f";
}

.modulo-confianca-clareza {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, hsl(18, 20%, 96%), hsl(18, 15%, 94%));
}

.confianca-container {
    max-width: 1142px;
    margin: 0 auto;
    width: 100%;
}

.confianca-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.intro-titulo {
    font-family: 'Merriweather', system-ui, -apple-system, sans-serif;
    font-size: 2.8rem;
    color: hsl(18, 20%, 20%);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-descricao {
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: hsl(18, 15%, 40%);
}

.confianca-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.confianca-cartao {
    background: hsl(0, 0%, 100%);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid hsl(18, 20%, 92%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.confianca-cartao:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cartao-icone {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(18, 80%, 60%), hsl(18, 80%, 45%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
}

.cartao-icone .la {
    font-size: 2.5rem;
    color: hsl(0, 0%, 100%);
}

.cartao-titulo {
    font-family: 'Merriweather', system-ui, -apple-system, sans-serif;
    font-size: 1.6rem;
    color: hsl(18, 20%, 25%);
    margin-bottom: 1.2rem;
}

.cartao-textost {
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: hsl(18, 15%, 40%);
    font-size: 1.05rem;
}

.responsabilidade-banner {
    background: linear-gradient(135deg, hsl(18, 40%, 15%), hsl(18, 40%, 10%));
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.banner-conteudo {
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    min-height: 500px;
}

.conteudo-texto {
    color: hsl(0, 0%, 100%);
}

.banner-titulo {
    font-family: 'Merriweather', system-ui, -apple-system, sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: hsl(0, 0%, 100%);
}

.banner-titulo .la {
    color: hsl(0, 80%, 65%);
    font-size: 2rem;
}

.banner-descricao {
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: hsl(0, 0%, 85%);
}

.conteudo-parceiros {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 400px;
}

.parceiros-titulo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: hsl(18, 80%, 75%);
    margin-bottom: 1.8rem;
}

.parceiros-titulo .la {
    font-size: 1.5rem;
}

.parceiros-linkins {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 1.2rem;
}

.parceiro-linkin {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    padding: 1.2rem;
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.parceiro-linkin:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: hsl(18, 80%, 60%);
    transform: translateX(5px);
}

.link-icone {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, hsl(18, 80%, 60%), hsl(18, 80%, 45%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.link-icone .la {
    font-size: 1.5rem;
    color: hsl(0, 0%, 100%);
}

.link-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.info-nome {
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    color: hsl(0, 0%, 100%);
    font-size: 1.1rem;
}

.info-desc {
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    color: hsl(0, 0%, 80%);
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .modulo-confianca-clareza {
        padding: 3rem 1rem;
    }
    
    .intro-titulo {
        font-size: 2.2rem;
    }
    
    .intro-descricao {
        font-size: 1.1rem;
    }
    
    .confianca-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .banner-conteudo {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0.2rem;
    }

    .banner-titulo {
        font-size: 1.3rem;
    }
    
    .conteudo-parceiros {
        padding: 1.5rem 0.3rem;
    }
    
    .parceiros-links {
        gap: 1rem;
    }
    
    .parceiro-link {
        min-height: 80px;
        padding: 1rem;
    }
}

.la-copyright::before {
    content: "\f1f9";
}

.site-rodape {
    background: linear-gradient(to bottom, hsl(18, 30%, 12%), hsl(18, 30%, 8%));
    color: hsl(0, 0%, 100%);
    padding: 1rem 2rem 1rem;
    border-top: 4px solid hsl(18, 80%, 50%);
}

.rodape-container {
    max-width: 1142px;
    margin: 0 auto;
    width: 100%;
}

.rodape-linha {
    margin-bottom: 1.1rem;
}

.rodape-identidade {
    text-align: center;
    margin-bottom: 1rem;
}

.identidade-logo {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo-icone {
    font-size: 2.5rem;
    color: hsl(18, 80%, 60%);
}

.logo-texto {
    font-family: 'Merriweather', system-ui, -apple-system, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(0, 0%, 100%);
}

.rodape-links {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid hsl(18, 20%, 25%);
}

.links-navegacao {
    display: flex;
    justify-content: center;
}

.navegacao-lista {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.navegacao-item {
    flex-shrink: 0;
}

.navegacao-link {
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    font-weight: 600;
    color: hsl(0, 0%, 85%);
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.navegacao-link:hover {
    color: hsl(18, 80%, 65%);
}

.navegacao-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: hsl(18, 80%, 60%);
    transition: width 0.3s ease;
}

.navegacao-link:hover::after {
    width: 100%;
}

.rodape-parceiros {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid hsl(18, 20%, 25%);
}

.parceiros-titulo {
    font-family: 'Merriweather', system-ui, -apple-system, sans-serif;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 1.8rem;
    color: hsl(18, 80%, 75%);
}

.parceiros-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.parceiro-link {
    display: block;
    width: 150px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid hsl(18, 20%, 30%);
    transition: all 0.3s ease;
}

.parceiro-link:hover {
    transform: translateY(-5px);
    border-color: hsl(18, 80%, 60%);
    box-shadow: 0 10px 20px rgba(33, 107, 226, 0.3);
}

.parceiro-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: hsl(0, 17%, 20%);
    padding: 0.3rem;
}

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

.copyright-texto {
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    color: hsl(0, 0%, 80%);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.copyright-texto .la {
    font-size: 1.1rem;
    color: hsl(18, 80%, 65%);
}

.copyright-aviso {
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    font-size: 0.9rem;
    color: hsl(18, 10%, 70%);
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .site-rodape {
        padding: 2.5rem 1rem 1.5rem;
    }
    
    .rodape-linha {
        margin-bottom: 2rem;
    }
    
    .logo-texto {
        font-size: 1.9rem;
    }
    
    .logo-icone {
        font-size: 2.2rem;
    }
    
    .navegacao-lista {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .navegacao-link {
        font-size: 1rem;
    }
    
    .parceiros-links {
        gap: 1.5rem;
    }
    
    /* .parceiro-link {
        width: 130px;
        height: 45px;
    } */
    
    .copyright-texto {
        flex-direction: column;
        gap: 0.3rem;
    }
}
