/*
Theme Name: Kadence Child
Theme URI: https://www.kadencewp.com/kadence-theme/
Description: Tema hijo de Kadence para Comprar UN.
Author: Comprar UN
Template: kadence
Version: 1.0.0
License: GNU General Public License v3.0 (or later)
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kadence-child
*/

/* ===== Header siempre blanco + sombra inferior (Kadence) ===== */
#masthead.site-header,
#main-header.site-header-wrap,
.site-header-wrap,
.site-header-inner-wrap,
.site-header-upper-wrap,
.site-header-upper-inner-wrap,
.site-main-header-wrap,
.site-header-row-container,
.site-header-row-container-inner,
.site-main-header-inner-wrap,
.site-mobile-header-wrap {
    background-color: #fff !important;
}
.site-header-row-container-inner {
    box-shadow: 0 2px 8px rgba(31, 38, 45, 0.08);
    position: relative;
    z-index: 5;
}

/* ===== Fondo gris claro solo en el área de contenido (bajo el header) ===== */
html,
body {
    background-color: #fff;
}
#inner-wrap,
.site-content,
.content-area,
.site-main {
    background-color: #ededed;
}

/* ===== Tokens ===== */
:root {
    --cun-primary: #1e3a6b;
    --cun-primary-dark: #142a52;
    --cun-primary-light: #e8ecf3;
    --cun-accent: #ee6d2a;
    --cun-accent-dark: #d55510;
    --cun-dark: #1a2540;
    --cun-text: #2f3a44;
    --cun-muted: #6a7682;
    --cun-bg-soft: #f3f6f8;
    --cun-border: #e3e8ec;
    --cun-shadow: 0 6px 24px rgba(31, 38, 45, 0.08);
}

/* ===== Top bar ===== */
.cun-topbar {
    background: var(--cun-dark);
    color: #c6ccd2;
    font-size: 13px;
}
.cun-topbar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.cun-topbar__left,
.cun-topbar__right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.cun-topbar__hint { color: #b6bfc7; }
.cun-topbar__item,
.cun-topbar__social {
    color: #e2e6ea;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.cun-topbar__item:hover,
.cun-topbar__social:hover { color: #fff; }
.cun-topbar__icon { color: var(--cun-accent); }

/* ===== Buttons ===== */
.cun-btn {
    display: inline-block;
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.2s, color 0.2s, transform 0.1s;
    line-height: 1;
}
.cun-btn--primary {
    background: var(--cun-primary);
    color: #fff;
}
.cun-btn--primary:hover {
    background: var(--cun-primary-dark);
    color: #fff;
}
.cun-btn--ghost {
    background: transparent;
    color: var(--cun-primary);
    border: 1px solid var(--cun-primary);
}
.cun-btn--ghost:hover {
    background: var(--cun-primary);
    color: #fff;
}
.cun-btn--sm { padding: 9px 16px; font-size: 11px; }

/* ===== Hero ===== */
.cun-hero {
    background: linear-gradient(135deg, var(--cun-primary), var(--cun-dark));
    color: #fff;
    padding: 90px 20px 110px;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.cun-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.cun-hero--split .cun-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}
.cun-hero__content { min-width: 0; }
.cun-hero__media {
    margin: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.cun-hero__media-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 28px 20px;
    aspect-ratio: 4 / 3;
    background: #fff;
    text-decoration: none;
    transition: transform 0.2s ease;
    overflow: hidden;
}
.cun-hero__media-link:hover { transform: scale(1.02); }
.cun-hero__media-link img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.cun-hero__media-caption {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 24px 20px;
    border-top: 1px solid var(--cun-border);
    background: #fff;
}
.cun-hero__media-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cun-primary);
}
.cun-hero__media-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--cun-text);
    line-height: 1.35;
}
.cun-hero__media-cta {
    align-self: stretch;
    text-align: center;
    margin-top: 8px;
}
@media (max-width: 900px) {
    .cun-hero--split .cun-hero__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .cun-hero__media {
        max-width: 460px;
        margin: 0 auto;
        aspect-ratio: 16 / 10;
        padding: 24px;
    }
}
@media (max-width: 640px) {
    .cun-hero { padding: 60px 20px 70px; }
    .cun-hero__media { padding: 18px; }
}
.cun-hero__eyebrow {
    font-size: 14px;
    margin: 0 0 10px;
    opacity: 0.85;
}
.cun-hero__title {
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.15;
    margin: 0 0 18px;
    max-width: 680px;
    color: #fff;
    font-weight: 700;
}
.cun-hero__lead {
    font-size: 16px;
    margin: 0 0 26px;
    max-width: 560px;
    opacity: 0.9;
}

/* ===== Services (sidebar + 3 cards) ===== */
.cun-services {
    background: #fff;
    padding: 60px 20px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}
.cun-services__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    align-items: stretch;
}
.cun-services__sidebar {
    background: var(--cun-primary);
    color: #fff;
    padding: 22px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cun-services__tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 22px 16px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transition: background 0.2s;
    text-align: center;
}
.cun-services__tab:last-child { border-bottom: none; }
.cun-services__tab:hover,
.cun-services__tab.is-active {
    background: rgba(0, 0, 0, 0.12);
    color: #fff;
}
.cun-services__icon { font-size: 30px; line-height: 1; }
.cun-services__label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cun-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.cun-service-card {
    background: #fff;
    border: 1px solid var(--cun-border);
    display: flex;
    flex-direction: column;
    box-shadow: var(--cun-shadow);
    overflow: hidden;
}
.cun-service-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #fff;
    padding: 14px;
    border-bottom: 1px solid var(--cun-border);
}
.cun-service-card__media img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.cun-service-card__body { padding: 18px; }
.cun-service-card__title {
    font-size: 16px;
    margin: 0 0 8px;
    line-height: 1.3;
    color: var(--cun-text);
}
.cun-service-card__excerpt {
    color: var(--cun-muted);
    font-size: 14px;
    margin: 0 0 14px;
    line-height: 1.5;
}
.cun-service-card__cta {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--cun-primary);
    text-decoration: none;
    text-transform: uppercase;
}

/* ===== CTA Banner ===== */
.cun-cta-banner {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 380px;
    padding: 80px 20px;
    border-radius: 0;
    overflow: hidden;
    background-color: var(--cun-dark);
    background-image:
        linear-gradient(rgba(26, 37, 64, 0.72), rgba(20, 42, 82, 0.82)),
        url('assets/cta-parallax.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* parallax */
    display: flex;
    align-items: center;
    justify-content: center;
}
.cun-cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 900px;
    width: 100%;
    text-align: center;
}
.cun-cta-banner__text {
    color: #fff;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
    flex: 1 1 auto;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
@media (max-width: 900px) {
    .cun-cta-banner {
        background-attachment: scroll; /* fixed rompe scroll en iOS/Android */
        min-height: 260px;
        padding: 48px 24px;
    }
    .cun-cta-banner__text { font-size: 17px; }
}
.cun-cta-banner .cun-btn--ghost {
    background: #fff;
    color: var(--cun-dark);
    border-color: #fff;
}
.cun-cta-banner .cun-btn--ghost:hover {
    background: var(--cun-primary);
    color: #fff;
    border-color: var(--cun-primary);
}

/* ===== About ===== */
.cun-about { padding: 30px 20px 60px; }
.cun-about__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.cun-about__media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 3px;
}
.cun-about__title {
    font-size: 28px;
    margin: 0 0 14px;
    color: var(--cun-text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.cun-about__rule {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--cun-primary);
    margin: 0 0 22px;
}
.cun-about__text {
    color: var(--cun-muted);
    line-height: 1.7;
    margin: 0 0 22px;
}

/* ===== Secondary cards (3 con imagen) ===== */
.cun-secondary {
    background: var(--cun-bg-soft);
    padding: 60px 20px;
}
.cun-secondary__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cun-secondary__card {
    background: #fff;
    border: 1px solid var(--cun-border);
    overflow: hidden;
    box-shadow: var(--cun-shadow);
}
.cun-secondary__media {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 10;
    background: #fff;
    padding: 14px;
    border-bottom: 1px solid var(--cun-border);
    overflow: hidden;
}
.cun-secondary__media img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.cun-secondary__body { padding: 20px; }
.cun-secondary__title {
    margin: 0 0 8px;
    font-size: 18px;
    color: var(--cun-text);
}
.cun-secondary__excerpt {
    color: var(--cun-muted);
    font-size: 14px;
    margin: 0 0 14px;
    line-height: 1.5;
}

/* ===== News (3 columnas) ===== */
.cun-news {
    padding: 60px 20px;
    background: #fff;
}
.cun-news__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}
.cun-news__title {
    margin: 0 0 18px;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cun-text);
    border-left: 4px solid var(--cun-primary);
    padding-left: 10px;
    line-height: 1.2;
}
.cun-news__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.cun-news__item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--cun-border);
}
.cun-news__item:last-child { border-bottom: none; }
.cun-news__thumb {
    flex: 0 0 110px;
    width: 110px;
    height: 110px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--cun-border);
    padding: 6px;
}
.cun-news__thumb img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.cun-news__meta { flex: 1 1 auto; }
.cun-news__link {
    display: block;
    color: var(--cun-text);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 6px;
    font-weight: 600;
}
.cun-news__link:hover { color: var(--cun-primary); }
.cun-news__date {
    font-size: 12px;
    color: var(--cun-muted);
}

