@charset "UTF-8";

/* =====================================================
   CONTENEDOR GENERAL
===================================================== */

.compatibilidad-limpiadores {
    margin-top: 40px;
}

/* CONTENEDOR SCROLL */

.compatibilidad-limpiadores > div {

    border: 1px solid #ddd;

    border-radius: 8px;

    overflow: hidden;

    max-width:100%;

    overflow-x:auto;

    -webkit-overflow-scrolling:touch;

    touch-action:pan-x;
}

/* =====================================================
   TABLA BASE
===================================================== */

.compatibilidad-limpiadores table {

    width: 100%;

    min-width:900px;

    border-collapse: collapse;

    background: #fff;
}

/* =====================================================
   HEADER
===================================================== */

.compatibilidad-limpiadores thead {
    background: #0057D9;
}

.compatibilidad-limpiadores th {

    background: #0057D9;

    color: #fff;

    padding: 10px;

    font-size: 15px;

    text-transform: uppercase;

    text-align: center;

    position: sticky;

    top: 0;

    z-index: 2;

    white-space:nowrap;
}

/* CONTENIDO HEADER (ICONO + TEXTO) */

.th-content {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 3px;
}

/* ICONOS */

.icono-tabla {

    width: 80px;

    height: 60px;

    object-fit: contain;
}

/* TEXTO HEADER */

.compatibilidad-limpiadores th span {
    letter-spacing: 0.5px;
}

/* =====================================================
   CELDAS
===================================================== */

.compatibilidad-limpiadores td {

    padding: 8px;

    border-bottom: 1px solid #eee;

    border-right: 1px solid #eee;

    font-size: 18px;

    text-align: center;

    vertical-align: middle;

    white-space:nowrap;
}

/* quitar borde última columna */

.compatibilidad-limpiadores td:last-child,
.compatibilidad-limpiadores th:last-child {
    border-right: none;
}

/* =====================================================
   ZEBRA (SIN ROMPER ROWSPAN)
===================================================== */

.compatibilidad-limpiadores tbody tr:nth-child(even) td:not(.marca-cell) {
    background: #CFE3FF;
}

.compatibilidad-limpiadores tbody tr:nth-child(odd) td:not(.marca-cell) {
    background: #ffffff;
}

/* =====================================================
   HOVER
===================================================== */

.compatibilidad-limpiadores tbody tr {
    transition: 0.2s;
}

.compatibilidad-limpiadores tbody tr:hover td {
    background: #eaf2ff;
}

/* =====================================================
   COLUMNA MARCA
===================================================== */

.marca-cell {

    background: #fafafa;

    text-align: center;

    vertical-align: middle;

    width: 150px;
}

/* CONTENEDOR LOGO */

.marca-logo-container {

    display: flex;

    justify-content: center;

    align-items: center;

    height: 120px;
}

/* LOGO */

.logo-marca {

    max-width: 90px;

    max-height: 70px;

    width: auto;

    height: auto;

    object-fit: contain;

    transition: 0.2s;
}

/* EFECTO HOVER LOGO */

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

/* =====================================================
   MEJORAS VISUALES EXTRA
===================================================== */

/* bordes suaves */

.compatibilidad-limpiadores th,
.compatibilidad-limpiadores td {
    border-left: 1px solid #eee;
}

.compatibilidad-limpiadores th:first-child,
.compatibilidad-limpiadores td:first-child {
    border-left: none;
}

/* suavizar scroll */

.compatibilidad-limpiadores div::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}

.compatibilidad-limpiadores div::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.compatibilidad-limpiadores div::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* =====================================================
   MONITORES GRANDES
   24" / 27"
===================================================== */

@media (min-width:1600px){

    .compatibilidad-limpiadores{
        margin-top:60px;
    }

    .compatibilidad-limpiadores th{
        font-size:17px;

        padding:14px;
    }

    .compatibilidad-limpiadores td{
        font-size:20px;

        padding:12px;
    }

    .icono-tabla{
        width:95px;
        height:70px;
    }

    .marca-logo-container{
        height:140px;
    }

    .logo-marca{
        max-width:110px;
        max-height:80px;
    }
}

/* =====================================================
   LAPTOPS 19" / 15"
===================================================== */

@media (max-width:1400px){

    .compatibilidad-limpiadores table{
        min-width:850px;
    }

    .compatibilidad-limpiadores td{
        font-size:16px;
    }
}

/* =====================================================
   LAPTOPS 14"
===================================================== */

@media (max-width:1200px){

    .compatibilidad-limpiadores{
        margin-top:32px;
    }

    .compatibilidad-limpiadores table{
        min-width:780px;
    }

    .compatibilidad-limpiadores th{
        font-size:14px;

        padding:9px;
    }

    .compatibilidad-limpiadores td{
        font-size:15px;

        padding:7px;
    }

    .icono-tabla{
        width:70px;
        height:52px;
    }

    .marca-logo-container{
        height:95px;
    }

    .logo-marca{
        max-width:78px;
        max-height:58px;
    }
}

/* =====================================================
   TABLET HORIZONTAL
===================================================== */

@media (max-width:992px){

    .compatibilidad-limpiadores table{
        min-width:720px;
    }

    .compatibilidad-limpiadores th{
        font-size:13px;

        padding:8px;
    }

    .compatibilidad-limpiadores td{
        font-size:14px;

        padding:6px;
    }

    .icono-tabla{
        width:62px;
        height:46px;
    }

    .marca-cell{
        width:120px;
    }

    .marca-logo-container{
        height:85px;
    }

    .logo-marca{
        max-width:68px;
        max-height:50px;
    }
}

/* =====================================================
   TABLET VERTICAL
===================================================== */

@media (max-width:768px){

    .compatibilidad-limpiadores{
        margin-top:26px;
    }

    .compatibilidad-limpiadores > div{
        border-radius:12px;
    }

    .compatibilidad-limpiadores table{
        min-width:650px;
    }

    .compatibilidad-limpiadores th{
        font-size:12px;

        padding:7px;
    }

    .compatibilidad-limpiadores td{
        font-size:13px;

        padding:6px;
    }

    .th-content{
        gap:2px;
    }

    .icono-tabla{
        width:54px;
        height:40px;
    }

    .marca-cell{
        width:100px;
    }

    .marca-logo-container{
        height:72px;
    }

    .logo-marca{
        max-width:58px;
        max-height:42px;
    }
}

/* =====================================================
   TELEFONOS GRANDES
===================================================== */

@media (max-width:580px){

    .compatibilidad-limpiadores{
        margin-top:22px;
    }

    .compatibilidad-limpiadores table{
        min-width:580px;
    }

    .compatibilidad-limpiadores th{
        font-size:11px;

        padding:6px;
    }

    .compatibilidad-limpiadores td{
        font-size:12px;

        padding:5px;
    }

    .icono-tabla{
        width:46px;
        height:34px;
    }

    .marca-cell{
        width:85px;
    }

    .marca-logo-container{
        height:60px;
    }

    .logo-marca{
        max-width:50px;
        max-height:36px;
    }
}

/* =====================================================
   TELEFONOS PEQUEÑOS
===================================================== */

@media (max-width:420px){

    .compatibilidad-limpiadores table{
        min-width:520px;
    }

    .compatibilidad-limpiadores th{
        font-size:10px;

        padding:5px;
    }

    .compatibilidad-limpiadores td{
        font-size:11px;

        padding:4px;
    }

    .icono-tabla{
        width:40px;
        height:30px;
    }

    .marca-cell{
        width:75px;
    }

    .marca-logo-container{
        height:52px;
    }

    .logo-marca{
        max-width:44px;
        max-height:32px;
    }
}