.article-hero {
    margin-top: 10px;
}

.article-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    margin-top: 10px;
}

.article-image {
    width: 100%;
    max-width: 600px;
    margin: 1rem auto 2rem auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: block;
}



.specs-table table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th,
.specs-table td {
    padding: 0.75rem;
    text-align: left;
}

.specs-table th {
    background: linear-gradient(135deg, #1c1c1e, #2c2c2e);
    color: white;
    font-weight: 600;
}

.camera-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;

}

.camera-spec {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid #2196f3;
    background: #e3f2fd;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.pros,
.cons {
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pros {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-left: 4px solid #28a745;
}

.cons {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border-left: 4px solid #dc3545;
}

.pros h3,
.cons h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.score-box {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.4);
    border: 2px solid #f39c12;
}

.score {
    font-size: 4rem;
    font-weight: 700;
    margin: 0.5rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.benchmark-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.benchmark-item {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid #2196f3;
}

.benchmark-score {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1976d2;
    margin: 0.5rem 0;
}

.article-navigation {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.related-articles {
    margin: 3rem 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border-top: 3px solid #007AFF;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.related-card-content {
    padding: 1.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
    margin: 1.5rem 0;
}

.spacer-review {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .article-hero h1 {
        font-size: 1.9rem;
    }

    .article-meta {
        gap: 1rem;
    }

    .meta-item {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .pros-cons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

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

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


/* Tabela de especificações */
.specs-table {
    background: white;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
    border: 1px solid #dee2e6;
}

.specs-grid {
    min-width: 600px;
    display: grid;
}

.spec-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border: 1px solid #b2a6bf65;
    transition: background-color 0.3s ease;
}

.spec-row:hover {
    background: #f8f9fa;
}

.spec-cell {
    padding: 10px;
    display: flex;
    align-items: center;
}

.spec-label {
    font-weight: 600;
    color: #333;
    background: #f8f9fa;
    justify-content: center;
    text-align: center;
}



.winner {
    color: #667eea;
    font-weight: 600;
}

.winner::after {
    content: ' 🏆';
}


:root {
    --bg: #0b0c10;
    --text: #e6e8ef;
    --muted: #30353f;
    --accent: #6ee7b7;
    --accent-2: #60a5fa;
    --ring: rgba(110, 231, 183, .35);
    --shadow: 0 8px 24px rgba(0, 0, 0, .35);
    color-scheme: dark;
}


.card {
    background: linear-gradient(180deg, color-mix(in oklab, var(--card), transparent 0%), color-mix(in oklab, var(--card), transparent 12%));
    border: 1px solid color-mix(in oklab, var(--text), transparent 90%);
    border-radius: 16px;
    overflow: hidden;
}

.grid {
    display: grid;
    gap: 12px;
}

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

@media (min-width: 900px) {
    .grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.metric {
    background: color-mix(in oklab, var(--card), transparent 6%);
    border: 1px solid color-mix(in oklab, var(--text), transparent 90%);
    border-radius: 12px;
    padding: 8px;
    position: relative;
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease;
}

.metric:hover {
    transform: translateY(-2px);
    border-color: color-mix(in oklab, var(--accent), transparent 50%);
}

.metric-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.icon {
    inline-size: 28px;
    block-size: 28px;
    min-inline-size: 28px;
    min-block-size: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: color-mix(in oklab, var(--accent-2), transparent 85%);
    border: 1px solid color-mix(in oklab, var(--accent-2), transparent 55%);
    color: var(--text);
    box-shadow: 0 2px 10px var(--ring);
}

.metric-title {
    font-weight: 700;
    font-size: 14px;
}

.metric-time {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .2px;
}

.muted {
    color: var(--muted);
    font-size: 12px;
}

/* progress pill */
.bar {
    height: 10px;
    background: color-mix(in oklab, var(--text), transparent 92%);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 8px;
    position: relative;
}

.bar>span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    width: var(--w, 50%);
    border-radius: inherit;
}

.swatch {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border: 1px solid color-mix(in oklab, var(--accent-2), transparent 40%);
}


/* ======= Ficha Técnica Moderna ======= */
.specs-section {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    margin: 3rem auto;
    max-width: 900px;
    transition: all 0.3s ease;
}

.specs-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.specs-header {
    margin-top: 2rem;
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    color: #fff;
    text-align: center;
    color: white;
    padding: 15px;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.specs-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.specs-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #f9fafc;
    padding: 0.9rem 1.2rem;
    border-radius: 10px;
    border: 1px solid #e6e9f0;
    transition: background 0.3s ease;
}

.spec-item:hover {
    background: #eef2ff;
}


.spec-value {
    color: #333;
    font-weight: 500;
    color: #555;
}

/* Ícones */
.spec-label i {
    color: #2575fc;
    font-size: 1rem;
}

/* ======= Responsividade ======= */
@media (max-width: 600px) {
    .spec-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .spec-value {
        max-width: 100%;
        margin-top: 4px;
        color: #444;
    }

    .specs-header h2 {
        font-size: 1.25rem;
    }
}