:root {
    --bg: #080a12;
    --bg-2: #101320;
    --card: #151a2e;
    --card-2: #111629;
    --border: #252b44;
    --text: #f5f7fa;
    --muted: #aab0c0;
    --green: #39ff88;
    --purple: #8b5cf6;
    --blue: #00d4ff;
    --pink: #ff3d9a;
    --danger: #ff6b6b;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    --radius: 18px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(57, 255, 136, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(139, 92, 246, 0.18), transparent 28%),
        linear-gradient(180deg, #080a12 0%, #0b0f1d 45%, #080a12 100%);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: -3;
}

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

img {
    max-width: 100%;
}

.container {
    width: 90%;
    max-width: 1160px;
    margin: 0 auto;
}

.bg-glow {
    position: fixed;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.22;
    z-index: -2;
    pointer-events: none;
}

.bg-glow-1 {
    background: var(--green);
    top: 120px;
    left: -160px;
}

.bg-glow-2 {
    background: var(--purple);
    right: -140px;
    bottom: 140px;
}

/* Header */

.topo {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(8, 10, 18, 0.82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(57, 255, 136, 0.13);
    padding: 15px 0;
}

.topo-conteudo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.logo-icone {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(57, 255, 136, 0.22), rgba(139, 92, 246, 0.22)),
        #0d0f19;
    border: 1px solid rgba(57, 255, 136, 0.45);
    color: var(--green);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 28px;
    box-shadow: 0 0 28px rgba(57, 255, 136, 0.18);
}

.logo-texto {
    font-family: 'Rajdhani', sans-serif;
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1;
}

.logo-texto span {
    color: var(--green);
}

.logo-texto strong {
    margin-left: 5px;
    font-size: 15px;
    padding: 3px 7px;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.18);
    color: var(--blue);
    border: 1px solid rgba(0, 212, 255, 0.25);
    vertical-align: middle;
}

.menu {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.menu a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    padding: 9px 11px;
    border-radius: 999px;
    transition: 0.22s ease;
}

.menu a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

/* Hero */

.hero {
    position: relative;
    padding: 84px 0;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 22px auto auto 50%;
    width: 520px;
    height: 520px;
    transform: translateX(-5%);
    background:
        radial-gradient(circle, rgba(57, 255, 136, 0.12), transparent 58%),
        radial-gradient(circle, rgba(139, 92, 246, 0.12), transparent 65%);
    z-index: -1;
}

.hero h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.95;
    letter-spacing: -1px;
    margin: 16px 0 20px;
    max-width: 850px;
}

.hero p {
    color: var(--muted);
    font-size: 19px;
    max-width: 760px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 34px;
    align-items: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--green);
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 13px;
}

.hero-kicker::before {
    content: "●";
    color: var(--pink);
    text-shadow: 0 0 16px rgba(255, 61, 154, 0.6);
}

.hero-destaque {
    color: var(--green);
    text-shadow: 0 0 26px rgba(57, 255, 136, 0.24);
}

.hero-painel {
    background:
        linear-gradient(145deg, rgba(21, 26, 46, 0.95), rgba(10, 14, 27, 0.95)),
        radial-gradient(circle at top, rgba(57, 255, 136, 0.12), transparent 60%);
    border: 1px solid rgba(57, 255, 136, 0.22);
    border-radius: 26px;
    padding: 28px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-painel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(57, 255, 136, 0.10), transparent 35%, rgba(139, 92, 246, 0.10));
    pointer-events: none;
}

.hero-painel-conteudo {
    position: relative;
    z-index: 1;
}

.selo-gta {
    display: inline-block;
    border: 1px solid rgba(57, 255, 136, 0.45);
    border-radius: 18px;
    padding: 18px;
    background: rgba(8, 10, 18, 0.68);
    box-shadow: inset 0 0 24px rgba(57, 255, 136, 0.06);
}

.selo-gta small {
    display: block;
    color: var(--blue);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
}

.selo-gta strong {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    color: var(--green);
    font-size: 44px;
    line-height: 1;
    margin: 5px 0;
}

.selo-gta span {
    display: block;
    color: var(--muted);
    font-weight: 700;
}

/* Tags e botões */

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(57, 255, 136, 0.10);
    color: var(--green);
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    border: 1px solid rgba(57, 255, 136, 0.18);
}

.tag-roxa {
    background: rgba(139, 92, 246, 0.14);
    color: #c4b5fd;
    border-color: rgba(139, 92, 246, 0.28);
}

.tag-azul {
    background: rgba(0, 212, 255, 0.13);
    color: var(--blue);
    border-color: rgba(0, 212, 255, 0.22);
}

.tag-ativa {
    background: var(--green);
    color: #050505;
}

.botoes {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.botao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: #06100c;
    padding: 13px 20px;
    border-radius: 12px;
    font-weight: 900;
    border: 0;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(57, 255, 136, 0.16);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.botao:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(57, 255, 136, 0.22);
    filter: brightness(1.05);
}

.botao-secundario {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border: 1px solid rgba(57, 255, 136, 0.25);
    box-shadow: none;
}

.botao-secundario:hover {
    border-color: rgba(57, 255, 136, 0.65);
}

/* Seções e cards */

.secao {
    padding: 58px 0;
}

.secao h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1;
    margin-bottom: 24px;
}

.secao-cabecalho {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.secao-cabecalho h2 {
    margin-bottom: 8px;
}

.secao-cabecalho p {
    color: var(--muted);
    max-width: 620px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card {
    position: relative;
    background:
        linear-gradient(145deg, rgba(21, 26, 46, 0.96), rgba(14, 18, 34, 0.96));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 23px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(57, 255, 136, 0.09), transparent 65%);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(57, 255, 136, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.card h3,
.card h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 27px;
    line-height: 1.05;
    margin: 14px 0 10px;
}

.card p {
    color: var(--muted);
}

.card strong {
    color: var(--text);
}

.card-destaque {
    border-color: rgba(57, 255, 136, 0.35);
    background:
        linear-gradient(145deg, rgba(21, 26, 46, 0.98), rgba(10, 15, 28, 0.98)),
        radial-gradient(circle at top left, rgba(57, 255, 136, 0.14), transparent 50%);
}

/* Contador */

.contador-box {
    margin-top: 24px;
    background: rgba(8, 10, 18, 0.58);
    border: 1px solid rgba(57, 255, 136, 0.32);
    border-radius: var(--radius);
    padding: 22px;
}

.contador-box h2,
.contador-box h3 {
    color: var(--green);
    font-family: 'Rajdhani', sans-serif;
    margin: 10px 0;
}

.contador-box h2 {
    font-size: 46px;
}

.contador-box h3 {
    font-size: 34px;
}

.contador-box p {
    color: var(--muted);
}

.contador-destaque {
    max-width: 650px;
}

/* Categorias */

.categorias-produtos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.categorias-produtos .tag {
    transition: 0.2s ease;
}

.categorias-produtos .tag:hover {
    background: var(--green);
    color: #050505;
}

/* Formulários */

.calculadora-container,
.cadastro-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.form-card,
.resultado-card {
    background:
        linear-gradient(145deg, rgba(21, 26, 46, 0.96), rgba(14, 18, 34, 0.96));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}

.campo {
    margin-bottom: 18px;
}

.campo label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 800;
}

.campo select,
.campo input,
.form-card input,
.form-card select,
.form-card textarea {
    width: 100%;
    padding: 13px;
    border-radius: 12px;
    border: 1px solid #333a5a;
    background: #0d1020;
    color: var(--text);
    font-size: 15px;
    outline: none;
}

.campo select:focus,
.campo input:focus,
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
    border-color: rgba(57, 255, 136, 0.72);
    box-shadow: 0 0 0 4px rgba(57, 255, 136, 0.08);
}

.botao-form {
    width: 100%;
    margin-top: 8px;
    font-size: 16px;
}

.resultado-card h2 {
    font-size: 42px;
    color: var(--green);
    margin: 10px 0 16px;
}

.resultado-card h3 {
    margin-top: 22px;
    margin-bottom: 12px;
}

.lista-itens {
    list-style: none;
    margin-top: 10px;
}

.lista-itens li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #292f4a;
    padding: 10px 0;
    color: var(--muted);
}

.lista-itens strong {
    color: var(--green);
}

.erro-campo {
    color: var(--danger);
    font-size: 14px;
    margin-top: 6px;
}

.errorlist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.campo-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.campo-checkbox input {
    width: auto;
    margin-top: 5px;
}

.campo-checkbox label {
    font-weight: 500;
    line-height: 1.5;
}

.campo-checkbox a {
    color: var(--green);
    text-decoration: underline;
}

/* Produto detalhe */

.produto-detalhe {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
    align-items: start;
}

.imagem-produto {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 22px;
    border: 1px solid var(--border);
}

.preco-produto {
    margin-top: 20px;
    font-size: 21px;
    color: var(--green);
}

/* Textos legais */

.texto-legal h2 {
    margin-top: 24px;
    margin-bottom: 10px;
    color: var(--green);
}

.texto-legal h2:first-child {
    margin-top: 0;
}

.texto-legal p {
    margin-bottom: 14px;
}

/* Chamada */

.chamada {
    background:
        linear-gradient(135deg, rgba(57, 255, 136, 0.08), rgba(139, 92, 246, 0.08)),
        rgba(18, 21, 38, 0.72);
    border-top: 1px solid rgba(57, 255, 136, 0.16);
    border-bottom: 1px solid rgba(139, 92, 246, 0.16);
    text-align: center;
}

.chamada p {
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto;
}

/* Rodapé */

.rodape {
    background: rgba(5, 7, 13, 0.95);
    color: var(--muted);
    padding: 38px 0;
    font-size: 14px;
    border-top: 1px solid rgba(57, 255, 136, 0.12);
}

.rodape-topo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.logo-rodape .logo-icone {
    width: 36px;
    height: 36px;
    font-size: 24px;
}

.logo-rodape .logo-texto {
    font-size: 23px;
}

.links-rodape {
    margin: 10px 0;
}

.links-rodape a {
    color: var(--green);
    font-weight: 700;
}

.links-rodape span {
    color: #555;
    margin: 0 8px;
}

.aviso {
    margin-top: 10px;
    font-size: 12px;
    color: #788095;
}

.copyright {
    margin-top: 16px;
    color: #697084;
}

/* Responsivo */

@media (max-width: 920px) {
    .hero-grid,
    .calculadora-container,
    .cadastro-container,
    .produto-detalhe {
        grid-template-columns: 1fr;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .topo-conteudo {
        align-items: flex-start;
        flex-direction: column;
    }

    .menu {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 62px 0;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero p {
        font-size: 17px;
    }

    .card h3,
    .card h2 {
        font-size: 24px;
    }

    .lista-itens li {
        flex-direction: column;
        gap: 4px;
    }

    .rodape-topo {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Artigos */

.hero-artigo {
    padding-bottom: 54px;
}

.hero-artigo h1 {
    max-width: 950px;
}

.artigo-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 14px;
}

.artigo-meta span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 7px 11px;
    border-radius: 999px;
}

.artigo-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 360px;
    gap: 30px;
    align-items: start;
}

.artigo-card {
    background:
        linear-gradient(145deg, rgba(21, 26, 46, 0.98), rgba(12, 16, 31, 0.98));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow);
}

.artigo-imagem {
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-bottom: 28px;
}

.artigo-conteudo {
    color: #d9deea;
    font-size: 18px;
    line-height: 1.85;
}

.artigo-conteudo p {
    margin-bottom: 22px;
}

.artigo-conteudo strong {
    color: var(--text);
}

.artigo-conteudo a {
    color: var(--green);
    text-decoration: underline;
}

.artigo-cta {
    margin-top: 38px;
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid rgba(57, 255, 136, 0.28);
    background:
        radial-gradient(circle at top left, rgba(57, 255, 136, 0.12), transparent 45%),
        rgba(8, 10, 18, 0.7);
}

.artigo-cta h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 34px;
    line-height: 1;
    margin: 16px 0 10px;
}

.artigo-cta p {
    color: var(--muted);
}

.artigo-sidebar {
    display: grid;
    gap: 22px;
    position: sticky;
    top: 100px;
}