/* ===== Section headings compartidos ===== */
.cun-section-head {
    margin: 0 0 24px;
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 700;
    color: var(--cun-text);
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.cun-section-head--services,
.cun-section-head--news {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* ===== Por tipo (4 cards con icono, encima de fichas recientes) ===== */
.cun-tipos {
    padding: 48px 20px 40px;
    background: var(--cun-bg-soft);
}
.cun-tipos__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.cun-tipos__head {
    margin: 0 0 24px;
}
.cun-tipos__head .cun-section-head { margin: 0 0 6px; }
.cun-tipos__lead {
    max-width: 720px;
    margin: 0;
    color: var(--cun-muted);
    font-size: 14px;
    line-height: 1.5;
}
.cun-tipos__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.cun-tipos__tile {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--cun-border);
    border-radius: 3px;
    text-decoration: none;
    color: var(--cun-text);
    transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.cun-tipos__tile:hover {
    border-color: var(--cun-primary);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(31, 38, 45, 0.08);
}
.cun-tipos__icon {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    border-radius: 3px;
    background: var(--cun-bg-soft);
    border: 1px solid var(--cun-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cun-primary);
    transition: background 0.18s, border-color 0.18s;
}
.cun-tipos__tile:hover .cun-tipos__icon {
    background: #eef2f8;
    color: var(--cun-primary);
    border-color: var(--cun-primary);
}
.cun-tipos__tile:hover .cun-tipos__icon svg { stroke-width: 1.8; }
.cun-tipos__info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.cun-tipos__name {
    font-size: 15px;
    font-weight: 600;
    color: var(--cun-text);
    line-height: 1.25;
    letter-spacing: -0.005em;
}
.cun-tipos__count {
    color: var(--cun-muted);
    font-size: 12px;
    line-height: 1.2;
}
@media (max-width: 900px) {
    .cun-tipos__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .cun-tipos__grid { grid-template-columns: 1fr; }
    .cun-tipos { padding: 32px 16px; }
}

/* ===== Fichas técnicas recientes (6 cards grid) ===== */
.cun-fichas-recientes {
    padding: 60px 20px;
    background: #fff;
}
.cun-fichas-recientes__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.cun-fichas-recientes__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin: 0 0 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--cun-primary);
}
.cun-fichas-recientes__head .cun-section-head { margin: 0; }
.cun-fichas-recientes__all {
    font-size: 13px;
    font-weight: 700;
    color: var(--cun-primary);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.cun-fichas-recientes__all:hover { color: var(--cun-accent); }
.cun-fichas-recientes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.cun-fichas-recientes__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--cun-border);
    border-radius: 3px;
    overflow: hidden;
    box-shadow: var(--cun-shadow);
    transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.cun-fichas-recientes__card:hover {
    border-color: var(--cun-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(31, 38, 45, 0.10);
}
.cun-fichas-recientes__media {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    background: #fff;
    padding: 16px;
    border-bottom: 1px solid var(--cun-border);
    overflow: hidden;
}
.cun-fichas-recientes__media img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.cun-fichas-recientes__ph {
    font-size: 44px;
    font-weight: 800;
    color: var(--cun-primary);
    letter-spacing: -0.02em;
}
.cun-fichas-recientes__body { padding: 16px 18px 18px; }
.cun-fichas-recientes__brand {
    display: inline-block;
    background: var(--cun-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 3px;
    text-decoration: none;
    margin: 0 0 10px;
}
.cun-fichas-recientes__brand:hover { background: var(--cun-accent); color: #fff; }
.cun-fichas-recientes__name {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--cun-text);
}
.cun-fichas-recientes__name a {
    color: var(--cun-text);
    text-decoration: none;
}
.cun-fichas-recientes__name a:hover { color: var(--cun-primary); }
@media (max-width: 960px) {
    .cun-fichas-recientes__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
    .cun-fichas-recientes__grid { grid-template-columns: 1fr; }
    .cun-fichas-recientes { padding: 40px 16px; }
}

/* ===== Explora otros temas (navegación categorías secundarias) ===== */
.cun-explora {
    padding: 60px 20px;
    background: var(--cun-bg-soft);
}
.cun-explora__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.cun-explora__head {
    text-align: center;
    margin: 0 0 32px;
}
.cun-explora__head .cun-section-head { margin-bottom: 8px; }
.cun-explora__lead {
    max-width: 620px;
    margin: 0 auto;
    color: var(--cun-muted);
    font-size: 15px;
    line-height: 1.5;
}
.cun-explora__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.cun-explora__tile {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--cun-border);
    border-radius: 3px;
    padding: 22px 44px 22px 20px;
    text-decoration: none;
    color: var(--cun-text);
    transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.cun-explora__tile:hover {
    border-color: var(--cun-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 38, 45, 0.08);
}
.cun-explora__label {
    font-size: 17px;
    font-weight: 700;
    color: var(--cun-text);
    line-height: 1.2;
}
.cun-explora__sub {
    font-size: 13px;
    color: var(--cun-muted);
    line-height: 1.4;
}
.cun-explora__count {
    display: inline-block;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cun-primary);
}
.cun-explora__tile:hover .cun-explora__count { color: var(--cun-accent); }
.cun-explora__arrow {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    font-size: 22px;
    color: var(--cun-primary);
    line-height: 1;
    transition: transform 0.15s, color 0.15s;
}
.cun-explora__tile:hover .cun-explora__arrow {
    color: var(--cun-accent);
    transform: translateY(-50%) translateX(3px);
}
@media (max-width: 960px) {
    .cun-explora__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .cun-explora__grid { grid-template-columns: 1fr; }
    .cun-explora { padding: 40px 16px; }
}

/* ===== Header comparativos ===== */
.cun-secondary__wrap {
    max-width: 1200px;
    margin: 0 auto 24px;
    padding: 0;
}
.cun-secondary__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--cun-primary);
}
.cun-secondary__head .cun-section-head { margin: 0; }
.cun-secondary__all {
    font-size: 13px;
    font-weight: 700;
    color: var(--cun-primary);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.cun-secondary__all:hover { color: var(--cun-accent); }

/* ===== Climatización grid 3x3 ===== */
.cun-climatizacion {
    padding: 60px 20px;
    background: var(--cun-bg-soft);
}
.cun-climatizacion__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.cun-climatizacion__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin: 0 0 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--cun-primary);
}
.cun-climatizacion__title {
    margin: 0;
    font-size: 22px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cun-text);
}
.cun-climatizacion__all {
    font-size: 13px;
    font-weight: 700;
    color: var(--cun-primary);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.cun-climatizacion__all:hover { color: var(--cun-accent); }
.cun-climatizacion__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.cun-climatizacion__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--cun-border);
    border-radius: 3px;
    overflow: hidden;
    text-decoration: none;
    color: var(--cun-text);
    box-shadow: var(--cun-shadow);
    transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.cun-climatizacion__card:hover {
    border-color: var(--cun-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(31, 38, 45, 0.10);
}
.cun-climatizacion__media {
    aspect-ratio: 4 / 3;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-bottom: 1px solid var(--cun-border);
    overflow: hidden;
}
.cun-climatizacion__media img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.cun-climatizacion__ph {
    font-size: 48px;
    font-weight: 800;
    color: var(--cun-primary);
    letter-spacing: -0.02em;
}
.cun-climatizacion__body { padding: 16px 18px 18px; }
.cun-climatizacion__brand {
    display: inline-block;
    background: var(--cun-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 3px;
    margin: 0 0 8px;
}
.cun-climatizacion__name {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
    color: var(--cun-text);
}
.cun-climatizacion__count {
    font-size: 13px;
    font-weight: 600;
    color: var(--cun-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.cun-climatizacion__desc {
    max-width: 780px;
    margin: 0 0 24px;
    color: var(--cun-muted);
    font-size: 15px;
    line-height: 1.6;
}
.cun-climatizacion__desc p:last-child { margin-bottom: 0; }
.cun-climatizacion__empty {
    text-align: center;
    color: var(--cun-muted);
    font-size: 15px;
    padding: 40px 0;
}
.cun-climatizacion__pag {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.cun-climatizacion__pag .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid var(--cun-border);
    border-radius: 3px;
    color: var(--cun-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.cun-climatizacion__pag .page-numbers:hover {
    background: var(--cun-primary);
    color: #fff;
    border-color: var(--cun-primary);
}
.cun-climatizacion__pag .page-numbers.current {
    background: var(--cun-primary);
    color: #fff;
    border-color: var(--cun-primary);
}
.cun-climatizacion__pag .page-numbers.dots {
    background: transparent;
    border-color: transparent;
    color: var(--cun-muted);
}
/* Archive: usa h1 más grande que la sección homónima del home */
.cun-climatizacion--archive .cun-climatizacion__title {
    font-size: 28px;
}
.cun-climatizacion--archive .cun-climatizacion__title em {
    font-style: normal;
    color: var(--cun-primary);
}

/* Barra de búsqueda dentro del archive de resultados */
.cun-climatizacion__searchbar {
    display: flex;
    gap: 0;
    max-width: 640px;
    margin: 0 0 24px;
    background: #fff;
    border: 1px solid var(--cun-border);
    border-radius: 3px;
    overflow: hidden;
}
.cun-climatizacion__searchbar input[type="search"] {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-size: 15px;
    outline: none;
    background: transparent;
    color: var(--cun-text);
    min-width: 0;
}
.cun-climatizacion__searchbar input[type="search"]::placeholder { color: var(--cun-muted); }
.cun-climatizacion__searchbar .cun-btn {
    border-radius: 0;
    padding: 12px 22px;
}
.cun-climatizacion--search .cun-climatizacion__empty {
    text-align: center;
    padding: 32px 20px;
    color: var(--cun-muted);
}
.cun-climatizacion--search .cun-climatizacion__empty em {
    font-style: normal;
    color: var(--cun-primary);
}

/* ===== 404 page ===== */
.cun-climatizacion--404 .cun-404__head {
    text-align: center;
    margin: 20px 0 32px;
}
.cun-climatizacion--404 .cun-404__code {
    font-size: clamp(84px, 14vw, 140px);
    font-weight: 800;
    color: var(--cun-primary);
    line-height: 1;
    letter-spacing: -0.04em;
    margin: 0 0 12px;
    opacity: 0.9;
}
.cun-climatizacion--404 .cun-climatizacion__title {
    text-align: center;
    margin: 0 0 14px;
}
.cun-climatizacion--404 .cun-404__lead {
    max-width: 640px;
    margin: 0 auto;
    color: var(--cun-muted);
    font-size: 15px;
    line-height: 1.55;
}
.cun-climatizacion--404 .cun-climatizacion__searchbar {
    margin: 0 auto 32px;
}
.cun-climatizacion--404 .cun-404__quick {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 0 0 40px;
}
.cun-climatizacion--404 .cun-404__quick-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--cun-border);
    border-radius: 3px;
    text-decoration: none;
    color: var(--cun-text);
    transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.cun-climatizacion--404 .cun-404__quick-card:hover {
    border-color: var(--cun-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 38, 45, 0.08);
}
.cun-climatizacion--404 .cun-404__quick-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--cun-text);
    line-height: 1.2;
}
.cun-climatizacion--404 .cun-404__quick-sub {
    font-size: 12px;
    color: var(--cun-muted);
    line-height: 1.35;
}
.cun-climatizacion--404 .cun-404__sug-title {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 700;
    color: var(--cun-text);
    letter-spacing: -0.01em;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--cun-primary);
}
@media (max-width: 700px) {
    .cun-climatizacion--404 .cun-404__quick { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
    .cun-climatizacion--404 .cun-404__quick { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
    .cun-climatizacion__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
    .cun-climatizacion__grid { grid-template-columns: 1fr; }
    .cun-climatizacion { padding: 40px 16px; }
    .cun-climatizacion--archive .cun-climatizacion__title { font-size: 22px; }
}

/* ===== Footer minimal (Privacidad · Términos · Sitemap · Contacto) ===== */
.cun-footer {
    background: var(--cun-dark);
    color: #b6bfc7;
    padding: 24px 20px;
    margin-top: 0;
}
.cun-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cun-footer__nav { flex: 0 1 auto; }
.cun-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 24px;
}
.cun-footer__list a {
    color: #b6bfc7;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.02em;
}
.cun-footer__list a:hover { color: var(--cun-accent); }
.cun-footer__copy {
    font-size: 13px;
    color: #93a0ab;
    letter-spacing: 0.02em;
}
@media (max-width: 640px) {
    .cun-footer__inner { flex-direction: column; text-align: center; }
    .cun-footer__list { justify-content: center; }
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
    .cun-services__inner { grid-template-columns: 1fr; }
    .cun-services__sidebar { flex-direction: row; padding: 0; overflow-x: auto; }
    .cun-services__tab {
        flex: 1 0 auto;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.18);
    }
    .cun-services__grid { grid-template-columns: repeat(2, 1fr); }
    .cun-about__inner { grid-template-columns: 1fr; }
    .cun-footer__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .cun-topbar__inner { justify-content: center; }
    .cun-services__grid,
    .cun-secondary__inner,
    .cun-news__inner { grid-template-columns: 1fr; }
    .cun-footer__inner { grid-template-columns: 1fr; }
    .cun-cta-banner__inner { justify-content: center; text-align: center; }
}

/* =====================================================================
   CUN — Home jornal-data: extensiones sobre cun-hero/cun-services/etc.
   ===================================================================== */
.cun-hero__search {
    display: flex;
    gap: 0;
    max-width: 640px;
    margin: 0 0 20px;
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,.25);
}
.cun-hero__search input[type="search"] {
    flex: 1;
    border: none;
    padding: 14px 18px;
    font-size: 15px;
    outline: none;
    background: #fff;
    color: var(--cun-text);
    min-width: 0;
}
.cun-hero__search input[type="search"]::placeholder { color: var(--cun-muted); }
.cun-hero__search .cun-btn {
    border-radius: 0;
    padding: 14px 26px;
}
.cun-hero__cta-row {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.cun-btn--on-dark {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.6);
}
.cun-btn--on-dark:hover {
    background: #fff;
    color: var(--cun-dark);
    border-color: #fff;
}
.cun-hero__stat {
    color: #fff;
    font-size: 14px;
    opacity: .9;
}
.cun-hero__stat strong { color: #fff; font-weight: 700; font-size: 16px; }

.cun-services__icon {
    background: rgba(255,255,255,.15);
    width: 44px; height: 44px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800; letter-spacing: -.02em;
}
.cun-services__count {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: rgba(255,255,255,.7);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.cun-service-card__media {
    position: relative;
}
.cun-service-card__placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--cun-primary), var(--cun-dark));
    color: #fff;
    font-size: 26px; font-weight: 800;
    letter-spacing: .02em;
}
.cun-service-card__brand {
    display: inline-block;
    background: var(--cun-primary);
    color: #fff;
    font-size: 11px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 4px 10px;
    margin: 0 0 10px;
    border-radius: 3px;
}
.cun-service-card__title a {
    color: var(--cun-text);
    text-decoration: none;
}
.cun-service-card__title a:hover { color: var(--cun-primary); }

