/* =========================================
   DataSectionNetifly · Problema Section Styles
   Prefijo: dsn- para evitar conflictos WP
   ========================================= */

.dsn-section {

    border-bottom: 1px solid var(--line);
    box-sizing: border-box;
}

/* ---- HEADER ---- */
.dsn-header {
    padding: 40px 0px;
    box-sizing: border-box;
}

.dsn-label {
    font-family: var(--mont);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dsn-label::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--blue);
    flex-shrink: 0;
}

.dsn-title {
    font-family: var(--mont);
    font-size: clamp(22px, 2.8vw, 38px);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    color: var(--text);
    margin: 0;
}

.dsn-title span {
    color: var(--blue);
}

/* ---- GRID ---- */
.dsn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-sizing: border-box;
}

/* ---- LEFT ---- */
.dsn-left {
    padding:0px 40px 40px 0px;
    border-right: 1px solid var(--line);
    box-sizing: border-box;
}

.dsn-intro {
    font-family: var(--mont);
    font-size: 14px;
    font-weight: 400;
    color: var(--soft);
    line-height: 1.85;
    margin-bottom: 20px;
}

.dsn-gap-visual {
    background: var(--bg3);
    border: 1px solid var(--lineb);
    padding: 20px;
    box-sizing: border-box;
}

.dsn-gap-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.dsn-gap-row:last-child {
    border-bottom: none;
}

.dsn-gap-label {
    font-family: var(--mont);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--muted);
}

.dsn-gap-val {
    font-family: var(--mont);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.dsn-gap-val--good {
    color: var(--blue);
}

.dsn-gap-val--bad {
    color: var(--red);
}

/* ---- RIGHT ---- */
.dsn-right {
    padding: 0 48px 48px;
    box-sizing: border-box;
}

.dsn-right .dsn-label {
    margin-bottom: 20px;
}

.dsn-sintoma-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dsn-sintoma-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--mont);
    font-size: 13px;
    font-weight: 400;
    color: var(--soft);
    line-height: 1.6;
}

.dsn-sintoma-list li:last-child {
    border-bottom: none;
}

.dsn-sintoma-num {
    font-family: var(--mont);
    font-size: 10px;
    font-weight: 800;
    color: var(--blue);
    min-width: 20px;
    padding-top: 3px;
    letter-spacing: 1px;
    flex-shrink: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
    .dsn-grid {
        grid-template-columns: 1fr;
    }

    .dsn-left {
        padding: 0 24px 32px;
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .dsn-right {
        padding: 32px 24px 40px;
    }

    .dsn-header {
        padding: 32px 24px 24px;
    }
}

@media (max-width: 600px) {
    .dsn-gap-val {
        font-size: 18px;
    }

    .dsn-gap-label {
        font-size: 10px;
        max-width: 60%;
    }
}