.links-sidebar {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.links-sidebar a {
    color: var(--muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 11px 13px;
    border-radius: 12px;
    transition: 0.2s ease;
}

.links-sidebar a:hover {
    color: var(--green);
    border-color: rgba(57, 255, 136, 0.35);
    transform: translateX(4px);
}

@media (max-width: 980px) {
    .artigo-layout {
        grid-template-columns: 1fr;
    }

    .artigo-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .artigo-card {
        padding: 24px;
    }

    .artigo-conteudo {
        font-size: 16px;
        line-height: 1.75;
    }

    .artigo-cta {
        padding: 22px;
    }

    .artigo-cta h2 {
        font-size: 28px;
    }
}

/* Produto comercial */

.hero-produto h1 {
    max-width: 850px;
}

.produto-preco-hero {
    margin-top: 26px;
    display: inline-grid;
    gap: 4px;
    background: rgba(57, 255, 136, 0.09);
    border: 1px solid rgba(57, 255, 136, 0.28);
    border-radius: 18px;
    padding: 16px 20px;
}

.produto-preco-hero span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.produto-preco-hero strong {
    color: var(--green);
    font-family: 'Rajdhani', sans-serif;
    font-size: 42px;
    line-height: 1;
}

.produto-painel {
    min-height: 360px;
    display: grid;
    align-items: center;
}

.produto-imagem-hero {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid var(--border);
    margin-bottom: 18px;
}

.produto-placeholder {
    min-height: 250px;
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 22px;
    border: 1px solid rgba(57, 255, 136, 0.22);
    background:
        radial-gradient(circle at center, rgba(57, 255, 136, 0.12), transparent 55%),
        rgba(8, 10, 18, 0.65);
    margin-bottom: 18px;
}

.produto-placeholder span {
    font-size: 72px;
    line-height: 1;
}

.produto-placeholder strong {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    color: var(--green);
}

.produto-placeholder small {
    display: block;
    color: var(--muted);
    font-weight: 700;
}

.produto-selo {
    background: rgba(8, 10, 18, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
}

.produto-selo p {
    color: var(--muted);
    margin-top: 10px;
    font-size: 14px;
}

.produto-card-principal {
    background:
        linear-gradient(145deg, rgba(21, 26, 46, 0.98), rgba(12, 16, 31, 0.98));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.produto-card-principal h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 38px;
    line-height: 1;
    margin: 16px 0;
}

.produto-descricao {
    color: #d9deea;
    font-size: 17px;
    line-height: 1.8;
}

.produto-descricao p {
    margin-bottom: 18px;
}

.produto-info-box {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.produto-info-box div {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
}

.produto-info-box span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.produto-info-box strong {
    color: var(--green);
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    line-height: 1;
}

.produto-sidebar {
    display: grid;
    gap: 22px;
    position: sticky;
    top: 100px;
}

.checklist-produto {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.checklist-produto li {
    color: var(--muted);
    padding-left: 28px;
    position: relative;
}

.checklist-produto li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-weight: 900;
}

@media (max-width: 980px) {
    .produto-sidebar {
        position: static;
    }

    .produto-info-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .produto-preco-hero strong {
        font-size: 34px;
    }

    .produto-card-principal {
        padding: 24px;
    }

    .produto-card-principal h2 {
        font-size: 31px;
    }
}

/* Vitrine de produtos */

.categorias-vitrine {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px;
    border-radius: var(--radius);
}

.vitrine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.produto-card-vitrine {
    position: relative;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(145deg, rgba(21, 26, 46, 0.98), rgba(12, 16, 31, 0.98));
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.produto-card-vitrine:hover {
    transform: translateY(-6px);
    border-color: rgba(57, 255, 136, 0.48);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

.produto-card-topo {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.produto-card-imagem {
    min-height: 190px;
    background:
        radial-gradient(circle at center, rgba(57, 255, 136, 0.12), transparent 55%),
        rgba(8, 10, 18, 0.72);
    border-bottom: 1px solid var(--border);
}

.produto-card-imagem img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.produto-card-placeholder {
    height: 210px;
    display: grid;
    place-items: center;
}

.produto-card-placeholder span {
    font-size: 72px;
    filter: drop-shadow(0 0 22px rgba(57, 255, 136, 0.22));
}

.produto-card-corpo {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.produto-card-corpo h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 29px;
    line-height: 1.05;
    margin-bottom: 10px;
}

.produto-card-corpo p {
    color: var(--muted);
    flex: 1;
}

.produto-card-preco {
    margin-top: 20px;
    margin-bottom: 6px;
    display: grid;
    gap: 3px;
    background: rgba(57, 255, 136, 0.08);
    border: 1px solid rgba(57, 255, 136, 0.20);
    border-radius: 16px;
    padding: 14px;
}

.produto-card-preco span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.produto-card-preco strong {
    color: var(--green);
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    line-height: 1;
}

@media (max-width: 980px) {
    .vitrine-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .vitrine-grid {
        grid-template-columns: 1fr;
    }

    .produto-card-corpo h3 {
        font-size: 26px;
    }

    .produto-card-preco strong {
        font-size: 29px;
    }
}

/* Blog editorial */

.blog-grid-editorial {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.post-card-editorial {
    position: relative;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(145deg, rgba(21, 26, 46, 0.98), rgba(12, 16, 31, 0.98));
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.post-card-editorial:hover {
    transform: translateY(-6px);
    border-color: rgba(57, 255, 136, 0.48);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

.post-card-destaque {
    grid-column: span 2;
}

.post-card-visual {
    min-height: 210px;
    background:
        radial-gradient(circle at center, rgba(57, 255, 136, 0.12), transparent 55%),
        rgba(8, 10, 18, 0.72);
    border-bottom: 1px solid var(--border);
}

.post-card-visual img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.post-card-placeholder {
    height: 230px;
    display: grid;
    place-items: center;
}

.post-card-placeholder span {
    font-size: 76px;
    filter: drop-shadow(0 0 22px rgba(57, 255, 136, 0.22));
}

.post-card-corpo {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post-card-topo {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.post-card-corpo h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 31px;
    line-height: 1.02;
    margin-bottom: 12px;
}

.post-card-destaque .post-card-corpo h3 {
    font-size: 40px;
}

.post-card-corpo p {
    color: var(--muted);
    flex: 1;
}

.post-card-meta {
    margin-top: 18px;
    color: #788095;
    font-size: 13px;
    font-weight: 700;
}

.post-card-meta span {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 7px 10px;
    border-radius: 999px;
}

@media (max-width: 980px) {
    .blog-grid-editorial {
        grid-template-columns: repeat(2, 1fr);
    }

    .post-card-destaque {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .blog-grid-editorial {
        grid-template-columns: 1fr;
    }

    .post-card-destaque {
        grid-column: span 1;
    }

    .post-card-corpo h3,
    .post-card-destaque .post-card-corpo h3 {
        font-size: 28px;
    }
}

/* Contato */

.contato-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 360px;
    gap: 30px;
    align-items: start;
}

.contato-card {
    background:
        linear-gradient(145deg, rgba(21, 26, 46, 0.98), rgba(12, 16, 31, 0.98));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.contato-card h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 40px;
    line-height: 1;
    margin: 16px 0 10px;
}

.contato-card > p {
    color: var(--muted);
    margin-bottom: 24px;
}

.contato-form {
    margin-top: 24px;
    box-shadow: none;
    background: rgba(8, 10, 18, 0.42);
}

.contato-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contato-sidebar {
    display: grid;
    gap: 22px;
    position: sticky;
    top: 100px;
}

@media (max-width: 980px) {
    .contato-layout {
        grid-template-columns: 1fr;
    }

    .contato-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .contato-card {
        padding: 24px;
    }

    .contato-card h2 {
        font-size: 32px;
    }
}

/* Banner Especial GTA 6 */

.hero-painel-banner {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 420px;
    border-radius: var(--radius);
    background: rgba(8, 10, 18, 0.82);
    border: 1px solid rgba(57, 255, 136, 0.22);
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.34),
        0 0 28px rgba(57, 255, 136, 0.08);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.hero-painel-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            135deg,
            rgba(57, 255, 136, 0.12),
            transparent 32%,
            transparent 65%,
            rgba(139, 92, 246, 0.14)
        );
    opacity: 0;
    transition: opacity 0.25s ease;
}

.hero-painel-banner:hover {
    transform: translateY(-5px);
    border-color: rgba(57, 255, 136, 0.52);
    box-shadow:
        0 28px 72px rgba(0, 0, 0, 0.44),
        0 0 36px rgba(57, 255, 136, 0.20),
        0 0 42px rgba(139, 92, 246, 0.12);
}

.hero-painel-banner:hover::after {
    opacity: 1;
}

.banner-gta6-especial {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center bottom;
    display: block;
    border-radius: var(--radius);
    transition:
        filter 0.25s ease,
        transform 0.25s ease;
}

.hero-painel-banner:hover .banner-gta6-especial {
    filter: saturate(1.12) contrast(1.05) brightness(1.04);
}

@media (max-width: 980px) {
    .hero-painel-banner {
        min-height: 340px;
    }

    .banner-gta6-especial {
        min-height: 340px;
    }
}

@media (max-width: 640px) {
    .hero-painel-banner {
        min-height: 250px;
    }

    .banner-gta6-especial {
        min-height: 250px;
    }

    .hero-painel-banner:hover {
        transform: none;
    }
}

/* Banner GTA 6 na home */

.home-banner-gta {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(57, 255, 136, 0.22);
    background:
        radial-gradient(circle at top right, rgba(57, 255, 136, 0.10), transparent 38%),
        radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.15), transparent 42%),
        linear-gradient(145deg, rgba(21, 26, 46, 0.98), rgba(12, 16, 31, 0.98));
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.34),
        0 0 28px rgba(57, 255, 136, 0.08);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.home-banner-gta:hover {
    transform: translateY(-5px);
    border-color: rgba(57, 255, 136, 0.46);
    box-shadow:
        0 30px 76px rgba(0, 0, 0, 0.43),
        0 0 38px rgba(57, 255, 136, 0.16),
        0 0 42px rgba(139, 92, 246, 0.11);
}

.home-banner-gta-imagem {
    min-height: 360px;
    overflow: hidden;
    background: rgba(8, 10, 18, 0.75);
}

.home-banner-gta-imagem img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: center bottom;
    display: block;
    transition:
        filter 0.25s ease,
        transform 0.25s ease;
}

.home-banner-gta:hover .home-banner-gta-imagem img {
    filter: saturate(1.12) contrast(1.05) brightness(1.04);
    transform: scale(1.025);
}

.home-banner-gta-conteudo {
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-banner-gta-conteudo h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 0.95;
    margin: 16px 0 14px;
}

.home-banner-gta-conteudo p {
    color: var(--muted);
    font-size: 17px;
    max-width: 560px;
}

.contador-home {
    margin: 24px 0 4px;
}

@media (max-width: 980px) {
    .home-banner-gta {
        grid-template-columns: 1fr;
    }

    .home-banner-gta-imagem,
    .home-banner-gta-imagem img {
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    .home-banner-gta-imagem,
    .home-banner-gta-imagem img {
        min-height: 240px;
    }

    .home-banner-gta-conteudo {
        padding: 26px;
    }

    .home-banner-gta:hover {
        transform: none;
    }

    .home-banner-gta:hover .home-banner-gta-imagem img {
        transform: none;
    }
}

/* Cards com imagem */

.card-com-imagem {
    padding: 0;
    overflow: hidden;
}

.card-imagem-link {
    display: block;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.card-imagem {
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition:
        transform 0.25s ease,
        filter 0.25s ease;
}

.card-com-imagem:hover .card-imagem {
    transform: scale(1.045);
    filter: saturate(1.1) contrast(1.04) brightness(1.03);
}

.card-conteudo {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-conteudo h3 {
    margin-top: 14px;
}

@media (max-width: 640px) {
    .card-imagem {
        height: 170px;
    }

    .card-conteudo {
        padding: 20px;
    }
}

/* Ajustes finais das imagens de produtos */

.produto-card-imagem {
    min-height: 230px;
    max-height: 230px;
    overflow: hidden;
}

.produto-card-imagem img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center;
    transition:
        transform 0.25s ease,
        filter 0.25s ease;
}

.produto-card-vitrine:hover .produto-card-imagem img {
    transform: scale(1.045);
    filter: saturate(1.1) contrast(1.05) brightness(1.03);
}

.produto-imagem-hero {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    border: 1px solid var(--border);
    margin-bottom: 18px;
    transition:
        transform 0.25s ease,
        filter 0.25s ease;
}

.produto-painel:hover .produto-imagem-hero {
    transform: scale(1.025);
    filter: saturate(1.1) contrast(1.05) brightness(1.03);
}

@media (max-width: 640px) {
    .produto-card-imagem,
    .produto-card-imagem img {
        min-height: 210px;
        max-height: 210px;
        height: 210px;
    }

    .produto-imagem-hero {
        max-height: 280px;
    }
}

/* Página Sobre */

.sobre-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 360px;
    gap: 30px;
    align-items: start;
}

.sobre-card-principal {
    background:
        linear-gradient(145deg, rgba(21, 26, 46, 0.98), rgba(12, 16, 31, 0.98));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow);
}

.sobre-card-principal h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 42px;
    line-height: 1;
    margin: 16px 0 18px;
}

.sobre-card-principal p {
    color: #d9deea;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.sobre-sidebar {
    display: grid;
    gap: 22px;
    position: sticky;
    top: 100px;
}

@media (max-width: 980px) {
    .sobre-layout {
        grid-template-columns: 1fr;
    }

    .sobre-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .sobre-card-principal {
        padding: 24px;
    }

    .sobre-card-principal h2 {
        font-size: 33px;
    }
}

/* Página Parcerias */

.parcerias-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 360px;
    gap: 30px;
    align-items: start;
}

.parcerias-card-principal {
    background:
        linear-gradient(145deg, rgba(21, 26, 46, 0.98), rgba(12, 16, 31, 0.98));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow);
}

.parcerias-card-principal h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 42px;
    line-height: 1;
    margin: 16px 0 18px;
}

.parcerias-card-principal p {
    color: #d9deea;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.parcerias-sidebar {
    display: grid;
    gap: 22px;
    position: sticky;
    top: 100px;
}

@media (max-width: 980px) {
    .parcerias-layout {
        grid-template-columns: 1fr;
    }

    .parcerias-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .parcerias-card-principal {
        padding: 24px;
    }

    .parcerias-card-principal h2 {
        font-size: 33px;
    }
}

/* Calculadora GTA 6 */

.calculadora-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 380px;
    gap: 30px;
    align-items: start;
}

.calculadora-card,
.resultado-card {
    background:
        linear-gradient(145deg, rgba(21, 26, 46, 0.98), rgba(12, 16, 31, 0.98));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.calculadora-card h2,
.resultado-card h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 40px;
    line-height: 1;
    margin: 16px 0 22px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-grupo {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-grupo label {
    color: var(--text);
    font-weight: 700;
    font-size: 15px;
}

.form-grupo input,
.form-grupo select {
    width: 100%;
    background: rgba(2, 6, 23, 0.78);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 14px;
    padding: 14px 15px;
    outline: none;
    font-size: 15px;
}

.form-grupo input:focus,
.form-grupo select:focus {
    border-color: rgba(57, 255, 136, 0.65);
    box-shadow: 0 0 0 3px rgba(57, 255, 136, 0.10);
}

.botao-calcular {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.resultado-card {
    position: sticky;
    top: 100px;
}

.resultado-destaque {
    background: rgba(2, 6, 23, 0.62);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 16px;
}

.resultado-destaque small {
    display: block;
    color: var(--muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    font-weight: 800;
}

.resultado-destaque strong {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 38px;
    color: var(--primary);
}

.resultado-mensal strong {
    color: var(--secondary);
}

.resultado-card p {
    color: #d9deea;
    line-height: 1.7;
    margin: 18px 0;
}

.resultado-botoes {
    flex-direction: column;
}

.resultado-botoes .botao {
    width: 100%;
    justify-content: center;
}

@media (max-width: 980px) {
    .calculadora-layout {
        grid-template-columns: 1fr;
    }

    .resultado-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .calculadora-card,
    .resultado-card {
        padding: 24px;
    }

    .calculadora-card h2,
    .resultado-card h2 {
        font-size: 32px;
    }

    .resultado-destaque strong {
        font-size: 32px;
    }
}

/* Aviso de afiliados no rodapé */

.rodape .aviso-afiliados {
    margin-top: 14px;
    padding: 16px 18px;
    background: rgba(2, 6, 23, 0.62);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.rodape .aviso-afiliados {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Comparador de Consoles */

.comparador-hero {
    padding: 80px 0 50px;
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.14), transparent 30%);
}

.comparador-hero h1 {
    margin: 14px 0 18px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.05;
}

.comparador-hero p {
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.comparador-acoes {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.comparador-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.console-card {
    background: rgba(15, 23, 42, 0.76);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.console-card-topo {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.console-card h3 {
    margin: 0;
    font-size: 24px;
}

.console-preco {
    display: inline-flex;
    white-space: nowrap;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.28);
    color: #bbf7d0;
    font-size: 13px;
    font-weight: 700;
}

.console-perfil {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.console-bloco {
    margin-top: 18px;
}

.console-bloco h4 {
    margin: 0 0 10px;
    font-size: 16px;
}

.console-bloco ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.7;
}

.console-veredito {
    margin-top: 20px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.45);
    border: 1px solid var(--border);
}

.console-veredito p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.console-nota {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.console-nota span {
    color: var(--muted);
}

.console-nota strong {
    font-size: 22px;
}

.perfil-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.perfil-card {
    padding: 24px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(2, 6, 23, 0.55);
}

.perfil-card h3 {
    margin: 0 0 12px;
}

.perfil-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.comparador-final {
    padding: 34px;
    border-radius: 26px;
    border: 1px solid var(--border);
    background:
        linear-gradient(135deg, rgba(59, 130, 246, 0.16), rgba(34, 197, 94, 0.10)),
        rgba(15, 23, 42, 0.76);
    box-shadow: var(--shadow);
}

.comparador-final h2 {
    margin-top: 0;
}

.comparador-final p {
    color: var(--muted);
    line-height: 1.7;
    max-width: 760px;
}

@media (max-width: 980px) {
    .comparador-grid,
    .perfil-grid {
        grid-template-columns: 1fr;
    }

    .console-card-topo {
        flex-direction: column;
    }
}

/* Tabela visual do comparador */

.tabela-comparador-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.72);
    box-shadow: var(--shadow);
}

.tabela-comparador {
    width: 100%;
    border-collapse: collapse;
    min-width: 860px;
}

.tabela-comparador th,
.tabela-comparador td {
    padding: 18px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.tabela-comparador th {
    background: rgba(2, 6, 23, 0.72);
    color: var(--text);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.tabela-comparador td {
    color: var(--muted);
    line-height: 1.6;
}

.tabela-comparador td strong {
    color: var(--text);
}

.tabela-comparador tr:last-child td {
    border-bottom: none;
}

.tabela-comparador tbody tr:hover {
    background: rgba(59, 130, 246, 0.08);
}

.selo-destaque-tabela {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.28);
    color: #bbf7d0;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.comparador-veredito-box {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    align-items: start;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background:
        radial-gradient(circle at top left, rgba(34, 197, 94, 0.14), transparent 35%),
        rgba(2, 6, 23, 0.54);
}

.comparador-veredito-box h3 {
    margin: 12px 0 0;
    font-size: 28px;
}

.veredito-lista {
    display: grid;
    gap: 12px;
}

.veredito-lista p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.veredito-lista strong {
    color: var(--text);
}

@media (max-width: 760px) {
    .tabela-comparador {
        min-width: 0;
    }

    .tabela-comparador thead {
        display: none;
    }

    .tabela-comparador,
    .tabela-comparador tbody,
    .tabela-comparador tr,
    .tabela-comparador td {
        display: block;
        width: 100%;
    }

    .tabela-comparador tr {
        padding: 16px;
        border-bottom: 1px solid var(--border);
    }

    .tabela-comparador tr:last-child {
        border-bottom: none;
    }

    .tabela-comparador td {
        display: grid;
        grid-template-columns: 130px 1fr;
        gap: 12px;
        padding: 10px 0;
        border-bottom: none;
    }

    .tabela-comparador td::before {
        content: attr(data-label);
        color: var(--text);
        font-weight: 800;
    }

    .selo-destaque-tabela {
        white-space: normal;
        text-align: center;
    }

    .comparador-veredito-box {
        grid-template-columns: 1fr;
    }
}

/* Página Lançamentos */

.lancamentos-hero {
    padding: 80px 0 50px;
    background:
        radial-gradient(circle at top left, rgba(168, 85, 247, 0.20), transparent 35%),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.16), transparent 30%);
}

.lancamentos-hero h1 {
    margin: 14px 0 18px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.05;
}

.lancamentos-hero p {
    max-width: 780px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.lancamentos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.lancamento-card {
    padding: 24px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.76);
    box-shadow: var(--shadow);
}

.lancamento-card-topo {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.lancamento-tipo,
.lancamento-status {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.lancamento-tipo {
    color: #bfdbfe;
    background: rgba(59, 130, 246, 0.14);
    border: 1px solid rgba(59, 130, 246, 0.28);
}

.lancamento-status {
    color: #fef3c7;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.26);
}

.lancamento-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.lancamento-card p {
    color: var(--muted);
    line-height: 1.7;
}

.link-card-desativado {
    color: var(--muted);
    cursor: default;
}

.categorias-lancamentos-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.categoria-lancamento-card {
    padding: 22px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: rgba(2, 6, 23, 0.55);
}

.categoria-lancamento-card h3 {
    margin: 0 0 10px;
}

.categoria-lancamento-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.lancamentos-editorial-box {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    padding: 32px;
    border-radius: 26px;
    border: 1px solid var(--border);
    background:
        linear-gradient(135deg, rgba(168, 85, 247, 0.16), rgba(59, 130, 246, 0.10)),
        rgba(15, 23, 42, 0.76);
    box-shadow: var(--shadow);
}

.lancamentos-editorial-box h2 {
    margin: 12px 0 0;
}

.lancamentos-editorial-texto {
    display: grid;
    gap: 12px;
}

.lancamentos-editorial-texto p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.estado-vazio {
    padding: 28px;
    border-radius: 22px;
    border: 1px dashed var(--border);
    background: rgba(15, 23, 42, 0.54);
    text-align: center;
}

.estado-vazio h3 {
    margin-top: 0;
}

.estado-vazio p {
    margin-bottom: 0;
    color: var(--muted);
}

@media (max-width: 980px) {
    .lancamentos-grid,
    .categorias-lancamentos-grid,
    .lancamentos-editorial-box {
        grid-template-columns: 1fr;
    }

    .lancamento-card-topo {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Lista Gamer BR */

.lista-gamer-hero {
    padding: 80px 0 50px;
    background:
        radial-gradient(circle at top left, rgba(34, 197, 94, 0.18), transparent 34%),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.16), transparent 30%);
}

.lista-gamer-hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 28px;
    align-items: center;
}

.lista-gamer-hero h1 {
    margin: 14px 0 18px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.05;
}

.lista-gamer-hero p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    max-width: 760px;
}

.lista-gamer-beneficios {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.lista-gamer-beneficios span {
    display: inline-flex;
    padding: 9px 13px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.62);
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
}

.lista-gamer-destaque {
    padding: 26px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background:
        linear-gradient(135deg, rgba(34, 197, 94, 0.14), rgba(59, 130, 246, 0.10)),
        rgba(15, 23, 42, 0.72);
    box-shadow: var(--shadow);
}

.lista-gamer-destaque h2 {
    margin-top: 0;
}

.lista-gamer-destaque p {
    margin-bottom: 0;
    font-size: 16px;
}

.lista-gamer-container {
    align-items: flex-start;
}

.form-cabecalho {
    margin-bottom: 24px;
}

.form-cabecalho h2 {
    margin: 12px 0 10px;
    font-size: 30px;
}

.form-cabecalho p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.lista-gamer-form {
    position: relative;
    overflow: hidden;
}

.lista-gamer-form::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(34, 197, 94, 0.12), transparent 36%),
        radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.10), transparent 34%);
    pointer-events: none;
}

.lista-gamer-form > * {
    position: relative;
    z-index: 1;
}

.campo-ajuda {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.form-aviso {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.lista-gamer-card {
    position: sticky;
    top: 24px;
}

.lista-gamer-mini-box {
    margin-top: 22px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(2, 6, 23, 0.52);
}

.lista-gamer-mini-box h3 {
    margin: 0 0 10px;
}

.lista-gamer-mini-box p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 980px) {
    .lista-gamer-hero-grid {
        grid-template-columns: 1fr;
    }

    .lista-gamer-card {
        position: static;
    }
}

/* Comece por Aqui */

.comece-hero {
    padding: 80px 0 50px;
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.20), transparent 34%),
        radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.16), transparent 30%);
}