.cun-secondary__media { position: relative; background: linear-gradient(135deg, var(--cun-bg-soft), #fff); }
.cun-secondary__vs {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 56px; font-weight: 800;
    color: var(--cun-muted);
    letter-spacing: -.04em;
}
.cun-secondary__badge {
    display: inline-block;
    background: var(--cun-primary);
    color: #fff;
    font-size: 10px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 3px 10px;
    margin: 0 0 10px;
    border-radius: 3px;
}
.cun-secondary__title a {
    color: var(--cun-text);
    text-decoration: none;
}
.cun-secondary__title a:hover { color: var(--cun-primary); }

.cun-news__thumb {
    background: var(--cun-bg-soft);
    display: flex; align-items: center; justify-content: center;
}
.cun-news__thumb-fallback {
    color: var(--cun-primary);
    font-size: 28px; font-weight: 800;
    letter-spacing: -.02em;
}

/* =====================================================================
   FICHA-AIRE-2026 — Estructura espejo de la ficha de jornal, re-tintada
   a paleta CUN (accent navy #1e3a6b del logo). Se inyecta vía the_content en
   singles ficha-tecnica-*.
   ===================================================================== */
.ficha-aire-2026 {
  --bg: #f3f6f8;
  --surface: #fff;
  --surface-2: #f1f3f7;
  --border: #e3e8ec;
  --text: #2f3a44;
  --text-muted: #6a7682;
  --accent: #1e3a6b;
  --accent-dark: #142a52;
  --accent-light: #e8ecf3;
  --accent-orange: #ee6d2a;
  --accent-orange-dark: #d55510;
  --success: #16a34a;
  --warning: #d97706;
  --danger: #dc2626;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 12px rgba(0,0,0,.06);
  --radius: 3px;
  --radius-sm: 3px;
  font-family: 'Inter','Segoe UI',-apple-system,BlinkMacSystemFont,Roboto,sans-serif;
  color: var(--text);
  line-height: 1.55;
  margin: 16px 0;
}
.ficha-aire-2026 *{ box-sizing: border-box; }
.ficha-aire-2026 a{ color: var(--accent); text-decoration: none; }
.ficha-aire-2026 a:hover{ text-decoration: underline; }

/* Hero */
.ficha-aire-2026 .ficha-hero{
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
  margin: 24px 0;
  border: 1px solid var(--border);
}
.ficha-aire-2026 .brand-badge{
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-light); color: var(--accent);
  padding: 4px 12px; border-radius: 3px;
  font-size: 13px; font-weight: 600; width: fit-content;
}
.ficha-aire-2026 .ficha-hero__title{
  margin: 0 !important; padding: 0 !important;
  font-size: 30px !important; font-weight: 700 !important;
  letter-spacing: -.02em !important;
  color: var(--text) !important;
  background: transparent !important; border: 0 !important;
  text-shadow: none !important; line-height: 1.2 !important;
  display: block !important;
}
.ficha-aire-2026 .ficha-hero__img-wrap{
  display: flex; justify-content: center; align-items: center;
  background: var(--surface-2); border-radius: var(--radius-sm);
  padding: 18px; min-height: 220px;
}
.ficha-aire-2026 .ficha-hero__img{
  max-width: 100%; max-height: 280px;
  width: auto; height: auto; object-fit: contain; display: block;
}
.ficha-aire-2026 .ficha-hero__img-fallback{
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--text));
  color: #fff; font-size: 56px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.ficha-aire-2026 .hero-tags{ display: flex; flex-wrap: wrap; gap: 8px; }
.ficha-aire-2026 .tag{
  background: var(--surface-2);
  padding: 4px 12px; border-radius: 3px;
  font-size: 12px; color: var(--text-muted);
}

/* Price bar (4 stats destacados bajo el hero) */
.ficha-aire-2026 .price-bar{
  display: grid; grid-template-columns: repeat(4,1fr); gap: 12px;
  margin-top: 8px; border-top: 1px solid var(--border); padding-top: 16px;
}
.ficha-aire-2026 .price-stat__label{
  font-size: 11px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .05em; font-weight: 600;
}
.ficha-aire-2026 .price-stat__value{ font-size: 18px; font-weight: 700; margin-top: 2px; }
.ficha-aire-2026 .price-stat--best .price-stat__value{ color: #15803d; }
.ficha-aire-2026 .price-stat--worst .price-stat__value{ color: #b91c1c; }

/* Section title (kicker) */
.ficha-aire-2026 .section-title{
  margin: 32px 0 16px;
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--text-muted);
}

/* Specs grid (8 cards principales) */
.ficha-aire-2026 .specs-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 12px;
}
.ficha-aire-2026 .spec-card{
  background: var(--surface); border-radius: var(--radius-sm);
  padding: 14px 16px; border: 1px solid var(--border);
}
.ficha-aire-2026 .spec-card__label{
  font-size: 11px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .05em; font-weight: 600;
}
.ficha-aire-2026 .spec-card__value{
  font-size: 16px; font-weight: 600; margin-top: 2px; color: var(--text);
}

