
.pros-cons-table {
    margin: 30px 0;
    overflow-x: auto;
    font-family: "Open Sans", sans-serif;
}
.pros-cons-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 1px;
    background: #d1d5db;
    border: 2px solid #cbd5e1;
    box-shadow: none;
}
.pros-cons-table th {
    padding: 12px 16px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    border: none;
}
.pros-cons-table th:first-child {
    background: #dff5ea;
    color: #16794c;
}
.pros-cons-table th:last-child {
    background: #fde8e5;
    color: #c2412f;
}
.pros-cons-table td {
    background: #fff;
    padding: 18px 20px;
    color: #555;
    font-size: 16px;
    line-height: 1.9;
    vertical-align: top;
    border: none;
}
.pros-cons-table ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.pros-cons-table li {
    margin-bottom: 12px;
    line-height: 1.9;
}

.pros-cons-table td:first-child li::before {
    content: "✓";
    color: #16794c;
    font-weight: 700;
    margin-right: 8px;
}

.pros-cons-table td:last-child li::before {
    content: "✕";
    color: #c2412f;
    font-weight: 700;
    margin-right: 8px;
}
.pros-cons-table table:hover {
    transform: none;
}
.pros-cons-table table {
    width: 100%;
    table-layout: fixed;
}
.pros-cons-table th,
.pros-cons-table td {
    width: 50%;
}
/* 手机端优化 */
@media (max-width: 768px) {
    .pros-cons-table table,
    .pros-cons-table thead,
    .pros-cons-table tbody,
    .pros-cons-table tr,
    .pros-cons-table th,
    .pros-cons-table td {
        display: block;
        width: 100%;
    }
    /* 隐藏原表头 */
    .pros-cons-table thead {
        display: none;
    }
    /* Pros */
    .pros-cons-table td:first-child::before {
        content: "✓ Ventajas";
        display: block;
        background: #dff5ea;
        color: #16794c;
        font-size: 18px;
        font-weight: 700;
        padding: 12px 16px;
        margin: -18px -20px 15px;
    }
    /* Cons */
    .pros-cons-table td:last-child::before {
        content: "✕ Desventajas";
        display: block;
        background: #fde8e5;
        color: #c2412f;
        font-size: 18px;
        font-weight: 700;
        padding: 12px 16px;
        margin: -18px -20px 15px;
    }
    .pros-cons-table td {
        border: 1px solid #e5e7eb;
        background: #fff;
    }
    .pros-cons-table li {
        margin-bottom: 10px;
        line-height: 1.8;
        word-break: normal;
        overflow-wrap: break-word;
    }
}