.comece-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: center;
}

.comece-hero h1 {
    margin: 14px 0 18px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
}

.comece-hero p {
    max-width: 780px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.comece-resumo-card {
    padding: 26px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background:
        linear-gradient(135deg, rgba(59, 130, 246, 0.14), rgba(34, 197, 94, 0.10)),
        rgba(15, 23, 42, 0.76);
    box-shadow: var(--shadow);
}

.comece-resumo-card ul {
    margin: 18px 0 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.8;
}

.comece-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.comece-card {
    padding: 24px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.76);
    box-shadow: var(--shadow);
}

.comece-card-tag {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #bfdbfe;
    background: rgba(59, 130, 246, 0.14);
    border: 1px solid rgba(59, 130, 246, 0.28);
    font-size: 12px;
    font-weight: 800;
}

.comece-card h3 {
    margin: 0 0 12px;
}

.comece-card p {
    color: var(--muted);
    line-height: 1.7;
}

.comece-passos-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.comece-passo-card {
    padding: 24px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(2, 6, 23, 0.55);
}

.comece-passo-card span {
    display: inline-flex;
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 900;
    color: #bbf7d0;
}

.comece-passo-card h3 {
    margin: 0 0 12px;
}

.comece-passo-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.comece-lista-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: center;
    padding: 32px;
    border-radius: 26px;
    border: 1px solid var(--border);
    background:
        linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(59, 130, 246, 0.10)),
        rgba(15, 23, 42, 0.76);
    box-shadow: var(--shadow);
}