/* Specs detail collapsible (grupos por categoría) */
.ficha-aire-2026 .specs-detail{
  margin: 24px 0 32px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.ficha-aire-2026 .specs-detail summary{
  cursor: pointer; padding: 16px 20px;
  font-weight: 600; background: var(--surface-2);
  list-style: none; display: flex;
  align-items: center; justify-content: space-between;
  color: var(--text);
}
.ficha-aire-2026 .specs-detail summary::-webkit-details-marker{ display: none; }
.ficha-aire-2026 .specs-detail summary::after{
  content: '＋'; font-size: 20px; color: var(--accent);
}
.ficha-aire-2026 .specs-detail[open] summary::after{ content: '−'; }
.ficha-aire-2026 .spec-group{
  padding: 24px 24px 20px !important;
  border-top: 1px solid var(--border);
  margin: 0 !important;
}
.ficha-aire-2026 .spec-group h3{
  font-size: 14px !important; margin: 0 0 8px 0 !important;
  padding: 0 !important; color: var(--text) !important;
  display: flex !important; align-items: center;
  gap: 8px; background: transparent !important;
  font-weight: 600 !important; line-height: 1.3 !important;
}

/* SVG icons (estilo Feather, stroke currentColor) */
.jdc-svg-ico{
  flex-shrink: 0;
  vertical-align: -3px;
  color: var(--accent, #1e3a6b);
  display: inline-block;
}
.ficha-aire-2026 .brand-badge .jdc-svg-ico,
.ficha-aire-2026 .tag .jdc-svg-ico{
  margin-right: 5px;
  color: currentColor;
}
.ficha-aire-2026 .spec-group h3 .jdc-svg-ico,
.ficha-aire-2026 .shop-section h2 .jdc-svg-ico,
.ficha-aire-2026 .analise h2 .jdc-svg-ico,
.ficha-aire-2026 .video-section h2 .jdc-svg-ico,
.ficha-aire-2026 .video-review h2 .jdc-svg-ico{
  color: var(--accent, #1e3a6b);
}
.ficha-aire-2026 .video-review .sent-badge .jdc-svg-ico{
  color: currentColor;
  margin-right: 4px;
}
.ficha-aire-2026 .spec-row{
  display: grid; grid-template-columns: 1fr auto;
  padding: 4px 0; border-bottom: 1px dashed var(--border);
  gap: 16px; margin: 0 !important;
}
.ficha-aire-2026 .spec-row:last-child{ border-bottom: 0; }
.ficha-aire-2026 .spec-row__label{ color: var(--text-muted); font-size: 14px; }
.ficha-aire-2026 .spec-row__value{
  font-weight: 500; font-size: 14px; text-align: right; color: var(--text);
}

/* Shop section */
.ficha-aire-2026 .shop-section{
  margin-top: 32px; background: var(--surface);
  border-radius: var(--radius); padding: 0 32px 20px;
  border: 1px solid var(--border);
}
.ficha-aire-2026 .shop-section h2,
.ficha-aire-2026 .video-section h2,
.ficha-aire-2026 .analise h2 {
  margin: 0 0 6px; font-size: 22px;
  letter-spacing: -.02em; color: var(--text); padding: 24px 0 0 0;
  display: flex; align-items: center; gap: 10px;
}
.ficha-aire-2026 .shop-section__sub{
  color: var(--text-muted); margin-bottom: 20px; font-size: 14px;
}
.ficha-aire-2026 .shop-grid{ display: grid; gap: 10px; }
.ficha-aire-2026 .shop-card{
  display: grid; grid-template-columns: auto 1fr auto auto;
  align-items: center; gap: 16px;
  padding: 16px 18px; border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color .15s; background: var(--surface);
}
.ficha-aire-2026 .shop-card *{ line-height: 1; }
.ficha-aire-2026 .shop-card:hover{ border-color: var(--accent); }
.ficha-aire-2026 .shop-card--ml{
  background: linear-gradient(90deg,#fff8d6 0%, #fff 25%);
  border-color: #ffe066;
}
.ficha-aire-2026 .shop-card__rank{
  background: var(--accent-light); color: var(--accent);
  font-weight: 700; width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.ficha-aire-2026 .shop-card--ml .shop-card__rank{ background: #ffe066; color: #5c4400; }
.ficha-aire-2026 .shop-card__seller{ display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ficha-aire-2026 .shop-card__name{ font-weight: 600; font-size: 15px; color: var(--text); }
.ficha-aire-2026 .shop-card__price{
  font-size: 18px; font-weight: 700; text-align: right; min-width: 100px; color: var(--text);
}
.ficha-aire-2026 .shop-card__cta{
  background: var(--accent); color: #fff !important;
  padding: 10px 20px; border-radius: var(--radius-sm);
  text-decoration: none !important; font-weight: 600; font-size: 14px;
  white-space: nowrap; align-self: center;
  display: inline-flex; align-items: center;
}
.ficha-aire-2026 .shop-card__cta:hover{ background: var(--accent-dark); }
.ficha-aire-2026 .shop-card--ml .shop-card__cta{ background: #fff159; color: #333 !important; }
.ficha-aire-2026 .shop-card--ml .shop-card__cta:hover{ background: #ffe600; }

/* Related items */
.ficha-aire-2026 .related-section{
  margin-top: 32px; background: var(--surface);
  border-radius: var(--radius); padding: 0 32px 20px;
  border: 1px solid var(--border);
}
.ficha-aire-2026 .related-section h2{
  margin: 0 0 12px; font-size: 22px;
  letter-spacing: -.02em; color: var(--text); padding-top: 24px;
}
.ficha-aire-2026 .related-list{ display: grid; gap: 8px; }
.ficha-aire-2026 .related-item{
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); background: var(--surface-2);
  transition: background .15s, border-color .15s;
}
.ficha-aire-2026 .related-item:hover{ background: var(--accent-light); border-color: var(--accent); }
.ficha-aire-2026 .related-item__icon{ font-size: 16px; }
.ficha-aire-2026 .related-item__title{ flex: 1; font-size: 14px; color: var(--text); }
.ficha-aire-2026 .related-item__type{
  font-size: 11px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .05em;
}

/* Related grid — 6 cards al final de la ficha (mismo look que cun-climatizacion) */
.ficha-aire-2026 .related-section--grid h2{
  display: flex; align-items: center; gap: 10px;
}
.ficha-aire-2026 .related-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.ficha-aire-2026 .related-card{
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 3px; overflow: hidden;
  text-decoration: none !important; color: var(--text);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.ficha-aire-2026 .related-card:hover{
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.ficha-aire-2026 .related-card__media{
  aspect-ratio: 4 / 3;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ficha-aire-2026 .related-card__media img{
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain; display: block;
}
.ficha-aire-2026 .related-card__ph{
  font-size: 40px; font-weight: 800;
  color: var(--accent); letter-spacing: -.02em;
}
.ficha-aire-2026 .related-card__body{ padding: 12px 14px 14px; }
.ficha-aire-2026 .related-card__brand{
  display: inline-block;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 3px;
  margin: 0 0 6px;
}
.ficha-aire-2026 .related-card__name{
  margin: 0; font-size: 14px; line-height: 1.35;
  font-weight: 600; color: var(--text);
}
@media (max-width: 700px){
  .ficha-aire-2026 .related-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px){
  .ficha-aire-2026 .related-grid{ grid-template-columns: 1fr; }
}

/* Análise narrativa (Claude prompt output — 8 secciones h2 con parágrafos).
   .analise es wrapper transparente para alineación; solo la primera sección
   (h2 + primer p) se estiliza como card de intro, el resto flat. */
.ficha-aire-2026 .analise{
  margin-top: 32px;
  background: transparent;
  border: none;
  padding: 0 32px;
}
.ficha-aire-2026 .analise h2{
  font-size: 22px;
  margin: 28px 0 12px;
  letter-spacing: -.02em;
  color: var(--text);
}
.ficha-aire-2026 .analise p{
  margin: 0 0 14px;
  color: #2d3138;
  line-height: 1.65;
}
.ficha-aire-2026 .analise b,
.ficha-aire-2026 .analise strong{
  color: var(--accent);
  font-weight: 600;
}
/* Intro card: primera h2 + primer p pegados en un box con border */
.ficha-aire-2026 .analise > h2:first-of-type{
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 24px 32px 8px !important;
  margin: 0 -32px 0 -32px !important;
}
.ficha-aire-2026 .analise > h2:first-of-type + p{
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 0 32px 24px;
  margin: 0 -32px 32px -32px;
}

/* Video section */
.ficha-aire-2026 .video-section{
  margin-top: 32px; background: var(--surface);
  border-radius: var(--radius); padding: 0 32px 24px;
  border: 1px solid var(--border);
}
.ficha-aire-2026 .video-section h2{
  margin: 0 0 6px; font-size: 22px; letter-spacing: -.02em; padding-top: 24px;
}
.ficha-aire-2026 .video-section__sub{
  color: var(--text-muted); margin: 0 0 16px; font-size: 14px;
}
.ficha-aire-2026 .video-wrap{
  position: relative; padding-bottom: 56.25%; height: 0;
  overflow: hidden; border-radius: 3px; background: #000;
}
.ficha-aire-2026 .video-wrap iframe{
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}
.ficha-aire-2026 .video-meta{
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 10px; font-size: 13px; color: var(--text-muted);
}

/* Video review (resumen con sentiment + pros/cons) */
.ficha-aire-2026 .video-review{
  margin-top: 18px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 16px 32px;
}
.ficha-aire-2026 .video-review h2{
  margin: 0 0 10px; font-size: 16px;
  display: flex; align-items: center; gap: 8px;
}
.ficha-aire-2026 .video-review .sent-badge{
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px; border-radius: 3px;
  font-size: 12px; font-weight: 600; letter-spacing: .02em;
}
.ficha-aire-2026 .sent-positivo{ background: #dcfce7; color: #166534; }
.ficha-aire-2026 .sent-mixto   { background: #fef3c7; color: #92400e; }
.ficha-aire-2026 .sent-negativo{ background: #fee2e2; color: #991b1b; }
.ficha-aire-2026 .sent-neutro  { background: #e5e8ef; color: #374151; }
.ficha-aire-2026 .video-review p{
  margin: 0 0 10px; font-size: 14px; line-height: 1.55; color: var(--text);
}
.ficha-aire-2026 .video-review .pf-grid{
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px;
}
.ficha-aire-2026 .video-review .pf-block{
  background: #fff; border: 1px solid var(--border);
  border-radius: 3px; padding: 10px 12px;
}
.ficha-aire-2026 .video-review .pf-block strong{
  font-size: 13px; display: block; margin-bottom: 4px;
}
.ficha-aire-2026 .video-review .pf-block.pf-pos strong{ color: #166534; }
.ficha-aire-2026 .video-review .pf-block.pf-neg strong{ color: #991b1b; }
.ficha-aire-2026 .video-review .pf-block ul{
  margin: 0; padding-left: 18px; font-size: 13px; line-height: 1.5;
}
.ficha-aire-2026 .video-review .pf-block li{ margin-bottom: 3px; }

@media (max-width: 700px) {
  .ficha-aire-2026 .price-bar{ grid-template-columns: repeat(2,1fr); }
  .ficha-aire-2026 .shop-card{ grid-template-columns: auto 1fr; row-gap: 8px; }
  .ficha-aire-2026 .shop-card__price{ grid-column: 2; text-align: right; }
  .ficha-aire-2026 .shop-card__cta{ grid-column: 1/-1; text-align: center; }
}
@media (max-width: 640px) {
  .ficha-aire-2026 .video-review .pf-grid{ grid-template-columns: 1fr; }
}

/* Ficha técnica single: tarjeta legacy cun-ficha-specs (deprecada, ahora usamos .ficha-aire-2026 espejo de jornal) */
.cun-ficha-specs {
    background: #fff;
    border: 1px solid var(--cun-border);
    border-radius: 3px;
    box-shadow: 0 4px 14px rgba(31,38,45,.06);
    margin: 0 0 28px;
    overflow: hidden;
}
.cun-ficha-specs__head {
    background: var(--cun-dark);
    color: #fff;
    padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.cun-ficha-specs__title {
    margin: 0;
    font-size: 15px; font-weight: 700;
    letter-spacing: .04em; text-transform: uppercase;
    color: #fff;
}
.cun-ficha-specs__brand {
    background: var(--cun-primary); color: #fff;
    font-size: 12px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 3px;
}
.cun-ficha-specs__price {
    color: #fff; font-size: 16px; font-weight: 700;
    background: rgba(255,255,255,.10);
    padding: 6px 12px; border-radius: 3px;
}
.cun-ficha-specs__hero {
    display: grid; grid-template-columns: minmax(220px, 320px) 1fr;
    gap: 0;
    border-bottom: 1px solid var(--cun-border);
}
.cun-ficha-specs__img {
    background: #fff;
    border-right: 1px solid var(--cun-border);
    display: flex; align-items: center; justify-content: center;
    aspect-ratio: 1/1; padding: 18px;
}
.cun-ficha-specs__img img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.cun-ficha-specs__img-fallback {
    color: var(--cun-muted); font-size: 48px; font-weight: 800; letter-spacing: -.04em;
}
.cun-ficha-specs__highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
.cun-ficha-specs__hl {
    padding: 18px 22px;
    border-bottom: 1px solid var(--cun-border);
    border-right: 1px solid var(--cun-border);
}
.cun-ficha-specs__hl:nth-child(2n) { border-right: none; }
.cun-ficha-specs__hl:nth-last-child(-n+2) { border-bottom: none; }
.cun-ficha-specs__hl-label {
    display: block;
    font-size: 11px; font-weight: 700;
    color: var(--cun-muted);
    letter-spacing: .08em; text-transform: uppercase;
    margin-bottom: 4px;
}
.cun-ficha-specs__hl-value {
    display: block;
    font-size: 18px; font-weight: 700;
    color: var(--cun-text);
    line-height: 1.2;
}
.cun-ficha-specs__hl-value.is-yes { color: var(--cun-primary); }
.cun-ficha-specs__hl-value.is-no { color: var(--cun-muted); }

.cun-ficha-specs__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.cun-ficha-specs__section {
    background: var(--cun-bg-soft);
    color: var(--cun-primary);
    font-size: 11px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    padding: 10px 22px;
    text-align: left;
}
.cun-ficha-specs__table tr td {
    padding: 12px 22px;
    border-bottom: 1px solid var(--cun-border);
    vertical-align: top;
}
.cun-ficha-specs__table tr:last-child td { border-bottom: none; }
.cun-ficha-specs__table tr td:first-child {
    color: var(--cun-muted);
    font-weight: 500;
    width: 38%;
}
.cun-ficha-specs__table tr td:last-child {
    color: var(--cun-text);
    font-weight: 600;
}
.cun-ficha-specs__cta {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; flex-wrap: wrap;
    padding: 18px 24px;
    background: var(--cun-bg-soft);
    border-top: 1px solid var(--cun-border);
}
.cun-ficha-specs__cta-text {
    margin: 0;
    color: var(--cun-text-2, var(--cun-text));
    font-size: 14px;
}

@media (max-width: 720px) {
    .cun-ficha-specs__hero { grid-template-columns: 1fr; }
    .cun-ficha-specs__img { border-right: none; border-bottom: 1px solid var(--cun-border); }
    .cun-ficha-specs__highlights { grid-template-columns: repeat(2, 1fr); }
    .cun-ficha-specs__table tr td { padding: 10px 16px; font-size: 13px; }
    .cun-ficha-specs__head { padding: 14px 16px; }
    .cun-ficha-specs__cta { padding: 14px 16px; }
}

/* =====================================================================
   ANCHOS UNIFICADOS — Ficha / Comparador / Home a 1280px inner.
   Kadence default content-width-narrow = 842px (muy angosto para fichas).
   Sobrescribimos la CSS var `--global-content-narrow-width` solo en
   las vistas marcadas (cun-is-ficha / cun-is-comparar). Esto evita pelear
   por specificity con `.content-width-narrow .content-container.site-container`.
   ===================================================================== */
body.cun-is-ficha,
body.cun-is-comparar {
  --global-content-narrow-width: 1280px;
  --global-content-width: 1280px;
  --global-content-boxed-padding: 0.75rem;
}

/* Quitar padding adicional del entry-content-wrap para que cun-ficha-specs
   ocupe el ancho útil sin recortes ni cajas internas estorbando. */
body.cun-is-ficha .entry-content-wrap,
body.cun-is-comparar .entry-content-wrap { padding: 0.5rem 0; }

/* Ocultar el top-featured thumbnail de Kadence en fichas —
   la imagen ya está en el hero .ficha-hero__img-wrap del ficha-aire-2026. */
body.cun-is-ficha .post-thumbnail,
body.cun-is-ficha .article-post-thumbnail { display: none !important; }

/* Aire vertical para que site-main respire respecto al header/footer */
body.cun-is-ficha .site-main,
body.cun-is-comparar .site-main { padding: 24px 0 40px; }
@media (min-width: 720px) {
  body.cun-is-ficha .site-main,
  body.cun-is-comparar .site-main { padding: 36px 0 56px; }
}

/* Padding interno mínimo para que no toque topbar/footer en mobile */
body.cun-is-comparar .jdc-comparador { padding: 0 12px; }
@media (min-width: 720px) {
  body.cun-is-comparar .jdc-comparador { padding: 0 24px; }
}
body.cun-is-ficha .entry-content { padding: 0 12px; }
@media (min-width: 720px) {
  body.cun-is-ficha .entry-content { padding: 0 24px; }
}

/* =====================================================================
   JDC PORT — Comparador (jdc-comparador), Search
   Re-tinted a paleta CUN (navy #1e3a6b + naranja #ee6d2a del logo).
   ===================================================================== */
body.page-template-template-comparar { background: #f3f6f8; }

.jdc-home,
.jdc-comparador {
  /* Palette base: slate (jornaldocompras) + brand comprarun (navy + orange logo) */
  --c-primary: #1e3a6b;
  --c-primary-700: #142a52;
  --c-primary-50: #eaf2fb;
  --c-accent: #ee6d2a;
  --c-text: #0f172a;
  --c-text-2: #334155;
  --c-text-3: #64748b;
  --c-text-muted: #94a3b8;
  --c-border: #e5e7eb;
  --c-border-soft: #eef2f6;
  --c-surface: #ffffff;
  --c-surface-2: #f8fafc;
  --c-surface-3: #f1f5f9;
  --c-win-bg: #ecfdf5;
  --c-win: #047857;
  --radius-sm: 3px;
  --radius: 3px;
  --radius-lg: 3px;
  --shadow-resting: 0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.06);
  --shadow-elevated: 0 4px 16px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.05);
  --shadow-hero: 0 10px 32px rgba(15,23,42,.08), 0 2px 6px rgba(15,23,42,.05);
  --shadow-hover: 0 12px 28px rgba(15,23,42,.10), 0 3px 8px rgba(15,23,42,.06);
  font-family: 'Inter','Segoe UI',-apple-system,BlinkMacSystemFont,Roboto,'Helvetica Neue',Arial,sans-serif;
  color: var(--c-text); line-height: 1.55;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}

.jdc-home { max-width:1200px; margin:0 auto; padding:24px 36px 0; }
.jdc-home *:focus-visible { outline:2px solid var(--c-primary); outline-offset:2px; border-radius:3px; }
.jdc-home > section { margin-top:56px; }
.jdc-home > section:first-of-type { margin-top:0; }

.jdc-home h2.section {
  display:flex; align-items:baseline; justify-content:space-between; gap:18px; flex-wrap:wrap;
  font-size:22px; font-weight:700; margin:0 0 22px; color:var(--c-text); letter-spacing:-.015em;
  padding-bottom:14px; border-bottom:1px solid var(--c-border-soft);
}
.jdc-home h2.section a {
  font-size:13px; font-weight:600; color:var(--c-primary); text-decoration:none;
  letter-spacing:.01em; margin:0; vertical-align:baseline;
}
.jdc-home h2.section a:hover { color:var(--c-primary-700); text-decoration:underline; text-underline-offset:3px; }

/* Hero */
.jdc-hero {
  background:
    linear-gradient(90deg, var(--c-primary) 0%, var(--c-accent) 100%) top/100% 3px no-repeat,
    var(--c-surface);
  border:1px solid var(--c-border-soft);
  border-radius:var(--radius-lg);
  padding:44px 40px 36px;
  margin:24px 0 0;
  position:relative;
  box-shadow:var(--shadow-hero);
}
.jdc-hero .kicker {
  display:inline-block; font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:var(--c-primary); background:var(--c-primary-50); padding:5px 11px; border-radius:3px; margin-bottom:18px;
}
.jdc-hero h1 {
  font-size:38px; font-weight:800; margin:0 0 12px; color:var(--c-text);
  letter-spacing:-.025em; line-height:1.15;
}
.jdc-hero .lead { color:var(--c-text-2); font-size:17px; margin:0 0 26px; max-width:680px; line-height:1.55; }

.jdc-hero form.search {
  display:flex; gap:0; position:relative;
  background:var(--c-surface);
  border:1.5px solid #cbd5e1;
  border-radius:3px;
  box-shadow:0 1px 2px rgba(31,38,45,.06), 0 2px 6px rgba(31,38,45,.04);
  transition:border-color .15s ease, box-shadow .15s ease;
}
.jdc-hero form.search:hover { border-color:#9ba3aa; }
.jdc-hero form.search:focus-within {
  border-color:var(--c-primary);
  box-shadow:0 0 0 3px rgba(30,58,107,.18), 0 2px 6px rgba(31,38,45,.05);
}
.jdc-hero .search-input-wrap { position:relative; flex:1; min-width:0; }
.jdc-hero form.search input {
  width:100%; padding:15px 44px 15px 20px;
  border:none; border-radius:3px 0 0 3px;
  font-size:15px; font-family:inherit; outline:none;
  background:transparent; color:var(--c-text);
  appearance:none; -webkit-appearance:none;
}
.jdc-hero form.search input::-webkit-search-cancel-button { display:none; }
.jdc-hero form.search input::placeholder { color:var(--c-text-muted); }
.jdc-hero .search-clear {
  position:absolute; right:10px; top:50%; transform:translateY(-50%);
  background:var(--c-surface-3); color:var(--c-text-3); border:none;
  width:24px; height:24px; border-radius:3px; cursor:pointer; font-size:18px; line-height:1;
  display:flex; align-items:center; justify-content:center;
}
.jdc-hero .search-clear:hover { background:var(--c-border); color:var(--c-text); }
.jdc-hero .search-submit {
  background:var(--c-primary); color:#fff; border:none;
  padding:0 30px; border-radius:0 3px 3px 0;
  font-weight:700; font-size:14px; font-family:inherit;
  cursor:pointer; white-space:nowrap; letter-spacing:.04em; text-transform:uppercase;
  transition:background .15s ease;
}
.jdc-hero .search-submit:hover { background:var(--c-primary-700); }

.jdc-hero .jdc-tabs {
  display:flex; gap:4px; margin-bottom:14px;
  border-bottom:1px solid var(--c-border-soft);
}
.jdc-hero .jdc-tab {
  background:transparent; border:none; padding:11px 22px;
  font-size:15px; font-weight:600; font-family:inherit;
  color:var(--c-text-3); cursor:pointer;
  border-bottom:2px solid transparent;
  transition:color .15s ease, border-color .15s ease;
  margin-bottom:-1px;
}
.jdc-hero .jdc-tab:hover { color:var(--c-text); }
.jdc-hero .jdc-tab.is-active { color:var(--c-primary); border-bottom-color:var(--c-primary); }
.jdc-hero .jdc-tab-panel { display:none; }
.jdc-hero .jdc-tab-panel.is-active { display:block; }

.jdc-hero .jdc-mini-comparador {
  display:grid; grid-template-columns: 1fr auto 1fr auto; gap:14px; align-items:end;
}
.jdc-hero .mc-side { display:grid; grid-template-columns: minmax(120px, 0.7fr) 1.3fr; gap:10px; min-width:0; align-items:end; }
.jdc-hero .mc-field { position:relative; min-width:0; }
.jdc-hero .mc-field label {
  display:block; font-size:11px; font-weight:700; color:var(--c-text-3);
  letter-spacing:.08em; text-transform:uppercase; margin-bottom:6px;
}
.jdc-hero .mc-field input,
.jdc-hero .mc-field select {
  width:100%; padding:11px 14px; border:1.5px solid #cbd5e1;
  border-radius:3px; font-size:14px; font-family:inherit;
  background:var(--c-surface); color:var(--c-text);
  box-sizing:border-box; outline:none;
  transition:border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.jdc-hero .mc-field select {
  appearance:none; -webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236a7682' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 12px center;
  padding-right:34px; cursor:pointer;
}
.jdc-hero .mc-field input:hover,
.jdc-hero .mc-field select:hover { border-color:#9ba3aa; }
.jdc-hero .mc-field input:focus,
.jdc-hero .mc-field select:focus {
  border-color:var(--c-primary);
  box-shadow:0 0 0 3px rgba(30,58,107,.18);
}
.jdc-hero .mc-field input:disabled {
  background:var(--c-surface-2); color:var(--c-text-muted);
  cursor:not-allowed; border-color:var(--c-border-soft);
}
.jdc-hero .mc-vs {
  align-self:center; justify-self:center;
  width:40px; height:40px; line-height:1; margin-bottom:4px;
  display:flex; align-items:center; justify-content:center;
  background:var(--c-primary); color:#fff;
  font-size:12px; font-weight:800; letter-spacing:.06em;
  border-radius:50%;
  box-shadow:0 4px 10px rgba(30,58,107,.30);
}
.jdc-hero .mc-submit {
  background:var(--c-primary); color:#fff;
  padding:12px 28px; border:none; border-radius:3px;
  font-size:13px; font-weight:700; font-family:inherit;
  letter-spacing:.06em; text-transform:uppercase;
  cursor:pointer; white-space:nowrap;
  transition:background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.jdc-hero .mc-submit:hover { background:var(--c-primary-700); transform:translateY(-1px); box-shadow:0 6px 14px rgba(30,58,107,.28); }
.jdc-hero .mc-hint { font-size:13px; color:var(--c-text-3); margin:14px 0 0; line-height:1.5; max-width:760px; }

.jdc-suggest {
  position:absolute; top:calc(100% + 8px); left:0; right:0;
  background:var(--c-surface);
  border:1px solid var(--c-border-soft); border-radius:3px;
  max-height:420px; overflow-y:auto;
  z-index:50; box-shadow:0 16px 40px rgba(31,38,45,.14), 0 2px 8px rgba(31,38,45,.06);
  padding:6px;
}
.jdc-suggest .sg-item {
  display:flex; align-items:center; gap:12px;
  padding:11px 14px; cursor:pointer; font-size:14px;
  color:var(--c-text); border-radius:3px; line-height:1.4;
  text-decoration:none;
  transition:background .12s ease;
}
.jdc-suggest .sg-item-icon {
  flex:none; width:32px; height:32px; border-radius:3px;
  background:var(--c-surface-2); color:var(--c-text-3);
  display:flex; align-items:center; justify-content:center;
}
.jdc-suggest .sg-item-icon svg { width:16px; height:16px; }
.jdc-suggest .sg-item-text { flex:1; min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.jdc-suggest .sg-item-arrow { flex:none; color:var(--c-text-muted); opacity:0; transition:opacity .12s ease, transform .12s ease; }
.jdc-suggest .sg-item:hover,
.jdc-suggest .sg-item.is-active { background:var(--c-primary-50); color:var(--c-primary-700); }
.jdc-suggest .sg-item:hover .sg-item-icon,
.jdc-suggest .sg-item.is-active .sg-item-icon { background:#fff; color:var(--c-primary); }
.jdc-suggest .sg-item:hover .sg-item-arrow,
.jdc-suggest .sg-item.is-active .sg-item-arrow { opacity:1; transform:translateX(2px); }
.jdc-suggest .sg-empty { padding:18px 16px; font-size:13px; color:var(--c-text-3); text-align:center; }
.jdc-suggest .sg-mark { background:transparent; color:var(--c-primary); font-weight:600; }
.jdc-suggest .sg-footer {
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  margin-top:4px; padding:10px 14px; border-top:1px solid var(--c-border-soft);
  font-size:13px; color:var(--c-text-2); text-decoration:none;
  border-radius:0 0 3px 3px;
  transition:background .12s ease;
}
.jdc-suggest .sg-footer:hover { background:var(--c-surface-2); color:var(--c-primary); }
.jdc-suggest .sg-footer strong { color:var(--c-primary); font-weight:600; }

.jdc-hero .quick-filters { display:flex; flex-wrap:wrap; align-items:center; gap:8px; margin-top:16px; }
.jdc-hero .quick-filters .qf-label { font-size:12px; color:var(--c-text-3); text-transform:uppercase; letter-spacing:.06em; font-weight:600; margin-right:4px; }
.jdc-hero .quick-filters a {
  display:inline-flex; align-items:center; padding:6px 13px; background:var(--c-surface-2);
  border:1px solid var(--c-border-soft); border-radius:3px;
  font-size:13px; font-weight:500; color:var(--c-text-2); text-decoration:none;
  transition:background .15s ease, border-color .15s ease, color .15s ease;
}
.jdc-hero .quick-filters a:hover { background:var(--c-primary-50); border-color:var(--c-primary); color:var(--c-primary-700); }
.jdc-hero .stats { display:flex; gap:32px; margin-top:28px; padding-top:24px; border-top:1px solid var(--c-border-soft); flex-wrap:wrap; }
.jdc-hero .stat { display:flex; flex-direction:column; gap:2px; }
.jdc-hero .stat-num { font-size:22px; font-weight:700; color:var(--c-text); letter-spacing:-.01em; line-height:1.1; }
.jdc-hero .stat-label { font-size:12px; color:var(--c-text-3); text-transform:uppercase; letter-spacing:.08em; font-weight:500; }

.jdc-panel {
  background:var(--c-surface);
  border:1px solid var(--c-border-soft);
  border-radius:var(--radius-lg);
  padding:28px 30px 30px;
  box-shadow:var(--shadow-elevated);
}
.jdc-panel-header {
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px;
  margin-bottom:22px;
}
.jdc-panel-title { font-size:21px; font-weight:700; color:var(--c-text); letter-spacing:-.015em; margin:0; }
.jdc-panel-title a {
  font-size:14px; font-weight:600; color:var(--c-primary); text-decoration:none;
  margin-left:14px; vertical-align:baseline;
}
.jdc-panel-title a:hover { text-decoration:underline; text-underline-offset:3px; }

.jdc-marcas { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.jdc-marcas a {
  display:flex; flex-direction:column; justify-content:center;
  padding:14px 18px;
  background:var(--c-surface); border:1px solid var(--c-border-soft);
  border-radius:var(--radius); text-decoration:none; color:var(--c-text);
  transition:border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.jdc-marcas a:hover { border-color:var(--c-primary); transform:translateY(-1px); box-shadow:var(--shadow-resting); }
.jdc-marcas .marca-info { display:flex; flex-direction:column; gap:3px; }
.jdc-marcas .marca-name { font-weight:600; font-size:15px; color:var(--c-text); letter-spacing:-.005em; line-height:1.25; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.jdc-marcas .marca-count { color:var(--c-text-3); font-size:12px; line-height:1.2; }

.jdc-gamas { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.jdc-gamas a {
  display:flex; flex-direction:row; align-items:center; gap:14px;
  padding:14px;
  background:var(--c-surface); border:1px solid var(--c-border-soft);
  border-radius:var(--radius); text-decoration:none; color:var(--c-text);
  transition:border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.jdc-gamas a:hover { border-color:var(--c-primary); transform:translateY(-1px); box-shadow:var(--shadow-resting); }
.jdc-gamas .gama-thumb {
  flex:none; width:64px; height:64px; border-radius:3px;
  background:var(--c-surface-2); display:flex; align-items:center; justify-content:center;
  color:var(--c-primary); border:1px solid var(--c-border-soft);
}
.jdc-gamas .gama-thumb svg { width:32px; height:32px; }
.jdc-gamas .gama-info { flex:1; min-width:0; display:flex; flex-direction:column; gap:3px; }
.jdc-gamas .gama-name { font-size:15px; font-weight:600; color:var(--c-text); letter-spacing:-.005em; line-height:1.25; }
.jdc-gamas .gama-count { color:var(--c-text-3); font-size:12px; line-height:1.2; }

.jdc-ultimos { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.jdc-ultimos .card {
  background:var(--c-surface); border:1px solid var(--c-border-soft);
  border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow-resting);
  transition:border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.jdc-ultimos .card:hover { border-color:var(--c-primary); transform:translateY(-3px); box-shadow:var(--shadow-hover); }
.jdc-ultimos .card a { text-decoration:none; color:var(--c-text); display:block; }
.jdc-ultimos .card .img-wrap {
  aspect-ratio:1/1; overflow:hidden; background:#ffffff;
  display:flex; align-items:center; justify-content:center; border-bottom:1px solid var(--c-border-soft);
}
.jdc-ultimos .card img { width:100%; height:100%; object-fit:contain; padding:16px; transition:transform .25s ease; }
.jdc-ultimos .card:hover img { transform:scale(1.04); }
.jdc-ultimos .card .body { padding:14px 16px 16px; }
.jdc-ultimos .card .title { font-weight:600; font-size:14px; color:var(--c-text); line-height:1.4; letter-spacing:-.005em; }

.jdc-ver-todos { text-align:center; margin-top:24px; }
.jdc-ver-todos a {
  display:inline-flex; align-items:center; gap:6px;
  padding:12px 26px; background:var(--c-surface); border:1px solid var(--c-primary);
  color:var(--c-primary); border-radius:3px; font-weight:700; font-size:13px;
  text-decoration:none; letter-spacing:.06em; text-transform:uppercase;
  transition:background .15s ease, color .15s ease;
}
.jdc-ver-todos a:hover { background:var(--c-primary); color:#fff; }

.jdc-listicles { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.jdc-listicles .card {
  background:var(--c-surface); border:1px solid var(--c-border-soft);
  border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow-resting);
  transition:border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.jdc-listicles .card:hover { border-color:var(--c-primary); transform:translateY(-3px); box-shadow:var(--shadow-hover); }
.jdc-listicles a { display:block; text-decoration:none; color:var(--c-text); }
.jdc-listicles .img-wrap {
  aspect-ratio:16/9; overflow:hidden; background:#ffffff;
  display:flex; align-items:center; justify-content:center; border-bottom:1px solid var(--c-border-soft);
}
.jdc-listicles .img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .25s ease; }
.jdc-listicles .card:hover .img-wrap img { transform:scale(1.04); }
.jdc-listicles .img-placeholder { color:var(--c-text-muted); font-size:36px; font-weight:800; letter-spacing:-.02em; }
.jdc-listicles .body { padding:16px 18px; }
.jdc-listicles .badge {
  display:inline-block; font-size:10px; padding:4px 9px; border-radius:3px;
  font-weight:700; text-transform:uppercase; letter-spacing:.06em; margin-bottom:10px;
  background:var(--c-primary-50); color:var(--c-primary);
}
.jdc-listicles .lst-title { font-size:15px; font-weight:600; line-height:1.4; color:var(--c-text); letter-spacing:-.005em; }

.jdc-blog { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.jdc-blog .card {
  background:var(--c-surface); border:1px solid var(--c-border-soft);
  border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow-resting);
  transition:border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.jdc-blog .card:hover { border-color:var(--c-primary); transform:translateY(-3px); box-shadow:var(--shadow-hover); }
.jdc-blog a { text-decoration:none; color:var(--c-text); display:block; }
.jdc-blog .img-wrap { aspect-ratio:16/9; overflow:hidden; background:#ffffff; }
.jdc-blog .img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .25s ease; }
.jdc-blog .card:hover .img-wrap img { transform:scale(1.04); }
.jdc-blog .body { padding:16px 18px 18px; }
.jdc-blog .b-title { font-weight:600; font-size:15px; line-height:1.4; color:var(--c-text); margin-bottom:8px; letter-spacing:-.005em; }
.jdc-blog .b-date { color:var(--c-text-3); font-size:12px; text-transform:uppercase; letter-spacing:.06em; font-weight:500; }

@media (max-width:980px) {
  .jdc-marcas { grid-template-columns:repeat(3,1fr); }
  .jdc-gamas { grid-template-columns:repeat(2,1fr); }
  .jdc-ultimos { grid-template-columns:repeat(2,1fr); }
  .jdc-listicles { grid-template-columns:repeat(2,1fr); }
  .jdc-blog { grid-template-columns:repeat(2,1fr); }
  .jdc-hero { padding:36px 28px 30px; }
  .jdc-hero h1 { font-size:30px; }
  .jdc-hero .lead { font-size:16px; }
  .jdc-hero .stats { gap:24px; }
  .jdc-panel { padding:24px 22px; }
}
@media (max-width:880px) {
  .jdc-hero .jdc-mini-comparador { grid-template-columns:1fr; gap:14px; }
  .jdc-hero .mc-vs { margin:2px auto; }
  .jdc-hero .mc-submit { width:100%; padding:14px; }
}
@media (max-width:580px) {
  .jdc-home { padding:18px; }
  .jdc-home > section { margin-top:40px; }
  .jdc-hero { padding:30px 22px 26px; border-radius:var(--radius); }
  .jdc-hero h1 { font-size:26px; }
  .jdc-hero .lead { font-size:15px; margin-bottom:22px; }
  .jdc-hero form.search { flex-direction:column; }
  .jdc-hero form.search button { padding:13px 28px; }
  .jdc-hero .stats { gap:18px 24px; margin-top:22px; padding-top:20px; }
  .jdc-hero .stat-num { font-size:19px; }
  .jdc-hero .mc-side { grid-template-columns:1fr; gap:12px; }
  .jdc-hero .jdc-tab { padding:10px 16px; font-size:14px; }
  .jdc-marcas { grid-template-columns:repeat(2,1fr); gap:10px; }
  .jdc-gamas { grid-template-columns:1fr; }
  .jdc-ultimos { grid-template-columns:1fr 1fr; gap:12px; }
  .jdc-listicles, .jdc-blog { grid-template-columns:1fr; }
  .jdc-home h2.section { font-size:20px; margin-bottom:18px; }
  .jdc-panel { padding:22px 18px; border-radius:var(--radius); }
  .jdc-panel-title { font-size:18px; }
}

/* === Comparador === */
.jdc-comparador { max-width:1200px; margin:24px auto; padding:0 36px; }
.jdc-comparador .jdc-hero {
  background:
    linear-gradient(90deg, var(--c-primary) 0%, var(--c-accent) 100%) top/100% 3px no-repeat,
    var(--c-surface);
  border:1px solid var(--c-border-soft);
  border-radius:3px;
  padding:32px 32px 28px;
  box-shadow:var(--shadow-hero);
  margin-bottom:24px;
  position:relative;
}
.jdc-comparador .jdc-hero h1 { font-size:30px; font-weight:800; margin:0 0 8px; color:var(--c-text); letter-spacing:-.025em; line-height:1.15; }
.jdc-comparador .jdc-hero .lead { color:var(--c-text-2); font-size:16px; margin:0; max-width:680px; line-height:1.55; }

.jdc-selector {
  display:grid; grid-template-columns: 1fr auto 1fr; gap:24px; align-items:center;
  background:var(--c-surface); border:1px solid var(--c-border-soft); border-radius:3px;
  box-shadow:var(--shadow-resting);
  padding:24px 28px;
  margin-bottom:24px;
}
.jdc-selector .side { display:grid; grid-template-columns: minmax(140px, 0.8fr) 1.4fr; gap:14px; min-width:0; align-items:end; }
.jdc-selector .field { position:relative; min-width:0; }
.jdc-selector label {
  display:block; font-size:11px; font-weight:700; color:var(--c-text-3);
  letter-spacing:.08em; text-transform:uppercase; margin-bottom:8px;
}
.jdc-selector input, .jdc-selector select {
  width:100%; padding:13px 16px; border:1.5px solid #cbd5e1;
  border-radius:3px; font-size:15px; font-family:inherit;
  background:var(--c-surface); color:var(--c-text);
  box-sizing:border-box; outline:none;
  transition:border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.jdc-selector select {
  appearance:none; -webkit-appearance:none; -moz-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236a7682' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 14px center;
  padding-right:38px; cursor:pointer;
}
.jdc-selector input:hover, .jdc-selector select:hover { border-color:#9ba3aa; }
.jdc-selector input:focus, .jdc-selector select:focus {
  border-color:var(--c-primary);
  box-shadow:0 0 0 3px rgba(30,58,107,.18);
}
.jdc-selector input::placeholder { color:var(--c-text-muted); }
.jdc-selector input:disabled {
  background:var(--c-surface-2); color:var(--c-text-muted);
  cursor:not-allowed; border-color:var(--c-border-soft);
}
.jdc-selector .vs {
  align-self:center; justify-self:center;
  width:48px; height:48px; line-height:1;
  display:flex; align-items:center; justify-content:center;
  background:var(--c-primary); color:#fff;
  font-size:14px; font-weight:800; letter-spacing:.06em;
  border-radius:50%;
  box-shadow:0 4px 12px rgba(30,58,107,.30);
}
.jdc-selector .btn {
  grid-column:1 / -1; justify-self:center;
  background:var(--c-primary); color:#fff; padding:14px 36px;
  border:none; border-radius:3px;
  font-size:15px; font-weight:600; font-family:inherit;
  cursor:pointer; white-space:nowrap;
  margin-top:4px;
  transition:background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.jdc-selector .btn:hover { background:var(--c-primary-700); transform:translateY(-1px); box-shadow:0 6px 14px rgba(30,58,107,.30); }
.jdc-selector .btn:disabled { background:var(--c-text-muted); cursor:not-allowed; transform:none; box-shadow:none; }

.jdc-comparador .jdc-suggest {
  position:absolute; top:calc(100% + 6px); left:0; right:0;
  background:var(--c-surface); border:1px solid var(--c-border-soft); border-radius:3px;
  max-height:300px; overflow-y:auto; z-index:99;
  box-shadow:0 12px 28px rgba(31,38,45,.14), 0 2px 6px rgba(31,38,45,.06);
  display:none;
  padding:4px;
}
.jdc-comparador .jdc-suggest div {
  padding:10px 14px; cursor:pointer; font-size:14px; color:var(--c-text);
  border-radius:3px; line-height:1.4;
  transition:background .12s ease;
}
.jdc-comparador .jdc-suggest div:hover { background:var(--c-primary-50); color:var(--c-primary-700); }

.jdc-cards { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:24px; }
.jdc-card {
  background:var(--c-surface); border:1px solid var(--c-border-soft); border-radius:3px;
  overflow:hidden; box-shadow:var(--shadow-resting);
  transition:border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  display:flex; flex-direction:column;
}
.jdc-card:hover { border-color:var(--c-primary); transform:translateY(-2px); box-shadow:var(--shadow-hover); }
.jdc-card.is-winner {
  position:relative; border-color:var(--c-win) !important;
  box-shadow:0 0 0 3px rgba(4,120,87,.10), 0 10px 24px rgba(4,120,87,.14), 0 2px 6px rgba(31,38,45,.05);
}
.jdc-card.is-winner:hover {
  border-color:var(--c-win) !important;
  box-shadow:0 0 0 3px rgba(4,120,87,.14), 0 14px 32px rgba(4,120,87,.18), 0 3px 8px rgba(31,38,45,.06);
}
.jdc-card .jdc-card-ribbon {
  position:absolute; top:12px; left:12px; z-index:2;
  background:var(--c-win); color:#fff;
  font-size:11px; font-weight:800; letter-spacing:.06em; text-transform:uppercase;
  padding:5px 11px 5px 9px; border-radius:3px;
  box-shadow:0 2px 8px rgba(4,120,87,.30);
  display:inline-flex; align-items:center; gap:5px;
}
.jdc-card .jdc-card-ribbon::before { content:'★'; font-size:13px; line-height:1; }
.jdc-card .img-wrap {
  background:#ffffff; border-bottom:1px solid var(--c-border-soft);
  aspect-ratio:16/10; display:flex; align-items:center; justify-content:center; padding:18px;
}
.jdc-card img { max-width:100%; max-height:100%; height:auto; width:auto; display:block; object-fit:contain; transition:transform .25s ease; }
.jdc-card:hover img { transform:scale(1.04); }
.jdc-card .body { padding:18px 20px 20px; text-align:left; }
.jdc-card h2 { font-size:17px; font-weight:700; margin:0 0 6px; color:var(--c-text); letter-spacing:-.01em; line-height:1.3; }
.jdc-card .meta { font-size:12px; color:var(--c-text-3); letter-spacing:.04em; text-transform:uppercase; font-weight:600; margin-bottom:14px; }
.jdc-card .cta-row { display:flex; gap:8px; flex-wrap:wrap; }
.jdc-card .btn-mini {
  padding:9px 16px; border-radius:3px;
  font-size:12px; font-weight:700; text-decoration:none; letter-spacing:.06em; text-transform:uppercase;
  background:var(--c-surface); color:var(--c-primary) !important;
  border:1px solid var(--c-primary);
  display:inline-flex; align-items:center; gap:4px;
  transition:background .15s ease, color .15s ease;
}
.jdc-card .btn-mini:hover { background:var(--c-primary); color:#fff !important; }

.jdc-table-wrap {
  background:var(--c-surface); border:1px solid var(--c-border-soft); border-radius:3px;
  overflow:hidden; box-shadow:var(--shadow-resting); margin-bottom:16px;
}
.jdc-table { width:100%; border-collapse:collapse; font-size:14px; }
.jdc-table th, .jdc-table td {
  padding:13px 16px; text-align:center; border-bottom:1px solid var(--c-border-soft);
}
.jdc-table tbody tr:last-child td { border-bottom:none; }
.jdc-table th:first-child, .jdc-table td:first-child {
  text-align:left; background:var(--c-surface-2); font-weight:500;
  color:var(--c-text-2); width:32%; border-right:1px solid var(--c-border-soft);
}
.jdc-table thead th {
  background:var(--c-text) !important; color:#fff;
  font-weight:600; font-size:13px; letter-spacing:-.005em; padding:14px 16px; border-bottom:none;
}
.jdc-table thead th:first-child {
  background:var(--c-text) !important; color:#fff;
  border-right:1px solid rgba(255,255,255,.1);
}
.jdc-section-h {
  background:var(--c-primary-50) !important;
  font-size:11px !important; font-weight:700 !important;
  color:var(--c-primary) !important;
  text-transform:uppercase; letter-spacing:.1em;
  padding:10px 16px !important; text-align:left !important;
}
.jdc-winner {
  background:var(--c-win-bg) !important;
  font-weight:700; color:var(--c-win) !important; position:relative;
}
.jdc-winner::before {
  content:''; position:absolute; left:0; top:8px; bottom:8px; width:3px;
  background:var(--c-win); border-radius:0 3px 3px 0;
}
.jdc-table tbody tr td.jdc-winner { padding-left:18px; }

.jdc-related { display:grid; grid-template-columns: 1fr 1fr; gap:16px; margin-top:28px; }
.jdc-related-col {
  background:var(--c-surface); border:1px solid var(--c-border-soft); border-radius:3px;
  box-shadow:var(--shadow-resting); padding:22px 24px 24px;
}
.jdc-related-header {
  display:flex; align-items:baseline; justify-content:space-between; gap:14px;
  padding-bottom:14px; margin-bottom:14px;
  border-bottom:1px solid var(--c-border-soft); flex-wrap:wrap;
}
.jdc-related-header h3 { font-size:14px; font-weight:600; color:var(--c-text-2); margin:0; letter-spacing:-.005em; }
.jdc-related-header h3 strong { color:var(--c-text); font-weight:800; }
.jdc-related-link { font-size:12px; font-weight:600; color:var(--c-primary); text-decoration:none; white-space:nowrap; }
.jdc-related-link:hover { color:var(--c-primary-700); text-decoration:underline; text-underline-offset:3px; }
.jdc-related-list { display:flex; flex-direction:column; gap:6px; }
.jdc-related-item {
  display:flex; align-items:center; gap:16px;
  padding:12px; border-radius:3px;
  text-decoration:none; color:var(--c-text);
  transition:background .15s ease;
}
.jdc-related-item + .jdc-related-item { border-top:1px solid var(--c-border-soft); }
.jdc-related-item:hover { background:var(--c-primary-50); }
.jdc-related-item:hover .jdc-related-title { color:var(--c-primary-700); }
.jdc-related-thumb {
  flex:none; width:110px; height:110px; border-radius:3px;
  background:#ffffff; border:1px solid var(--c-border-soft);
  display:flex; align-items:center; justify-content:center; overflow:hidden;
  padding:6px;
}
.jdc-related-thumb img {
  max-width:100%; max-height:100%;
  width:auto; height:auto;
  object-fit:contain;
  display:block;
}
.jdc-related-title {
  font-size:13.5px; font-weight:500; color:var(--c-text); line-height:1.35;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
  transition:color .15s ease;
}

.jdc-related-comparativos {
  background:var(--c-surface); border:1px solid var(--c-border-soft); border-radius:3px;
  box-shadow:var(--shadow-resting); padding:24px 26px 26px; margin-top:16px;
}
.jdc-rc-header {
  display:flex; align-items:baseline; justify-content:space-between; gap:14px;
  padding-bottom:14px; margin-bottom:18px;
  border-bottom:1px solid var(--c-border-soft); flex-wrap:wrap;
}
.jdc-rc-header h3 { font-size:16px; font-weight:700; color:var(--c-text); margin:0; letter-spacing:-.01em; }
.jdc-rc-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:14px; }
.jdc-rc-card {
  display:flex; flex-direction:column;
  background:var(--c-surface); border:1px solid var(--c-border-soft); border-radius:3px;
  overflow:hidden; text-decoration:none; color:var(--c-text);
  transition:border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.jdc-rc-card:hover { border-color:var(--c-primary); transform:translateY(-2px); box-shadow:var(--shadow-hover); }
.jdc-rc-img {
  aspect-ratio:16/9; background:#fff; border-bottom:1px solid var(--c-border-soft);
  display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.jdc-rc-img img { width:100%; height:100%; object-fit:cover; transition:transform .25s ease; }
.jdc-rc-card:hover .jdc-rc-img img { transform:scale(1.04); }
.jdc-rc-vs { font-size:28px; font-weight:800; color:var(--c-text-muted); letter-spacing:-.02em; }
.jdc-rc-body { padding:14px 16px 16px; }
.jdc-rc-badge {
  display:inline-block; font-size:10px; padding:3px 8px; border-radius:3px;
  font-weight:700; text-transform:uppercase; letter-spacing:.06em;
  background:var(--c-primary-50); color:var(--c-primary); margin-bottom:8px;
}
.jdc-rc-title {
  font-size:14px; font-weight:600; line-height:1.35; color:var(--c-text);
  letter-spacing:-.005em;
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
}

.jdc-comparativos-publicados { margin-top:32px; }
.jdc-cp-header { text-align:left; margin-bottom:20px; padding-bottom:14px; border-bottom:2px solid var(--c-primary-50); }
.jdc-cp-header h2 { font-size:24px; font-weight:800; color:var(--c-text); letter-spacing:-.02em; line-height:1.2; margin:0 0 6px; }
.jdc-cp-sub { font-size:14.5px; color:var(--c-text-2); margin:0; max-width:680px; line-height:1.5; }
.jdc-cp-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; }
.jdc-cp-card {
  display:flex; flex-direction:column;
  background:var(--c-surface); border:1px solid var(--c-border-soft); border-radius:3px;
  overflow:hidden; text-decoration:none; color:var(--c-text);
  box-shadow:var(--shadow-resting);
  transition:border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.jdc-cp-card:hover { border-color:var(--c-primary); transform:translateY(-3px); box-shadow:var(--shadow-hover); }
.jdc-cp-img { aspect-ratio:16/10; background:#fff; border-bottom:1px solid var(--c-border-soft); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.jdc-cp-img img { width:100%; height:100%; object-fit:cover; transition:transform .25s ease; }
.jdc-cp-card:hover .jdc-cp-img img { transform:scale(1.04); }
.jdc-cp-vs { font-size:36px; font-weight:800; color:var(--c-text-muted); letter-spacing:-.02em; }
.jdc-cp-body { padding:16px 18px 18px; }
.jdc-cp-badge {
  display:inline-block; font-size:10px; padding:3px 9px; border-radius:3px;
  font-weight:700; text-transform:uppercase; letter-spacing:.06em;
  background:var(--c-primary-50); color:var(--c-primary); margin-bottom:10px;
}
.jdc-cp-title {
  font-size:16px; font-weight:700; line-height:1.32; color:var(--c-text);
  letter-spacing:-.005em; margin:0 0 8px;
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
}
.jdc-cp-excerpt {
  font-size:13px; color:var(--c-text-3); line-height:1.5; margin:0;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}

.jdc-empty {
  background:var(--c-surface); border:1px solid var(--c-border-soft);
  border-left:3px solid var(--c-accent);
  border-radius:3px; padding:22px 26px;
  color:var(--c-text-2); font-size:15px;
  box-shadow:var(--shadow-resting);
}
.jdc-empty strong { color:var(--c-text); font-weight:700; }
.jdc-empty em { color:var(--c-primary); font-style:normal; font-weight:600; }

@media (max-width:960px) {
  .jdc-selector .side { grid-template-columns: 1fr 1.4fr; gap:12px; }
}
@media (max-width:680px) {
  .jdc-comparador { padding:0 18px; margin-top:16px; }
  .jdc-comparador .jdc-hero { padding:24px 22px; }
  .jdc-comparador .jdc-hero h1 { font-size:24px; }
  .jdc-selector { grid-template-columns:1fr; padding:18px; gap:16px; }
  .jdc-selector .side { grid-template-columns: 1fr; gap:14px; }
  .jdc-selector .vs { margin:4px auto; }
  .jdc-selector .btn { width:100%; }
  .jdc-cards { grid-template-columns:1fr; }
  .jdc-table { font-size:13px; }
  .jdc-table th, .jdc-table td { padding:10px 12px; }
  .jdc-table th:first-child, .jdc-table td:first-child { width:40%; }
  .jdc-related { grid-template-columns:1fr; }
  .jdc-rc-grid { grid-template-columns:1fr; }
  .jdc-cp-grid { grid-template-columns:1fr; gap:14px; }
  .jdc-cp-header h2 { font-size:20px; }
}
@media (min-width:681px) and (max-width:980px) {
  .jdc-rc-grid { grid-template-columns:repeat(2, 1fr); }
  .jdc-cp-grid { grid-template-columns:repeat(2, 1fr); }
}
