.tabla-comparativa-contenedor {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

.tabla-comparativa {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.tabla-comparativa th {
    background-color: #2c3e50;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    border: 1px solid #34495e;
}

.tabla-comparativa td {
    padding: 15px;
    border: 1px solid #ddd;
    vertical-align: top;
}

.tabla-comparativa tr:nth-child(even) {
    background-color: #f9f9f9;
}

.tabla-comparativa tr:hover {
    background-color: #f5f5f5;
}

.boton-comprar {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.boton-comprar:hover {
    background-color: #2980b9;
    color: white;
}

/* Responsive para móviles */
@media screen and (max-width: 768px) {
    .tabla-comparativa-contenedor {
        margin: 15px -10px;
        padding: 0 10px;
    }
    
    .tabla-comparativa th,
    .tabla-comparativa td {
        padding: 10px 8px;
        font-size: 14px;
    }
    
    .tabla-comparativa th:nth-child(3),
    .tabla-comparativa th:nth-child(4),
    .tabla-comparativa th:nth-child(5) {
        min-width: 150px;
    }
    
    .boton-comprar {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .tabla-comparativa th,
    .tabla-comparativa td {
        padding: 8px 6px;
        font-size: 13px;
    }
    
    .tabla-comparativa th:nth-child(3),
    .tabla-comparativa th:nth-child(4),
    .tabla-comparativa th:nth-child(5) {
        min-width: 120px;
    }
    
    .boton-comprar {
        padding: 5px 10px;
        font-size: 12px;
    }
}