.comece-lista-box h2 {
    margin: 12px 0;
}

.comece-lista-box p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.comece-lista-acoes {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
}

.comece-links-finais {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.comece-links-finais a {
    display: inline-flex;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.72);
    color: var(--text);
    font-weight: 800;
    text-decoration: none;
}

.comece-links-finais a:hover {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.55);
}

@media (max-width: 1080px) {
    .comece-cards-grid,
    .comece-passos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .comece-hero-grid,
    .comece-lista-box {
        grid-template-columns: 1fr;
    }

    .comece-lista-acoes {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .comece-cards-grid,
    .comece-passos-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   MENU PRINCIPAL RESPONSIVO
===================================================== */

.topo {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    background: rgba(2, 6, 23, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.topo-conteudo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 28px;
}

.menu-principal {
    margin-left: auto;
}

.menu-lista {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-item {
    position: relative;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 13px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.menu-link:hover,
.menu-link:focus-visible,
.menu-item-dropdown.submenu-aberto > .menu-link {
    background: rgba(59, 130, 246, 0.12);
    color: #bfdbfe;
    outline: none;
}

.menu-link:hover {
    transform: translateY(-1px);
}

.menu-seta {
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.menu-item-dropdown.submenu-aberto .menu-seta {
    margin-top: 4px;
    transform: rotate(225deg);
}

.submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 1100;
    width: max-content;
    min-width: 230px;
    margin: 0;
    padding: 10px;
    list-style: none;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.98);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.38);
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}

.submenu-direita {
    right: 0;
    left: auto;
}

.menu-item-dropdown.submenu-aberto > .submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.submenu li + li {
    margin-top: 4px;
}

.submenu a {
    display: block;
    padding: 12px 14px;
    border-radius: 11px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.submenu a:hover,
.submenu a:focus-visible {
    background: rgba(59, 130, 246, 0.12);
    color: var(--text);
    outline: none;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: rgba(15, 23, 42, 0.82);
    cursor: pointer;
}

.menu-toggle-linha {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.menu-toggle-linha + .menu-toggle-linha {
    margin-top: 6px;
}

.menu-toggle-ativo .menu-toggle-linha:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle-ativo .menu-toggle-linha:nth-child(2) {
    opacity: 0;
}

.menu-toggle-ativo .menu-toggle-linha:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu-mobile-topo,
.menu-overlay {
    display: none;
}

/* =====================================================
   MENU MOBILE
===================================================== */

@media (max-width: 900px) {
    .topo-conteudo {
        min-height: 68px;
    }

    .menu-toggle {
        display: block;
        flex: 0 0 auto;
        margin-left: auto;
    }

    .menu-principal {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1300;
        width: min(88vw, 380px);
        height: 100dvh;
        margin: 0;
        padding: 20px;
        overflow-y: auto;
        border-left: 1px solid var(--border);
        background:
            radial-gradient(
                circle at top right,
                rgba(59, 130, 246, 0.14),
                transparent 28%
            ),
            #020617;
        box-shadow: -24px 0 55px rgba(0, 0, 0, 0.48);
        transform: translateX(105%);
        visibility: hidden;
        transition:
            transform 0.28s ease,
            visibility 0.28s ease;
    }

    .menu-principal.menu-aberto {
        visibility: visible;
        transform: translateX(0);
    }

    .menu-mobile-topo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 18px;
        margin-bottom: 12px;
        border-bottom: 1px solid var(--border);
    }

    .menu-mobile-titulo {
        font-family: "Rajdhani", sans-serif;
        font-size: 24px;
        font-weight: 800;
    }

    .menu-fechar {
        width: 42px;
        height: 42px;
        padding: 0;
        border: 1px solid var(--border);
        border-radius: 12px;
        background: rgba(15, 23, 42, 0.76);
        color: var(--text);
        font-size: 29px;
        line-height: 1;
        cursor: pointer;
    }

    .menu-lista {
        display: block;
    }

    .menu-item + .menu-item {
        margin-top: 6px;
    }

    .menu-link {
        width: 100%;
        min-height: 50px;
        justify-content: space-between;
        padding: 13px 14px;
        font-size: 16px;
        text-align: left;
    }

    .submenu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        margin-top: 5px;
        padding: 6px 0 6px 14px;
        visibility: visible;
        opacity: 1;
        transform: none;
        border: 0;
        border-left: 2px solid rgba(59, 130, 246, 0.3);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        pointer-events: auto;
        transition: none;
    }

    .menu-item-dropdown.submenu-aberto > .submenu {
        display: block;
    }

    .submenu a {
        padding: 12px 14px;
        font-size: 15px;
        white-space: normal;
    }

    .menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: block;
        visibility: hidden;
        opacity: 0;
        background: rgba(2, 6, 23, 0.72);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        pointer-events: none;
        transition:
            opacity 0.25s ease,
            visibility 0.25s ease;
    }

    .menu-overlay.menu-overlay-visivel {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    body.menu-mobile-ativo {
        overflow: hidden;
    }
}

@media (max-width: 440px) {
    .logo-texto {
        font-size: 18px;
    }

    .logo-icone {
        width: 38px;
        height: 38px;
        font-size: 23px;
    }

    .menu-principal {
        width: 92vw;
        padding: 16px;
    }
}

/* =====================================================
   HOME — SEÇÃO EM ALTA
===================================================== */

.home-destaques {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.9fr);
    gap: 24px;
    align-items: stretch;
}

.destaque-principal {
    position: relative;
    display: flex;
    min-height: 520px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.82);
    box-shadow: var(--shadow);
}

.destaque-principal > a {
    position: absolute;
    inset: 0;
    display: block;
}

.destaque-principal > a::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(2, 6, 23, 0.06) 20%,
            rgba(2, 6, 23, 0.64) 62%,
            rgba(2, 6, 23, 0.98) 100%
        );
}

.destaque-principal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.destaque-principal:hover img {
    transform: scale(1.035);
}

.destaque-conteudo {
    position: relative;
    z-index: 2;
    align-self: flex-end;
    width: 100%;
    padding: 34px;
    pointer-events: none;
}

.destaque-conteudo a {
    pointer-events: auto;
}

.destaque-conteudo h2 {
    max-width: 780px;
    margin: 14px 0 12px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.08;
}

.destaque-conteudo h2 a {
    color: var(--text);
    text-decoration: none;
}

.destaque-conteudo h2 a:hover {
    color: #bfdbfe;
}

.destaque-conteudo p {
    max-width: 720px;
    margin: 0 0 16px;
    color: rgba(226, 232, 240, 0.88);
    font-size: 16px;
    line-height: 1.7;
}

.destaque-conteudo small {
    color: var(--muted);
    font-size: 13px;
}

.destaques-laterais {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.mini-destaque {
    position: relative;
    min-height: 245px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.82);
    box-shadow: var(--shadow);
}

.mini-destaque > a {
    position: absolute;
    inset: 0;
    display: block;
}

.mini-destaque > a::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(2, 6, 23, 0.04) 15%,
            rgba(2, 6, 23, 0.72) 65%,
            rgba(2, 6, 23, 0.98) 100%
        );
}

.mini-destaque img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mini-destaque:hover img {
    transform: scale(1.04);
}

.mini-destaque > div {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 22px;
    pointer-events: none;
}

.mini-destaque > div a {
    pointer-events: auto;
}

.mini-destaque h3 {
    margin: 11px 0 0;
    font-size: clamp(20px, 2.5vw, 27px);
    line-height: 1.18;
}

.mini-destaque h3 a {
    color: var(--text);
    text-decoration: none;
}

.mini-destaque h3 a:hover {
    color: #bfdbfe;
}

/* Quando o post não possui imagem */

.destaque-principal:not(:has(img)),
.mini-destaque:not(:has(img)) {
    background:
        radial-gradient(
            circle at top left,
            rgba(59, 130, 246, 0.2),
            transparent 38%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(168, 85, 247, 0.16),
            transparent 34%
        ),
        rgba(15, 23, 42, 0.9);
}

.destaque-principal:not(:has(img)) .destaque-conteudo {
    align-self: center;
}

.mini-destaque:not(:has(img)) > div {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}

/* Responsividade */

@media (max-width: 980px) {
    .home-destaques {
        grid-template-columns: 1fr;
    }

    .destaque-principal {
        min-height: 460px;
    }

    .destaques-laterais {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
    }
}

@media (max-width: 700px) {
    .destaque-principal {
        min-height: 440px;
    }

    .destaque-conteudo {
        padding: 24px;
    }

    .destaque-conteudo p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .destaques-laterais {
        grid-template-columns: 1fr;
    }

    .mini-destaque {
        min-height: 260px;
    }
}

@media (max-width: 460px) {
    .destaque-principal {
        min-height: 410px;
    }

    .destaque-conteudo {
        padding: 20px;
    }

    .destaque-conteudo h2 {
        font-size: 27px;
    }

    .mini-destaque {
        min-height: 230px;
    }
}

/* =====================================================
   HERO — CARROSSEL EDITORIAL
===================================================== */

.hero-carrossel {
    position: relative;
    min-width: 0;
    height: 460px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.86);
    box-shadow: var(--shadow);
}

.hero-carrossel-trilho,
.hero-slide {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    transform: scale(1.025);
    pointer-events: none;
    transition:
        opacity 0.7s ease,
        transform 0.9s ease,
        visibility 0.7s ease;
}

.hero-slide.hero-slide-ativo {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.hero-slide-imagem {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(2, 6, 23, 0.04) 20%,
            rgba(2, 6, 23, 0.3) 48%,
            rgba(2, 6, 23, 0.96) 100%
        );
}

.hero-slide-conteudo {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 30px 68px 34px 30px;
}

.hero-slide-categoria {
    display: inline-flex;
    padding: 7px 11px;
    border: 1px solid rgba(191, 219, 254, 0.28);
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.18);
    color: #dbeafe;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.hero-slide-conteudo h2 {
    max-width: 650px;
    margin: 13px 0 17px;
    color: var(--text);
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.08;
}

.hero-slide-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #bfdbfe;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.hero-slide-link:hover {
    color: #ffffff;
}

.hero-carrossel-controle {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    place-items: center;
    width: 42px;
    height: 48px;
    padding: 0;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 13px;
    background: rgba(2, 6, 23, 0.68);
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    opacity: 0.72;
    transition:
        opacity 0.2s ease,
        background 0.2s ease;
}

.hero-carrossel-controle:hover,
.hero-carrossel-controle:focus-visible {
    opacity: 1;
    background: rgba(59, 130, 246, 0.5);
    outline: none;
}

.hero-carrossel-anterior {
    left: 14px;
}

.hero-carrossel-proximo {
    right: 14px;
}

.hero-carrossel-indicadores {
    position: absolute;
    right: 28px;
    bottom: 22px;
    z-index: 6;
    display: flex;
    gap: 7px;
}

.hero-carrossel-indicador {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition:
        width 0.25s ease,
        background 0.25s ease;
}

.hero-carrossel-indicador.ativo {
    width: 28px;
    background: #60a5fa;
}

@media (max-width: 900px) {
    .hero-carrossel {
        height: 430px;
    }
}

@media (max-width: 640px) {
    .hero-carrossel {
        height: 390px;
        border-radius: 22px;
    }

    .hero-slide-conteudo {
        padding: 24px 52px 28px 22px;
    }

    .hero-slide-conteudo h2 {
        font-size: 25px;
    }

    .hero-carrossel-controle {
        width: 38px;
        height: 44px;
    }

    .hero-carrossel-anterior {
        left: 9px;
    }

    .hero-carrossel-proximo {
        right: 9px;
    }

    .hero-carrossel-indicadores {
        right: 20px;
        bottom: 17px;
    }
}

/* =====================================================
   BARRA EM ALTA AGORA
===================================================== */

.barra-em-alta {
    position: relative;
    z-index: 90;
    border-bottom: 1px solid var(--border);
    background:
        linear-gradient(
            90deg,
            rgba(239, 68, 68, 0.12),
            rgba(15, 23, 42, 0.94) 28%,
            rgba(15, 23, 42, 0.94)
        );
}

.barra-em-alta-conteudo {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 52px;
}

.barra-em-alta-titulo {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    color: #fca5a5;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.barra-em-alta-titulo strong {
    color: var(--text);
}

.barra-em-alta-janela {
    position: relative;
    min-width: 0;
    height: 38px;
    overflow: hidden;
}

.barra-em-alta-trilho {
    position: relative;
    width: 100%;
    height: 100%;
}

.barra-em-alta-item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    color: var(--text);
    text-decoration: none;
    pointer-events: none;
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        visibility 0.35s ease;
}

.barra-em-alta-item.ativo {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.barra-em-alta-item span {
    flex: 0 0 auto;
    padding: 5px 8px;
    border: 1px solid rgba(239, 68, 68, 0.24);
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.1);
    color: #fecaca;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.barra-em-alta-item strong {
    overflow: hidden;
    color: var(--text);
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.barra-em-alta-item:hover strong {
    color: #bfdbfe;
}

.barra-em-alta-controles {
    display: flex;
    gap: 6px;
}

.barra-em-alta-controles button {
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: rgba(2, 6, 23, 0.55);
    color: var(--text);
    font-size: 14px;
    cursor: pointer;
}

.barra-em-alta-controles button:hover,
.barra-em-alta-controles button:focus-visible {
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(59, 130, 246, 0.16);
    outline: none;
}

@media (max-width: 760px) {
    .barra-em-alta-conteudo {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 12px;
        min-height: 48px;
    }

    .barra-em-alta-titulo strong {
        display: none;
    }

    .barra-em-alta-titulo {
        font-size: 16px;
    }

    .barra-em-alta-controles {
        display: none;
    }

    .barra-em-alta-item span {
        display: none;
    }

    .barra-em-alta-item strong {
        font-size: 13px;
    }
}

/* =====================================================
   BUSCA GLOBAL
===================================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.busca-topo {
    position: relative;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    width: 210px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: rgba(15, 23, 42, 0.72);
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.busca-topo:focus-within {
    border-color: rgba(59, 130, 246, 0.65);
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.busca-topo input {
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 0 42px 0 14px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font-family: inherit;
    font-size: 13px;
}

.busca-topo input::placeholder {
    color: var(--muted);
}

.busca-topo input::-webkit-search-cancel-button {
    cursor: pointer;
}

.busca-topo button {
    position: absolute;
    top: 50%;
    right: 5px;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 9px;
    background: rgba(59, 130, 246, 0.15);
    color: #bfdbfe;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.busca-topo button:hover,
.busca-topo button:focus-visible {
    background: rgba(59, 130, 246, 0.28);
    color: #ffffff;
    outline: none;
}

.hero-busca {
    padding-bottom: 60px;
}

.busca-pagina-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    width: min(100%, 760px);
    margin-top: 30px;
}

.busca-pagina-form input {
    width: 100%;
    min-height: 52px;
    padding: 13px 17px;
    border: 1px solid var(--border);
    border-radius: 14px;
    outline: none;
    background: rgba(15, 23, 42, 0.78);
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.busca-pagina-form input::placeholder {
    color: var(--muted);
}

.busca-pagina-form input:focus {
    border-color: rgba(59, 130, 246, 0.7);
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.busca-pagina-form .botao {
    min-height: 52px;
}

.busca-sem-resultados {
    max-width: 720px;
    margin: 20px auto;
    padding: 54px 32px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background:
        radial-gradient(
            circle at top,
            rgba(59, 130, 246, 0.12),
            transparent 52%
        ),
        rgba(15, 23, 42, 0.64);
    text-align: center;
}

.busca-sem-resultados-icone {
    display: block;
    margin-bottom: 18px;
    font-size: 48px;
}

.busca-sem-resultados h2 {
    margin-bottom: 12px;
}

.busca-sem-resultados p {
    max-width: 580px;
    margin-right: auto;
    margin-left: auto;
}

.busca-sem-resultados .botoes {
    justify-content: center;
    margin-top: 26px;
}

.post-card-editorial h3 a {
    color: inherit;
    text-decoration: none;
}

.post-card-editorial h3 a:hover {
    color: #bfdbfe;
}

.post-card-topo .tag {
    text-decoration: none;
}

@media (max-width: 1180px) {
    .busca-topo {
        width: 170px;
    }

    .busca-topo input {
        padding-left: 11px;
        font-size: 12px;
    }
}

@media (max-width: 1020px) {
    .busca-topo {
        width: 145px;
    }
}

@media (max-width: 900px) {
    .topo-conteudo {
        flex-wrap: wrap;
        gap: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .busca-topo {
        order: 3;
        width: 100%;
        height: 44px;
    }

    .busca-topo input {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .busca-pagina-form {
        grid-template-columns: 1fr;
    }

    .busca-pagina-form .botao {
        width: 100%;
    }

    .busca-sem-resultados {
        padding: 40px 20px;
    }
}

/* ==========================================================
   COMPARADOR DE PRODUTOS
   ========================================================== */

.comparador-barra{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:30px;
    padding:18px 22px;
    border-radius:14px;
    background:#1c1f2b;
    border:1px solid rgba(255,255,255,.08);
}

.comparador-barra strong{
    display:block;
    font-size:1.1rem;
    margin-bottom:4px;
}

#comparador-contador{
    color:#b9bfd1;
    font-size:.95rem;
}

.comparador-mensagem{
    min-height:24px;
    color:#ffb454;
    font-weight:600;
    margin-bottom:18px;
}

.produto-comparar-opcao{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:12px;
    font-size:.9rem;
    cursor:pointer;
}

.produto-comparar-checkbox{
    width:18px;
    height:18px;
    cursor:pointer;
}

.produto-card-selecionado{
    border:2px solid #6d8cff;
    box-shadow:0 0 25px rgba(109,140,255,.35);
    transform:translateY(-4px);
    transition:.25s;
}

.comparador-tabela-wrapper{
    overflow-x:auto;
    border-radius:18px;
}

.comparador-tabela{
    width:100%;
    border-collapse:collapse;
    min-width:850px;
}

.comparador-tabela th{
    background:#202534;
    padding:16px;
    text-align:left;
}

.comparador-tabela td{
    padding:18px;
    border-top:1px solid rgba(255,255,255,.08);
    vertical-align:top;
}

.comparador-imagem{
    width:170px;
    max-width:100%;
    display:block;
    margin:auto;
}

.comparador-placeholder{
    width:170px;
    height:170px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#2d3142;
    border-radius:12px;
    font-size:3rem;
    margin:auto;
}

.comparador-preco{
    color:#4fd17b;
    font-size:1.25rem;
}

.comparador-observacao,
.comparador-aviso{
    margin-top:30px;
    padding:22px;
    border-radius:14px;
    background:#1c1f2b;
}

@media (max-width:768px){

    .comparador-barra{
        flex-direction:column;
        align-items:flex-start;
    }

    .comparador-barra .botao{
        width:100%;
        text-align:center;
    }

}

/* ==========================================================
   COMPARADOR EDITORIAL DE PRODUTOS
   ========================================================== */

.comparador-introducao {
    margin-bottom: 24px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
}

.comparador-introducao h2 {
    margin-top: 12px;
    margin-bottom: 8px;
}

.comparador-introducao p {
    max-width: 760px;
    margin-bottom: 0;
}

.comparador-produto-cabecalho {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.comparador-produto-nome {
    display: block;
    font-weight: 700;
    line-height: 1.4;
}

.comparador-selo-cabecalho {
    font-size: 0.74rem;
    white-space: normal;
}

.comparador-imagem-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.comparador-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 150px;
    min-height: 150px;
    padding: 20px;
    border: 1px dashed rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
}

.comparador-placeholder span {
    font-size: 2.5rem;
}

.comparador-placeholder small {
    color: #9da5bd;
}

.comparador-linha-destaque td {
    background: rgba(255, 209, 102, 0.035);
}

.comparador-linha-editorial td {
    background: rgba(139, 92, 246, 0.035);
}

.comparador-nota {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    min-width: 82px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 209, 102, 0.24);
    border-radius: 12px;
    background: rgba(255, 209, 102, 0.08);
}

.comparador-nota strong {
    color: #ffd166;
    font-size: 1.6rem;
    line-height: 1;
}

.comparador-nota span {
    margin-left: 3px;
    color: #b9bfd1;
    font-size: 0.9rem;
}

.comparador-selo-editorial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 12px;
    border: 1px solid rgba(139, 92, 246, 0.24);
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.08);
    line-height: 1.4;
}

.comparador-selo-editorial > span {
    font-size: 1.1rem;
}

.comparador-melhor-para {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}

.comparador-melhor-para > span {
    flex: 0 0 auto;
}

.comparador-melhor-para p {
    margin: 0;
    line-height: 1.55;
}

.comparador-nao-informado,
.comparador-nao-avaliado {
    color: #8e96aa;
    font-size: 0.9rem;
    font-style: italic;
}

.comparador-descricao {
    min-width: 220px;
    line-height: 1.6;
}

.comparador-tabela .botao {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .comparador-introducao {
        padding: 20px;
    }

    .comparador-imagem-wrapper {
        min-height: 140px;
    }

    .comparador-placeholder {
        min-width: 120px;
        min-height: 120px;
    }

    .comparador-produto-nome {
        min-width: 150px;
    }

    .comparador-selo-editorial {
        min-width: 140px;
    }

    .comparador-melhor-para {
        min-width: 180px;
    }
}


/* ==========================================================
   DESIGN SYSTEM — COMPONENTES EDITORIAIS DE PRODUTO
   ========================================================== */

/* Breadcrumb */

.ds-breadcrumb {
    margin: 0 0 24px;
}

.ds-breadcrumb-lista {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #9da5bd;
    font-size: 0.88rem;
}

.ds-breadcrumb-item {
    min-width: 0;
}

.ds-breadcrumb-item a {
    color: #b9bfd1;
    text-decoration: none;
    transition:
        color 0.2s ease,
        text-decoration-color 0.2s ease;
}

.ds-breadcrumb-item a:hover,
.ds-breadcrumb-item a:focus-visible {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.ds-breadcrumb-separador {
    color: #626a80;
    user-select: none;
}

.ds-breadcrumb-atual {
    max-width: 460px;
    overflow: hidden;
    color: #ffffff;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* Selo editorial */

.ds-selo-editorial {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 9px 13px;
    border: 1px solid rgba(139, 92, 246, 0.28);
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.10);
    color: #ede9fe;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.ds-selo-editorial-icone {
    color: #ffd166;
    font-size: 0.95rem;
    line-height: 1;
}

.ds-selo-editorial-texto {
    display: block;
}


/* Nota do editor */

.ds-nota-editor {
    padding: 20px;
    border: 1px solid rgba(255, 209, 102, 0.22);
    border-radius: 16px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 209, 102, 0.09),
            rgba(255, 255, 255, 0.025)
        );
}

.ds-nota-editor-cabecalho {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.ds-nota-editor-titulo {
    color: #f4f5f8;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ds-nota-editor-valor {
    display: flex;
    align-items: baseline;
    flex: 0 0 auto;
}

.ds-nota-editor-valor strong {
    color: #ffd166;
    font-size: 2rem;
    line-height: 1;
}

.ds-nota-editor-valor span {
    margin-left: 4px;
    color: #9da5bd;
    font-size: 0.9rem;
}

.ds-nota-editor-barra {
    position: relative;
    width: 100%;
    height: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.ds-nota-editor-progresso {
    display: block;
    height: 100%;
    border-radius: inherit;
    background:
        linear-gradient(
            90deg,
            #8b5cf6,
            #ffd166
        );
}

.ds-nota-editor-classificacao {
    margin: 12px 0 0;
    color: #c8cddd;
    font-size: 0.9rem;
    line-height: 1.5;
}


/* Responsividade */

@media (max-width: 600px) {
    .ds-breadcrumb-atual {
        max-width: 210px;
    }

    .ds-nota-editor {
        padding: 18px;
    }

    .ds-nota-editor-cabecalho {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .ds-nota-editor-valor strong {
        font-size: 1.8rem;
    }
}

/* =========================================================
   Ranking editorial de produtos
   ========================================================= */

.produto-ranking-card {
    isolation: isolate;
}

.produto-ranking-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(57, 255, 136, 0.12),
            transparent 42%
        );
    transition: opacity 0.22s ease;
}

.produto-ranking-card:hover::before {
    opacity: 1;
}

.produto-ranking-card-campeao {
    border-color: rgba(255, 207, 64, 0.5);
    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.34),
        0 0 32px rgba(255, 207, 64, 0.08);
}

.produto-ranking-card-campeao:hover {
    border-color: rgba(255, 207, 64, 0.8);
    box-shadow:
        0 26px 65px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 207, 64, 0.14);
}

.produto-ranking-card-segundo {
    border-color: rgba(203, 213, 225, 0.32);
}

.produto-ranking-card-terceiro {
    border-color: rgba(205, 127, 50, 0.34);
}

.ranking-posicao {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid transparent;
    border-radius: 999px;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
    font-size: 13px;
    line-height: 1;
}

.ranking-posicao span {
    font-size: 18px;
}

.ranking-posicao strong {
    font-weight: 900;
    letter-spacing: 0.2px;
}

.ranking-posicao-ouro {
    color: #fff3bd;
    background:
        linear-gradient(
            135deg,
            rgba(120, 83, 10, 0.94),
            rgba(55, 39, 6, 0.96)
        );
    border-color: rgba(255, 207, 64, 0.52);
}

.ranking-posicao-prata {
    color: #f1f5f9;
    background:
        linear-gradient(
            135deg,
            rgba(71, 85, 105, 0.94),
            rgba(30, 41, 59, 0.96)
        );
    border-color: rgba(203, 213, 225, 0.42);
}

.ranking-posicao-bronze {
    color: #fed7aa;
    background:
        linear-gradient(
            135deg,
            rgba(124, 62, 22, 0.94),
            rgba(67, 33, 13, 0.96)
        );
    border-color: rgba(205, 127, 50, 0.52);
}

.ranking-posicao-comum {
    color: #c4b5fd;
    background: rgba(35, 25, 66, 0.94);
    border-color: rgba(139, 92, 246, 0.35);
}

.ranking-categoria {
    background: rgba(8, 10, 18, 0.88);
    backdrop-filter: blur(12px);
}

.produto-ranking-imagem-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.produto-ranking-identidade {
    margin-bottom: 18px;
}

.produto-ranking-selo {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    margin-bottom: 13px;
    padding: 7px 11px;
    color: var(--green);
    background: rgba(57, 255, 136, 0.09);
    border: 1px solid rgba(57, 255, 136, 0.22);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.produto-ranking-identidade h3 {
    margin-bottom: 12px;
}

.produto-ranking-identidade h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.produto-ranking-identidade h3 a:hover {
    color: var(--green);
}

.produto-ranking-marca {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    font-size: 14px;
}

.produto-ranking-marca span {
    color: var(--muted);
}

.produto-ranking-marca strong {
    color: var(--text);
}

.produto-ranking-nota {
    margin-bottom: 17px;
    padding: 15px;
    background:
        linear-gradient(
            135deg,
            rgba(139, 92, 246, 0.12),
            rgba(0, 212, 255, 0.07)
        );
    border: 1px solid rgba(139, 92, 246, 0.24);
    border-radius: 16px;
}

.produto-ranking-nota-cabecalho {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.produto-ranking-nota-cabecalho > div {
    display: grid;
    gap: 2px;
}

.produto-ranking-nota-cabecalho > div > span {
    color: var(--text);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.45px;
}

.produto-ranking-nota-cabecalho small {
    color: var(--muted);
    font-size: 11px;
}

.produto-ranking-nota-cabecalho > strong {
    color: #ddd6fe;
    font-family: 'Rajdhani', sans-serif;
    font-size: 29px;
    line-height: 1;
    white-space: nowrap;
}

.produto-ranking-nota-cabecalho > strong span {
    color: var(--muted);
    font-size: 15px;
}

.produto-ranking-medidor {
    display: block;
    width: 100%;
    height: 10px;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    accent-color: var(--green);
}

.produto-ranking-medidor::-webkit-meter-bar {
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.produto-ranking-medidor::-webkit-meter-optimum-value {
    border-radius: 999px;
    background:
        linear-gradient(
            90deg,
            var(--green),
            var(--blue)
        );
}

.produto-ranking-medidor::-webkit-meter-suboptimum-value {
    border-radius: 999px;
    background:
        linear-gradient(
            90deg,
            #facc15,
            #fb923c
        );
}

.produto-ranking-medidor::-moz-meter-bar {
    border-radius: 999px;
    background:
        linear-gradient(
            90deg,
            var(--green),
            var(--blue)
        );
}

.produto-ranking-melhor-para {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 17px;
    padding: 13px 14px;
    background: rgba(0, 212, 255, 0.07);
    border: 1px solid rgba(0, 212, 255, 0.18);
    border-radius: 14px;
}

.produto-ranking-melhor-para > span {
    flex: 0 0 auto;
    font-size: 20px;
    line-height: 1.2;
}

.produto-ranking-melhor-para p {
    display: grid;
    gap: 3px;
    margin: 0;
}

.produto-ranking-melhor-para small {
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.45px;
    text-transform: uppercase;
}

.produto-ranking-melhor-para strong {
    color: var(--text);
    font-size: 14px;
    line-height: 1.35;
}

.produto-card-corpo .produto-ranking-descricao {
    flex: 1;
    margin-bottom: 0;
}

.produto-card-preco small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.35;
}

.produto-ranking-acoes {
    margin-top: 18px;
}

.produto-ranking-acoes .botao {
    width: 100%;
}

@media (max-width: 640px) {
    .ranking-posicao {
        min-height: 31px;
        padding: 6px 10px;
        font-size: 12px;
    }

    .ranking-posicao span {
        font-size: 16px;
    }

    .produto-ranking-nota-cabecalho > strong {
        font-size: 26px;
    }

    .produto-ranking-melhor-para {
        padding: 12px;
    }
}

/* =========================================================
   Fase 3.3 - Página premium do ranking editorial
   ========================================================= */

.ranking-hero {
    position: relative;
    overflow: hidden;
}

.ranking-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.25rem;
    color: var(--texto-suave, #aeb6c9);
    font-size: 0.88rem;
}

.ranking-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.ranking-breadcrumb a:hover {
    color: var(--verde, #39ff88);
}

.ranking-breadcrumb span[aria-current="page"] {
    color: var(--texto, #ffffff);
    font-weight: 700;
}

.ranking-campeao-secao {
    padding-top: 3.5rem;
    padding-bottom: 2rem;
}

.ranking-campeao {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    padding: clamp(1.5rem, 4vw, 3rem);
    overflow: hidden;
    border: 1px solid rgba(57, 255, 136, 0.24);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 12% 10%,
            rgba(57, 255, 136, 0.13),
            transparent 35%
        ),
        radial-gradient(
            circle at 92% 88%,
            rgba(135, 88, 255, 0.14),
            transparent 38%
        ),
        rgba(16, 19, 29, 0.92);
    box-shadow:
        0 26px 70px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ranking-campeao::after {
    content: "CAMPEÃO";
    position: absolute;
    right: -1.2rem;
    bottom: -1rem;
    z-index: 0;
    color: rgba(255, 255, 255, 0.025);
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
    pointer-events: none;
}

.ranking-campeao-imagem,
.ranking-campeao-conteudo {
    position: relative;
    z-index: 1;
}

.ranking-campeao-imagem {
    min-width: 0;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.035);
}

.ranking-campeao-imagem a {
    display: block;
}

.ranking-campeao-imagem img {
    display: block;
    width: 100%;
    height: clamp(260px, 34vw, 430px);
    object-fit: contain;
    border-radius: 18px;
}

.ranking-campeao-posicao {
    position: absolute;
    top: 1.7rem;
    left: 1.7rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(255, 217, 102, 0.45);
    border-radius: 999px;
    color: #fff5bc;
    background: rgba(23, 19, 8, 0.88);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
    font-size: 0.84rem;
    font-weight: 800;
}

.ranking-campeao-placeholder {
    display: flex;
    min-height: clamp(260px, 34vw, 430px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            rgba(57, 255, 136, 0.08),
            rgba(135, 88, 255, 0.1)
        );
}

.ranking-campeao-placeholder span {
    font-size: 4rem;
}

.ranking-campeao-placeholder small {
    color: var(--texto-suave, #aeb6c9);
}

.ranking-campeao-conteudo h2 {
    max-width: 780px;
    margin-top: 0.7rem;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 5vw, 3.7rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.ranking-campeao-categoria {
    margin-top: 1.25rem;
    margin-bottom: 0;
    color: var(--texto-suave, #aeb6c9);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ranking-campeao-selo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.25rem;
    padding: 0.62rem 0.85rem;
    border: 1px solid rgba(135, 88, 255, 0.35);
    border-radius: 12px;
    color: #dcd0ff;
    background: rgba(135, 88, 255, 0.1);
    font-size: 0.9rem;
    font-weight: 800;
}

.ranking-campeao-nota {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.ranking-campeao-nota > div {
    display: inline-flex;
    align-items: baseline;
    gap: 0.2rem;
}

.ranking-campeao-nota strong {
    color: var(--verde, #39ff88);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.ranking-campeao-nota span {
    color: var(--texto-suave, #aeb6c9);
    font-weight: 800;
}

.ranking-campeao-nota p {
    max-width: 170px;
    margin: 0;
    color: var(--texto-suave, #aeb6c9);
    font-size: 0.88rem;
    line-height: 1.45;
}

.ranking-campeao-melhor-para {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin: 1.25rem 0;
    padding: 1rem 1.1rem;
    border-left: 3px solid var(--verde, #39ff88);
    border-radius: 0 14px 14px 0;
    background: rgba(57, 255, 136, 0.06);
}

.ranking-campeao-melhor-para span {
    color: var(--texto-suave, #aeb6c9);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.ranking-campeao-melhor-para strong {
    color: var(--texto, #ffffff);
    font-size: 1.08rem;
}

.ranking-campeao-descricao {
    max-width: 720px;
    margin-top: 1.2rem;
    color: var(--texto-suave, #aeb6c9);
    line-height: 1.75;
}

.ranking-classificacao-secao {
    padding-top: 3rem;
}

.ranking-resumo {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 3.2rem;
}

.ranking-resumo-card {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
}

.ranking-resumo-card > span {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    border-radius: 14px;
    background: rgba(57, 255, 136, 0.08);
    font-size: 1.45rem;
}

.ranking-resumo-card strong {
    display: block;
    overflow-wrap: anywhere;
    color: var(--texto, #ffffff);
    font-size: 1.08rem;
}

.ranking-resumo-card p {
    margin: 0.25rem 0 0;
    color: var(--texto-suave, #aeb6c9);
    font-size: 0.84rem;
}

.ranking-grid {
    align-items: stretch;
}

.ranking-vazio {
    max-width: 760px;
    margin-inline: auto;
    padding: clamp(2rem, 5vw, 4rem);
    text-align: center;
}

.ranking-vazio-icone {
    display: block;
    margin-bottom: 1rem;
    font-size: 3.5rem;
}

.ranking-vazio .botoes {
    justify-content: center;
}

.ranking-metodologia-secao {
    position: relative;
}

.ranking-metodologia {
    padding: clamp(1.6rem, 4vw, 3rem);
    border: 1px solid rgba(135, 88, 255, 0.22);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at top right,
            rgba(135, 88, 255, 0.12),
            transparent 34%
        ),
        rgba(16, 19, 29, 0.75);
}

.ranking-metodologia-intro {
    max-width: 800px;
    margin-bottom: 2.4rem;
}

.ranking-metodologia-intro h2 {
    margin-top: 0.9rem;
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: -0.035em;
}

.ranking-metodologia-intro p {
    margin-bottom: 0;
    color: var(--texto-suave, #aeb6c9);
    line-height: 1.75;
}

.ranking-metodologia-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.ranking-metodologia-card {
    padding: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.ranking-metodologia-card > span {
    display: block;
    margin-bottom: 0.9rem;
    font-size: 1.8rem;
}

.ranking-metodologia-card h3 {
    margin-bottom: 0.65rem;
    font-size: 1.03rem;
}

.ranking-metodologia-card p {
    margin: 0;
    color: var(--texto-suave, #aeb6c9);
    font-size: 0.89rem;
    line-height: 1.65;
}

.ranking-transparencia {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(57, 255, 136, 0.16);
    border-radius: 14px;
    background: rgba(57, 255, 136, 0.045);
}

.ranking-transparencia strong {
    color: var(--verde, #39ff88);
}

.ranking-transparencia p {
    margin: 0;
    color: var(--texto-suave, #aeb6c9);
    line-height: 1.6;
}

.ranking-navegacao {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(1.5rem, 4vw, 2.7rem);
    border: 1px solid rgba(57, 255, 136, 0.2);
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            rgba(57, 255, 136, 0.08),
            rgba(135, 88, 255, 0.07)
        );
}

.ranking-navegacao h2 {
    margin-top: 0.8rem;
    margin-bottom: 0.7rem;
}

.ranking-navegacao p {
    max-width: 650px;
    margin-bottom: 0;
    color: var(--texto-suave, #aeb6c9);
}

.ranking-navegacao .botoes {
    flex: 0 0 auto;
    margin-top: 0;
}

@media (max-width: 1050px) {
    .ranking-campeao {
        grid-template-columns: 1fr;
    }

    .ranking-campeao-imagem {
        max-width: 680px;
        width: 100%;
        margin-inline: auto;
    }

    .ranking-metodologia-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ranking-navegacao {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .ranking-campeao-secao {
        padding-top: 2.5rem;
    }

    .ranking-campeao {
        padding: 1rem;
        border-radius: 21px;
    }

    .ranking-campeao-imagem {
        padding: 0.8rem;
        border-radius: 18px;
    }

    .ranking-campeao-posicao {
        top: 1.2rem;
        left: 1.2rem;
    }

    .ranking-campeao-nota {
        align-items: flex-start;
        flex-direction: column;
    }

    .ranking-resumo {
        grid-template-columns: 1fr;
        margin-bottom: 2.3rem;
    }

    .ranking-metodologia {
        padding: 1.2rem;
        border-radius: 21px;
    }

    .ranking-metodologia-grid {
        grid-template-columns: 1fr;
    }

    .ranking-transparencia {
        flex-direction: column;
    }

    .ranking-navegacao {
        border-radius: 20px;
    }

    .ranking-navegacao .botoes,
    .ranking-navegacao .botao {
        width: 100%;
    }
}

/* ==========================================================
   NAVEGAÇÃO EDITORIAL
   ========================================================== */

.navegacao-editorial-secao {
    padding-top: 0;
    padding-bottom: 3rem;
}

.navegacao-editorial {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.navegacao-editorial-bloco {
    padding: 1.8rem;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            rgba(135,88,255,.06),
            rgba(57,255,136,.04)
        );
}

.navegacao-editorial-cabecalho {
    display:flex;
    align-items:flex-start;
    gap:1rem;
    margin-bottom:1.5rem;
}

.navegacao-editorial-icone{
    width:58px;
    height:58px;
    flex:0 0 58px;
    display:grid;
    place-items:center;
    border-radius:16px;
    background:rgba(135,88,255,.12);
    font-size:1.8rem;
}

.navegacao-editorial-cabecalho h2{
    margin:.4rem 0 .6rem;
}

.navegacao-editorial-cabecalho p{
    margin:0;
    color:var(--texto-suave,#aeb6c9);
    line-height:1.7;
}

.navegacao-editorial-links{
    display:flex;
    flex-wrap:wrap;
    gap:.85rem;
}

.navegacao-editorial-link{
    display:inline-flex;
    align-items:center;
    gap:.65rem;

    padding:.95rem 1.2rem;

    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;

    background:rgba(255,255,255,.03);

    color:var(--texto,#fff);

    text-decoration:none;

    transition:
        .25s ease;
}

.navegacao-editorial-link:hover{
    border-color:rgba(57,255,136,.45);

    background:rgba(57,255,136,.08);

    transform:translateY(-2px);
}

.navegacao-editorial-link.ativo{

    border-color:var(--verde,#39ff88);

    background:rgba(57,255,136,.10);

    font-weight:700;
}

.navegacao-editorial-vazio{
    margin:0;
    color:var(--texto-suave,#aeb6c9);
}

.navegacao-editorial-transparencia{

    display:flex;
    gap:1rem;

    padding:1.2rem;

    border-left:4px solid var(--verde,#39ff88);

    border-radius:0 18px 18px 0;

    background:rgba(57,255,136,.05);
}

.navegacao-editorial-transparencia span{
    font-size:1.6rem;
}

.navegacao-editorial-transparencia strong{
    display:block;
    margin-bottom:.4rem;
}

.navegacao-editorial-transparencia p{

    margin:0;

    color:var(--texto-suave,#aeb6c9);

    line-height:1.7;
}

@media (max-width:760px){

    .navegacao-editorial-cabecalho{

        flex-direction:column;
    }

    .navegacao-editorial-links{

        flex-direction:column;
    }

    .navegacao-editorial-link{

        width:100%;
        justify-content:flex-start;
    }

    .navegacao-editorial-transparencia{

        flex-direction:column;
    }

}

/* ==========================================================
   GUIAS DE COMPRA
   ========================================================== */

.guias-hero {
    position: relative;
    overflow: hidden;
}

.guia-destaque-secao {
    padding-top: 3.5rem;
    padding-bottom: 2rem;
}

.guia-destaque {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid rgba(135, 88, 255, 0.24);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at top right,
            rgba(135, 88, 255, 0.13),
            transparent 38%
        ),
        rgba(16, 19, 29, 0.9);
}

.guia-destaque-imagem {
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.035);
}

.guia-destaque-imagem a {
    display: block;
}

.guia-destaque-imagem img {
    display: block;
    width: 100%;
    height: clamp(260px, 34vw, 430px);
    object-fit: cover;
}

.guia-imagem-placeholder {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background:
        linear-gradient(
            135deg,
            rgba(57, 255, 136, 0.08),
            rgba(135, 88, 255, 0.1)
        );
}

.guia-imagem-placeholder span {
    font-size: 3.8rem;
}

.guia-imagem-placeholder small {
    color: var(--texto-suave, #aeb6c9);
}

.guia-destaque-conteudo h2 {
    margin: 0.85rem 0 1rem;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.guia-destaque-conteudo h2 a {
    color: inherit;
    text-decoration: none;
}

.guia-destaque-conteudo h2 a:hover {
    color: var(--verde, #39ff88);
}

.guia-destaque-conteudo > p {
    color: var(--texto-suave, #aeb6c9);
    line-height: 1.75;
}

.guia-categoria {
    margin: 1rem 0 0;
    color: var(--verde, #39ff88);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.guia-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.2rem;
    margin: 1.25rem 0;
    color: var(--texto-suave, #aeb6c9);
    font-size: 0.84rem;
}

.guias-listagem-secao {
    padding-top: 3rem;
}

.guias-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.guia-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.035);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.guia-card:hover {
    transform: translateY(-4px);
    border-color: rgba(57, 255, 136, 0.28);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.25);
}

.guia-card-imagem {
    display: block;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}

.guia-card-imagem img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.guia-card:hover .guia-card-imagem img {
    transform: scale(1.035);
}

.guia-card-corpo {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.35rem;
}

.guia-card-corpo h3 {
    margin: 0.95rem 0 0.75rem;
    font-size: 1.35rem;
    line-height: 1.25;
}

.guia-card-corpo h3 a {
    color: inherit;
    text-decoration: none;
}

.guia-card-corpo h3 a:hover {
    color: var(--verde, #39ff88);
}

.guia-card-corpo > p {
    flex: 1;
    color: var(--texto-suave, #aeb6c9);
    line-height: 1.65;
}

.guia-card-corpo .botao {
    width: 100%;
    margin-top: 0.8rem;
}

.guias-vazio {
    max-width: 760px;
    margin-inline: auto;
    padding: clamp(2rem, 5vw, 4rem);
    text-align: center;
}

.guias-vazio > span {
    display: block;
    margin-bottom: 1rem;
    font-size: 3.8rem;
}

.guias-vazio .botoes {
    justify-content: center;
}

@media (max-width: 1050px) {
    .guia-destaque {
        grid-template-columns: 1fr;
    }

    .guia-destaque-imagem {
        max-width: 720px;
        width: 100%;
        margin-inline: auto;
    }

    .guias-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .guia-destaque-secao {
        padding-top: 2.5rem;
    }

    .guia-destaque {
        padding: 1rem;
        border-radius: 21px;
    }

    .guia-destaque-imagem {
        border-radius: 17px;
    }

    .guia-destaque-imagem img {
        height: 260px;
    }

    .guias-grid {
        grid-template-columns: 1fr;
    }

    .guia-card-imagem img {
        height: 210px;
    }

    .guia-meta {
        flex-direction: column;
        gap: 0.35rem;
    }
}

/* ==========================================================
   DETALHE DO GUIA DE COMPRA
   ========================================================== */

.guia-detalhe-hero {
    padding-bottom: 3rem;
}

.guia-detalhe-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.guia-detalhe-hero-conteudo h1 {
    margin: 1rem 0;
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.guia-detalhe-resumo {
    max-width: 760px;
    color: var(--texto-suave, #aeb6c9);
    font-size: 1.08rem;
    line-height: 1.75;
}

.guia-detalhe-hero-imagem {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.035);
}

.guia-detalhe-hero-imagem img {
    display: block;
    width: 100%;
    min-height: 360px;
    object-fit: cover;
}

.guia-conteudo-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2rem;
    align-items: start;
}

.guia-conteudo-principal {
    display: grid;
    gap: 1.4rem;
}

.guia-conteudo-bloco {
    padding: clamp(1.4rem, 4vw, 2.4rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.035);
}

.guia-conteudo-bloco h2 {
    margin: 0.8rem 0 1rem;
    font-size: clamp(1.65rem, 3vw, 2.3rem);
}

.guia-conteudo-icone {
    display: block;
    margin-bottom: 0.7rem;
    font-size: 1.8rem;
}

.guia-texto {
    color: var(--texto-suave, #aeb6c9);
    line-height: 1.8;
}

.guia-texto p:last-child {
    margin-bottom: 0;
}

.guia-conteudo-alerta {
    border-color: rgba(255, 190, 70, 0.24);
    background: rgba(255, 190, 70, 0.04);
}

.guia-recomendacao-editorial {
    border-color: rgba(57, 255, 136, 0.22);
    background:
        linear-gradient(
            135deg,
            rgba(57, 255, 136, 0.07),
            rgba(135, 88, 255, 0.05)
        );
}

.guia-detalhe-lateral {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 1rem;
}

.guia-lateral-card,
.guia-lateral-transparencia {
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
}

.guia-lateral-card h2 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.guia-lateral-card nav {
    display: grid;
    gap: 0.55rem;
}

.guia-lateral-card nav a,
.guia-lateral-link {
    display: block;
    padding: 0.8rem 0.9rem;
    border-radius: 12px;
    color: var(--texto-suave, #aeb6c9);
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.guia-lateral-card nav a:hover,
.guia-lateral-link:hover {
    color: var(--verde, #39ff88);
    background: rgba(57, 255, 136, 0.07);
}

.guia-lateral-transparencia {
    border-left: 3px solid var(--verde, #39ff88);
}

.guia-lateral-transparencia strong {
    color: var(--verde, #39ff88);
}

.guia-lateral-transparencia p {
    margin: 0.55rem 0 0;
    color: var(--texto-suave, #aeb6c9);
    font-size: 0.86rem;
    line-height: 1.6;
}

.guia-produtos-secao .vitrine-grid {
    align-items: stretch;
}

@media (max-width: 980px) {
    .guia-detalhe-hero-grid,
    .guia-conteudo-layout {
        grid-template-columns: 1fr;
    }

    .guia-detalhe-lateral {
        position: static;
    }
}

@media (max-width: 700px) {
    .guia-detalhe-hero {
        padding-bottom: 2rem;
    }

    .guia-detalhe-hero-imagem img {
        min-height: 260px;
    }

    .guia-conteudo-bloco {
        border-radius: 18px;
    }
}

/* =========================================================
   CENTRAL EDITORIAL
========================================================= */

.editorial-dashboard {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(57, 255, 136, 0.1),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 25%,
            rgba(139, 92, 246, 0.12),
            transparent 34%
        ),
        var(--bg);
}

.editorial-hero {
    padding: clamp(3.5rem, 7vw, 6rem) 0 2.5rem;
    border-bottom: 1px solid var(--border);
}

.editorial-eyebrow,
.editorial-kicker {
    display: inline-block;
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.editorial-hero h1 {
    max-width: 850px;
    margin: 0.8rem 0 1rem;
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 0.98;
}

.editorial-hero p {
    max-width: 760px;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
}

.editorial-section {
    padding: 2.5rem 0;
}

.editorial-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.editorial-section-heading h2 {
    margin: 0.35rem 0 0;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
}

.editorial-link {
    color: var(--green);
    font-weight: 700;
}

.editorial-metrics-grid,
.editorial-priority-grid,
.editorial-source-grid {
    display: grid;
    gap: 1rem;
}

.editorial-metrics-grid {
    grid-template-columns:
        repeat(auto-fit, minmax(170px, 1fr));
}

.editorial-priority-grid {
    grid-template-columns:
        repeat(auto-fit, minmax(220px, 1fr));
}

.editorial-source-grid {
    grid-template-columns:
        repeat(auto-fit, minmax(220px, 1fr));
}

.editorial-metric-card,
.editorial-priority-card,
.editorial-source-card {
    padding: 1.35rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(21, 26, 46, 0.82);
}

.editorial-metric-label,
.editorial-source-card span {
    display: block;
    color: var(--muted);
}

.editorial-metric-card strong,
.editorial-priority-card strong {
    display: block;
    margin-top: 0.5rem;
    color: var(--text);
    font-size: 2rem;
}

.editorial-queue {
    display: grid;
    gap: 1rem;
}

.editorial-queue-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(17, 22, 41, 0.9);
}

.editorial-score {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border: 1px solid rgba(57, 255, 136, 0.45);
    border-radius: 18px;
    color: var(--green);
    background: rgba(57, 255, 136, 0.08);
    font-size: 1.3rem;
    font-weight: 800;
}

.editorial-queue-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    color: var(--muted);
    font-size: 0.85rem;
}

.editorial-queue-content h3 {
    margin: 0.55rem 0;
    font-size: 1.2rem;
}

.editorial-queue-content p {
    margin: 0;
    color: var(--muted);
}

.editorial-queue-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.editorial-queue-actions a {
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
}

.editorial-queue-actions a:hover {
    border-color: var(--green);
    color: var(--green);
}

.editorial-empty {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: center;
}

@media (max-width: 760px) {
    .editorial-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .editorial-queue-item {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .editorial-queue-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .editorial-queue-actions a {
        flex: 1 1 160px;
    }
}

@media (max-width: 520px) {
    .editorial-queue-item {
        grid-template-columns: 1fr;
    }

    .editorial-score {
        width: 56px;
        height: 56px;
    }

    .editorial-queue-actions {
        grid-column: auto;
        flex-direction: column;
    }
}

/* =========================================================
   RADAR DE TENDÊNCIAS
========================================================= */

.editorial-trends-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.editorial-trend-card {
    padding: 1.35rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(57, 255, 136, 0.05),
            rgba(139, 92, 246, 0.06)
        ),
        rgba(17, 22, 41, 0.92);
}

.editorial-trend-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.editorial-trend-category {
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.editorial-trend-card h3 {
    margin: 0.35rem 0 0;
    font-size: 1.35rem;
}

.editorial-trend-priority {
    padding: 0.35rem 0.65rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.editorial-trend-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.editorial-trend-metrics div {
    padding: 0.85rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(8, 10, 18, 0.45);
}

.editorial-trend-metrics strong {
    display: block;
    color: var(--text);
    font-size: 1.4rem;
}

.editorial-trend-metrics span,
.editorial-trend-updated {
    color: var(--muted);
    font-size: 0.82rem;
}

.editorial-trend-updated {
    margin: 1rem 0 0;
}

/* =========================================================
   PRÉ-VISUALIZAÇÃO ADMINISTRATIVA DE POSTS
   ========================================================= */

.post-preview-bar {
    position: relative;
    z-index: 20;

    padding: 0.85rem 0;

    border-bottom: 1px solid rgba(255, 193, 7, 0.45);

    background: rgba(35, 27, 5, 0.97);
}

.post-preview-bar-conteudo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.post-preview-bar-conteudo > div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.post-preview-bar strong {
    color: #ffd166;
    font-size: 0.95rem;
}

.post-preview-bar span {
    color: var(--muted);
    font-size: 0.86rem;
}

.post-preview-banner {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;

    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;

    border: 1px solid rgba(255, 193, 7, 0.55);
    border-radius: 12px;

    background: rgba(255, 193, 7, 0.09);
}

.post-preview-banner strong {
    color: #ffd166;
    font-size: 1rem;
}

.post-preview-banner span {
    color: var(--muted);
    line-height: 1.6;
}

.tag-amarela {
    border-color: rgba(255, 193, 7, 0.45);
    background: rgba(255, 193, 7, 0.12);
    color: #ffd166;
}

@media (max-width: 700px) {
    .post-preview-bar-conteudo {
        align-items: stretch;
        flex-direction: column;
    }

    .post-preview-bar-conteudo .botao {
        width: 100%;
        text-align: center;
    }
}

/* =========================================================
   ARTIGO — HERO, BREADCRUMB E RELACIONADOS
   ========================================================= */

.artigo-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;

    margin-bottom: 1.25rem;

    color: var(--muted);
    font-size: 0.92rem;
}

.artigo-breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.artigo-breadcrumb a:hover {
    color: var(--green);
}

.artigo-breadcrumb span {
    color: rgba(255, 255, 255, 0.35);
}

.artigo-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;

    margin-bottom: 1.1rem;
}

.artigo-hero-resumo {
    max-width: 900px;
    margin-top: 1rem;

    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.22rem);
    line-height: 1.75;
}

.hero-artigo {
    padding-top: 54px;
    padding-bottom: 48px;
}

.hero-artigo h1 {
    max-width: 980px;
    margin-bottom: 0;

    font-size: clamp(2.35rem, 5vw, 4.35rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.artigo-meta {
    margin-top: 1.6rem;
}

.artigo-figura {
    margin: 0 0 1.8rem;
}

.artigo-imagem {
    display: block;
    width: 100%;
    max-height: 500px;
    margin-bottom: 0;

    object-fit: cover;

    border: 1px solid var(--border);
    border-radius: 18px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.28);
}

.post-relacionado-imagem {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 1rem;

    object-fit: cover;

    border: 1px solid var(--border);
    border-radius: 14px;
}

.artigo-conteudo {
    max-width: 820px;
    margin-inline: auto;
}

.artigo-conteudo h2 {
    position: relative;

    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-left: 1rem;

    font-size: clamp(1.55rem, 3vw, 2.15rem);
    line-height: 1.25;
}

.artigo-conteudo h2::before {
    content: "";

    position: absolute;
    top: 0.15em;
    bottom: 0.15em;
    left: 0;

    width: 4px;

    border-radius: 999px;
    background: linear-gradient(
        180deg,
        var(--green),
        var(--purple)
    );
}

.artigo-conteudo p {
    margin-bottom: 1.25rem;

    font-size: 1.05rem;
    line-height: 1.85;
}

.artigo-conteudo a {
    color: var(--green);
    font-weight: 700;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.artigo-conteudo a:hover {
    color: #7dffb0;
}

.artigo-conteudo ul,
.artigo-conteudo ol {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
}

.artigo-conteudo li {
    margin-bottom: 0.55rem;
    line-height: 1.7;
}

@media (max-width: 760px) {
    .hero-artigo {
        padding-top: 38px;
        padding-bottom: 36px;
    }

    .artigo-breadcrumb {
        font-size: 0.82rem;
    }

    .artigo-hero-tags {
        margin-bottom: 0.9rem;
    }

    .artigo-meta {
        gap: 0.55rem;
    }

    .artigo-meta span {
        width: 100%;
        text-align: left;
    }

    .artigo-conteudo {
        max-width: none;
    }

    .artigo-conteudo p {
        font-size: 1rem;
        line-height: 1.78;
    }
}

/* =========================================================
   PRODUTOS RELACIONADOS NOS ARTIGOS
   ========================================================= */

.artigo-produtos {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.artigo-produtos-cabecalho {
    margin-bottom: 1.5rem;
}

.artigo-produtos-cabecalho h2 {
    margin: 0.9rem 0 0.7rem;
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    line-height: 1.2;
}

.artigo-produtos-cabecalho p {
    max-width: 720px;
    color: var(--muted);
    line-height: 1.7;
}

.artigo-produtos-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.artigo-produto-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
}

.artigo-produto-imagem-link {
    display: block;
    background: rgba(255, 255, 255, 0.03);
}

.artigo-produto-imagem {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.artigo-produto-conteudo {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem;
}

.artigo-produto-conteudo h3 {
    margin: 0.8rem 0 0.35rem;
    font-size: 1.18rem;
    line-height: 1.3;
}

.artigo-produto-conteudo h3 a {
    color: var(--text);
    text-decoration: none;
}

.artigo-produto-conteudo h3 a:hover {
    color: var(--green);
}

.artigo-produto-marca {
    margin: 0 0 0.65rem;
    color: var(--muted);
    font-size: 0.88rem;
}

.artigo-produto-descricao {
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.artigo-produto-nota {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
    margin-bottom: 0.8rem;
}

.artigo-produto-nota strong {
    color: var(--green);
    font-size: 1.35rem;
}

.artigo-produto-nota span {
    color: var(--muted);
    font-size: 0.82rem;
}

.artigo-produto-preco {
    margin-top: auto;
    margin-bottom: 1rem;
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 800;
}

.artigo-produto-conteudo .botoes {
    width: 100%;
}

.artigo-produto-conteudo .botao {
    flex: 1;
    text-align: center;
}

.artigo-produtos-aviso {
    margin-top: 1.25rem;
    color: var(--muted);
    line-height: 1.6;
}

@media (max-width: 760px) {
    .artigo-produtos-grid {
        grid-template-columns: 1fr;
    }

    .artigo-produto-conteudo .botoes {
        flex-direction: column;
    }

    .artigo-produto-conteudo .botao {
        width: 100%;
    }
}
